From ef956b995ae79aa37aee43293d45bbdfa43abca4 Mon Sep 17 00:00:00 2001 From: HanifKoh <76276251+HanifKoh@users.noreply.github.com> Date: Wed, 23 Sep 2026 12:57:15 +0800 Subject: [PATCH 1/4] Pick the Parity Build From the Unfiltered Run List and Allow Pinning One (#15823) The nightly found its build with a filtered run listing (branch=main, status=success) and trusted the first result. GitHub serves filtered listings from a run search index that has intermittently returned weeks-old results, so some nights tested a build from weeks earlier and reported its differences as regressions. The same filter also matched fork PR builds whose branch is named main. The build is now picked from the unfiltered listing, which stays current, and filtered here: a successful build_all run of this repository on the requested branch. Fork PR builds are excluded by repository. A feature branch is normally built only for its PR, so this repository's own PR builds stay eligible, but a PR build compiles the PR merged into its base rather than the head commit the later jobs check out, so a push or dispatch build of the branch is preferred when the same page of the listing has one. A scheduled run fails instead of testing a build more than 48 hours old, and every run names the build it tested in the job summary. Manual runs scan further back, so a branch that last built weeks ago can still be tested, and a new build_run_id input pins one build_all run, read directly rather than through a search. --- .github/workflows/parity_nightly.yml | 60 ++++++++++++++++++++++++---- 1 file changed, 52 insertions(+), 8 deletions(-) diff --git a/.github/workflows/parity_nightly.yml b/.github/workflows/parity_nightly.yml index 79f5c9b514..44937fdad5 100644 --- a/.github/workflows/parity_nightly.yml +++ b/.github/workflows/parity_nightly.yml @@ -5,8 +5,9 @@ # re-sliced on its own to see whether it changes the G-code # harness - the GUI-vs-CLI parity harness (metrics only, never fails) # Both test the latest successful build_all.yml Linux AppImage from main, with -# sources checked out at the commit that build was made from. Nothing here -# gates a build or a PR. +# sources checked out at the commit that build was made from; a manual run can +# name another branch, or pin one build by its run id. Nothing here gates a +# build or a PR. name: Parity Nightly on: @@ -20,9 +21,13 @@ on: required: false default: "main" build_branch: - description: "branch whose latest successful build_all artifact to test" + description: "branch whose newest successful build_all artifact to test (a PR build is the PR merged into its base; sources are checked out at the PR head)" required: false default: "main" + build_run_id: + description: "build_all run id to test instead of build_branch's newest (same PR caveat)" + required: false + default: "" fixtures: description: "harness fixture ids, space-separated (empty = all)" required: false @@ -50,14 +55,53 @@ jobs: env: GH_TOKEN: ${{ github.token }} GH_REPO: ${{ github.repository }} + BRANCH: ${{ inputs.build_branch || 'main' }} + RUN_ID: ${{ inputs.build_run_id }} + SCHEDULED: ${{ github.event_name == 'schedule' }} run: | set -euo pipefail - gh run list --workflow build_all.yml \ - --branch "${{ inputs.build_branch || 'main' }}" \ - --status success --limit 1 --json databaseId,headSha \ - --jq '"run_id=\(.[0].databaseId)\nhead_sha=\(.[0].headSha)"' \ - >> "$GITHUB_OUTPUT" + if [ -n "$RUN_ID" ]; then + [[ $RUN_ID =~ ^[0-9]+$ ]] || { echo "build_run_id must be a numeric run id, got '$RUN_ID'" >&2; exit 1; } + # a pinned build is read directly, not through a search; it must come + # from this repository, because the later jobs check out its commit here + found=$(gh api "repos/$GH_REPO/actions/runs/$RUN_ID" --jq \ + 'select(.path == ".github/workflows/build_all.yml" and .conclusion == "success" + and .head_repository.full_name == env.GH_REPO) + | "\(.id) \(.head_sha) \(.created_at)"') + [ -n "$found" ] || { echo "run $RUN_ID is not a successful build_all run of $GH_REPO" >&2; exit 1; } + else + # GitHub serves filtered run listings (branch=, status=, head_sha=, ...) + # from a search index that has returned weeks-old results, while the + # unfiltered listing stays current, so list unfiltered and filter here. + # The repository check keeps out fork PRs whose branch has the same + # name. A feature branch is normally built only for its PR, and a PR + # build compiles the PR merged into its base rather than head_sha, so + # a build of the branch itself (push or dispatch) is preferred when + # the same page has one. + pick='([.workflow_runs[] | select(.head_branch == env.BRANCH and .conclusion == "success" + and .head_repository.full_name == env.GH_REPO)] + | map(select(.event != "pull_request"))[0] // .[0]) + | select(.) | "\(.id) \(.head_sha) \(.created_at)"' + # a page of 100 runs spans about a day and a half; a manual run may + # target a branch that last built weeks ago + pages=3 + if [ "$SCHEDULED" != true ]; then pages=20; fi + found="" + for page in $(seq "$pages"); do + found=$(gh api "repos/$GH_REPO/actions/workflows/build_all.yml/runs?per_page=100&page=$page" --jq "$pick") + if [ -n "$found" ]; then break; fi + done + [ -n "$found" ] || { echo "no successful $BRANCH build among the last $((pages * 100)) build_all runs; pass build_run_id to test an older one" >&2; exit 1; } + fi + read -r run_id head_sha created <<< "$found" + # the nightly fails rather than report on a stale build + if [ "$SCHEDULED" = true ] && [ $(( $(date +%s) - $(date -d "$created" +%s) )) -gt 172800 ]; then + echo "newest $BRANCH build $run_id is from $created, over 48 hours old" >&2 + exit 1 + fi + printf 'run_id=%s\nhead_sha=%s\n' "$run_id" "$head_sha" >> "$GITHUB_OUTPUT" cat "$GITHUB_OUTPUT" + echo "Testing build [$run_id](https://github.com/$GH_REPO/actions/runs/$run_id) of \`$head_sha\`, built $created" >> "$GITHUB_STEP_SUMMARY" effect: name: Override sweep effect stage (shard ${{ matrix.shard }}) From 24f380963befb3af1390965ff9f39f7de5c35a0b Mon Sep 17 00:00:00 2001 From: SoftFever Date: Wed, 23 Sep 2026 13:39:59 +0800 Subject: [PATCH 2/4] Move Orca-only third-party BBL filaments to OrcaFilamentLibrary The Polymaker, BETA, COEX, Overture, addnorth, Numakers, FusRock and AliZ presets that BambuStudio does not ship now live under OrcaFilamentLibrary/filament//BBL. The BBL bundle now holds only the filament presets BambuStudio ships, plus a few Bambu and generic ones. New " @BBL base" presets carry the values these presets used to get from BBL's own bases, so their settings on Bambu Lab printers are unchanged. --- resources/profiles/BBL.json | 2882 +--------------- .../BBL/filament/BETA/BETA ABS @base.json | 21 - .../BBL/filament/BETA/BETA HIPS @base.json | 14 - .../BBL/filament/BETA/BETA PAHT-CF @base.json | 48 - .../filament/BETA/BETA PEBA 90A @base.json | 33 - .../BETA/BETA PLA High Speed @base.json | 20 - .../BBL/filament/BETA/BETA TPU 90A @base.json | 33 - .../BBL/filament/BETA/BETA TPU 95A @base.json | 27 - .../BBL/filament/BETA/BETA TPU 98A @base.json | 27 - .../filament/BETA/BETA TPU Matte @base.json | 33 - .../FusRock/FusRock ABS-GF @base.json | 163 - .../Overture/Overture PLA Pro @base.json | 41 - .../Polymaker/Fiberon PA612-CF15 @base.json | 53 - .../Polymaker/Panchroma CoPE @base.json | 41 - .../Polymaker/Panchroma PLA @base.json | 44 - .../Panchroma PLA Celestial @base.json | 41 - .../Polymaker/Panchroma PLA Galaxy @base.json | 41 - .../Polymaker/Panchroma PLA Glow @base.json | 41 - .../Panchroma PLA Luminous @base.json | 41 - .../Polymaker/Panchroma PLA Marble @base.json | 41 - .../Polymaker/Panchroma PLA Matte @base.json | 41 - .../Panchroma PLA Metallic @base.json | 41 - .../Polymaker/Panchroma PLA Neon @base.json | 41 - .../Polymaker/Panchroma PLA Satin @base.json | 41 - .../Polymaker/Panchroma PLA Silk @base.json | 41 - .../Panchroma PLA Starlight @base.json | 41 - .../Panchroma PLA Temp Shift @base.json | 41 - .../Panchroma PLA Translucent @base.json | 41 - .../Panchroma PLA UV Shift @base.json | 41 - .../Polymaker/PolyLite CosPLA @base.json | 71 - .../Polymaker/PolyLite PLA Galaxy @base.json | 68 - .../Polymaker/PolyLite PLA Glow @base.json | 68 - .../PolyLite PLA Luminous @base.json | 68 - .../Polymaker/PolyLite PLA Neon @base.json | 68 - .../Polymaker/PolyLite PLA Pro @base.json | 41 - .../PolyLite PLA Starlight @base.json | 68 - .../PolyLite PLA Translucent @base.json | 68 - .../Polymaker/PolyTerra PLA Marble @base.json | 77 - .../Polymaker/PolyTerra PLA+ @base.json | 71 - .../Polymaker/Polymaker HT-PLA @base.json | 47 - .../Polymaker/Polymaker HT-PLA-GF @base.json | 41 - resources/profiles/OrcaFilamentLibrary.json | 2930 ++++++++++++++++- .../filament/AliZ/BBL}/AliZ PA-CF @P1-X1.json | 2 +- .../filament/AliZ/BBL}/AliZ PETG @P1-X1.json | 2 +- .../AliZ/BBL}/AliZ PETG-CF @P1-X1.json | 2 +- .../AliZ/BBL}/AliZ PETG-Metal @P1-X1.json | 2 +- .../filament/AliZ/BBL}/AliZ PLA @P1-X1.json | 2 +- .../filament/BETA/BBL}/BETA ABS @BBL A1.json | 2 +- .../filament/BETA/BBL}/BETA ABS @BBL H2D.json | 2 +- .../filament/BETA/BBL}/BETA ABS @BBL P1P.json | 2 +- .../filament/BETA/BBL}/BETA ABS @BBL X1C.json | 2 +- .../BBL}/BETA ASA @BBL A1 0.4 nozzle.json | 2 +- .../BBL}/BETA ASA @BBL H2D 0.4 nozzle.json | 2 +- .../BBL}/BETA ASA @BBL X1C 0.4 nozzle.json | 2 +- .../BETA/BBL}/BETA HIPS @BBL H2D.json | 2 +- .../BETA/BBL}/BETA HIPS @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PAHT-CF @BBL H2D.json | 2 +- .../BETA/BBL}/BETA PAHT-CF @BBL P1P.json | 2 +- .../BETA/BBL}/BETA PAHT-CF @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PEBA 90A @BBL A1.json | 2 +- .../BETA/BBL}/BETA PEBA 90A @BBL A1M.json | 2 +- .../BETA/BBL}/BETA PEBA 90A @BBL H2D.json | 2 +- .../BETA/BBL}/BETA PEBA 90A @BBL P1P.json | 2 +- .../BETA/BBL}/BETA PEBA 90A @BBL X1C.json | 2 +- .../filament/BETA/BBL}/BETA PETG @BBL A1.json | 2 +- .../BBL}/BETA PETG @BBL A1M 0.4 nozzle.json | 2 +- .../BBL}/BETA PETG @BBL H2D 0.4 nozzle.json | 2 +- .../BETA/BBL}/BETA PETG @BBL X1C.json | 2 +- .../BBL}/BETA PETG Fluorescence @BBL A1.json | 2 +- ...PETG Fluorescence @BBL A1M 0.4 nozzle.json | 2 +- ...PETG Fluorescence @BBL H2D 0.4 nozzle.json | 2 +- .../BBL}/BETA PETG Fluorescence @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PETG Glitter @BBL A1.json | 2 +- ...BETA PETG Glitter @BBL A1M 0.4 nozzle.json | 2 +- ...BETA PETG Glitter @BBL H2D 0.4 nozzle.json | 2 +- .../BETA/BBL}/BETA PETG Glitter @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PETG Glow @BBL A1.json | 2 +- .../BETA PETG Glow @BBL A1M 0.4 nozzle.json | 2 +- .../BETA PETG Glow @BBL H2D 0.4 nozzle.json | 2 +- .../BETA/BBL}/BETA PETG Glow @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PETG Gradient @BBL A1.json | 2 +- ...ETA PETG Gradient @BBL A1M 0.4 nozzle.json | 2 +- ...ETA PETG Gradient @BBL H2D 0.4 nozzle.json | 2 +- .../BBL}/BETA PETG Gradient @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PETG HF @BBL A1.json | 2 +- .../BETA/BBL}/BETA PETG HF @BBL A1M.json | 2 +- .../BETA PETG HF @BBL H2D 0.4 nozzle.json | 2 +- .../BETA/BBL}/BETA PETG HF @BBL X1C.json | 2 +- .../BETA PETG Heat Color Change @BBL A1.json | 2 +- ...Heat Color Change @BBL A1M 0.4 nozzle.json | 2 +- ...Heat Color Change @BBL H2D 0.4 nozzle.json | 2 +- .../BETA PETG Heat Color Change @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PETG Marble @BBL A1.json | 2 +- .../BETA PETG Marble @BBL A1M 0.4 nozzle.json | 2 +- .../BETA PETG Marble @BBL H2D 0.4 nozzle.json | 2 +- .../BETA/BBL}/BETA PETG Marble @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PETG Matte @BBL A1.json | 2 +- .../BETA PETG Matte @BBL A1M 0.4 nozzle.json | 2 +- .../BETA PETG Matte @BBL H2D 0.4 nozzle.json | 2 +- .../BETA/BBL}/BETA PETG Matte @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PETG Metallic @BBL A1.json | 2 +- ...ETA PETG Metallic @BBL A1M 0.4 nozzle.json | 2 +- ...ETA PETG Metallic @BBL H2D 0.4 nozzle.json | 2 +- .../BBL}/BETA PETG Metallic @BBL X1C.json | 2 +- .../BBL}/BETA PETG Transparent @BBL A1.json | 2 +- .../BBL}/BETA PETG Transparent @BBL A1M.json | 2 +- ... PETG Transparent @BBL H2D 0.4 nozzle.json | 2 +- .../BBL}/BETA PETG Transparent @BBL X1C.json | 2 +- .../BETA PETG UV Color Change @BBL A1.json | 2 +- ...G UV Color Change @BBL A1M 0.4 nozzle.json | 2 +- ...G UV Color Change @BBL H2D 0.4 nozzle.json | 2 +- .../BETA PETG UV Color Change @BBL X1C.json | 2 +- .../BBL}/BETA PETG-CF @BBL A1 0.4 nozzle.json | 2 +- .../BETA PETG-CF @BBL A1M 0.4 nozzle.json | 2 +- .../BETA PETG-CF @BBL H2D 0.4 nozzle.json | 2 +- .../BETA PETG-CF @BBL P1P 0.4 nozzle.json | 2 +- .../BETA PETG-CF @BBL X1C 0.4 nozzle.json | 2 +- .../BBL}/BETA PETG-GF @BBL A1 0.4 nozzle.json | 2 +- .../BETA PETG-GF @BBL A1M 0.4 nozzle.json | 2 +- .../BETA PETG-GF @BBL H2D 0.4 nozzle.json | 2 +- .../BETA PETG-GF @BBL P1P 0.4 nozzle.json | 2 +- .../BETA PETG-GF @BBL X1C 0.4 nozzle.json | 2 +- .../BETA/BBL}/BETA PLA Basic @BBL A1.json | 2 +- .../BETA/BBL}/BETA PLA Basic @BBL A1M.json | 2 +- .../BETA/BBL}/BETA PLA Basic @BBL H2D.json | 2 +- .../BETA/BBL}/BETA PLA Basic @BBL P1P.json | 2 +- .../BETA/BBL}/BETA PLA Basic @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PLA Chameleon @BBL A1.json | 2 +- .../BBL}/BETA PLA Chameleon @BBL A1M.json | 2 +- .../BBL}/BETA PLA Chameleon @BBL H2D.json | 2 +- .../BBL}/BETA PLA Chameleon @BBL P1P.json | 2 +- .../BBL}/BETA PLA Chameleon @BBL X1C.json | 2 +- .../BBL}/BETA PLA Fluorescence @BBL A1.json | 2 +- .../BBL}/BETA PLA Fluorescence @BBL A1M.json | 2 +- .../BBL}/BETA PLA Fluorescence @BBL H2D.json | 2 +- .../BBL}/BETA PLA Fluorescence @BBL P1P.json | 2 +- .../BBL}/BETA PLA Fluorescence @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PLA Glitter @BBL A1.json | 2 +- .../BETA/BBL}/BETA PLA Glitter @BBL A1M.json | 2 +- .../BETA/BBL}/BETA PLA Glitter @BBL H2D.json | 2 +- .../BETA/BBL}/BETA PLA Glitter @BBL P1P.json | 2 +- .../BETA/BBL}/BETA PLA Glitter @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PLA Glow @BBL A1.json | 2 +- .../BETA/BBL}/BETA PLA Glow @BBL A1M.json | 2 +- .../BETA/BBL}/BETA PLA Glow @BBL H2D.json | 2 +- .../BETA/BBL}/BETA PLA Glow @BBL P1P.json | 2 +- .../BETA/BBL}/BETA PLA Glow @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PLA Gradient @BBL A1.json | 2 +- .../BETA/BBL}/BETA PLA Gradient @BBL A1M.json | 2 +- .../BETA/BBL}/BETA PLA Gradient @BBL H2D.json | 2 +- .../BETA/BBL}/BETA PLA Gradient @BBL P1P.json | 2 +- .../BETA/BBL}/BETA PLA Gradient @BBL X1C.json | 2 +- .../BETA PLA Heat Color Change @BBL A1.json | 2 +- .../BETA PLA Heat Color Change @BBL A1M.json | 2 +- .../BETA PLA Heat Color Change @BBL H2D.json | 2 +- .../BETA PLA Heat Color Change @BBL P1P.json | 2 +- .../BETA PLA Heat Color Change @BBL X1C.json | 2 +- .../BBL}/BETA PLA High Speed @BBL A1.json | 2 +- .../BBL}/BETA PLA High Speed @BBL A1M.json | 2 +- .../BBL}/BETA PLA High Speed @BBL H2D.json | 2 +- .../BBL}/BETA PLA High Speed @BBL P1P.json | 2 +- .../BBL}/BETA PLA High Speed @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PLA High Temp @BBL A1.json | 2 +- .../BBL}/BETA PLA High Temp @BBL A1M.json | 2 +- .../BBL}/BETA PLA High Temp @BBL H2D.json | 2 +- .../BBL}/BETA PLA High Temp @BBL P1P.json | 2 +- .../BBL}/BETA PLA High Temp @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PLA Marble @BBL A1.json | 2 +- .../BETA/BBL}/BETA PLA Marble @BBL A1M.json | 2 +- .../BETA/BBL}/BETA PLA Marble @BBL H2D.json | 2 +- .../BETA/BBL}/BETA PLA Marble @BBL P1P.json | 2 +- .../BETA/BBL}/BETA PLA Marble @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PLA Matte @BBL A1.json | 2 +- .../BETA/BBL}/BETA PLA Matte @BBL A1M.json | 2 +- .../BETA/BBL}/BETA PLA Matte @BBL H2D.json | 2 +- .../BETA/BBL}/BETA PLA Matte @BBL P1P.json | 2 +- .../BETA/BBL}/BETA PLA Matte @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PLA Metal @BBL A1.json | 2 +- .../BETA/BBL}/BETA PLA Metal @BBL A1M.json | 2 +- .../BETA/BBL}/BETA PLA Metal @BBL H2D.json | 2 +- .../BETA/BBL}/BETA PLA Metal @BBL P1P.json | 2 +- .../BETA/BBL}/BETA PLA Metal @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PLA Metallic @BBL A1.json | 2 +- .../BETA/BBL}/BETA PLA Metallic @BBL A1M.json | 2 +- .../BETA/BBL}/BETA PLA Metallic @BBL H2D.json | 2 +- .../BETA/BBL}/BETA PLA Metallic @BBL P1P.json | 2 +- .../BETA/BBL}/BETA PLA Metallic @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PLA PRO @BBL A1.json | 2 +- .../BETA/BBL}/BETA PLA PRO @BBL A1M.json | 2 +- .../BETA/BBL}/BETA PLA PRO @BBL H2D.json | 2 +- .../BETA/BBL}/BETA PLA PRO @BBL P1P.json | 2 +- .../BETA/BBL}/BETA PLA PRO @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PLA Silk @BBL A1.json | 2 +- .../BETA/BBL}/BETA PLA Silk @BBL A1M.json | 2 +- .../BETA/BBL}/BETA PLA Silk @BBL H2D.json | 2 +- .../BETA/BBL}/BETA PLA Silk @BBL P1P.json | 2 +- .../BETA/BBL}/BETA PLA Silk @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PLA Silk+ @BBL A1.json | 2 +- .../BETA/BBL}/BETA PLA Silk+ @BBL A1M.json | 2 +- .../BETA/BBL}/BETA PLA Silk+ @BBL H2D.json | 2 +- .../BETA/BBL}/BETA PLA Silk+ @BBL P1P.json | 2 +- .../BETA/BBL}/BETA PLA Silk+ @BBL X1C.json | 2 +- .../BBL}/BETA PLA Transparent @BBL A1.json | 2 +- .../BBL}/BETA PLA Transparent @BBL A1M.json | 2 +- .../BBL}/BETA PLA Transparent @BBL H2D.json | 2 +- .../BBL}/BETA PLA Transparent @BBL P1P.json | 2 +- .../BBL}/BETA PLA Transparent @BBL X1C.json | 2 +- .../BETA PLA UV Color Change @BBL A1.json | 2 +- .../BETA PLA UV Color Change @BBL A1M.json | 2 +- .../BETA PLA UV Color Change @BBL H2D.json | 2 +- .../BETA PLA UV Color Change @BBL P1P.json | 2 +- .../BETA PLA UV Color Change @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PLA Wood @BBL A1.json | 2 +- .../BETA/BBL}/BETA PLA Wood @BBL A1M.json | 2 +- .../BETA/BBL}/BETA PLA Wood @BBL H2D.json | 2 +- .../BETA/BBL}/BETA PLA Wood @BBL P1P.json | 2 +- .../BETA/BBL}/BETA PLA Wood @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PLA Youth @BBL A1.json | 2 +- .../BETA/BBL}/BETA PLA Youth @BBL A1M.json | 2 +- .../BETA/BBL}/BETA PLA Youth @BBL H2D.json | 2 +- .../BETA/BBL}/BETA PLA Youth @BBL P1P.json | 2 +- .../BETA/BBL}/BETA PLA Youth @BBL X1C.json | 2 +- .../BETA/BBL}/BETA PLA-CF @BBL A1.json | 2 +- .../BETA/BBL}/BETA PLA-CF @BBL A1M.json | 2 +- .../BBL}/BETA PLA-CF @BBL H2D 0.4 nozzle.json | 2 +- .../BETA/BBL}/BETA PLA-CF @BBL P1P.json | 2 +- .../BETA/BBL}/BETA PLA-CF @BBL X1C.json | 2 +- .../BETA/BBL}/BETA TPU 90A @BBL A1.json | 2 +- .../BETA/BBL}/BETA TPU 90A @BBL A1M.json | 2 +- .../BETA/BBL}/BETA TPU 90A @BBL H2D.json | 2 +- .../BETA/BBL}/BETA TPU 90A @BBL P1P.json | 2 +- .../BETA/BBL}/BETA TPU 90A @BBL X1C.json | 2 +- .../BETA/BBL}/BETA TPU 95A @BBL A1.json | 2 +- .../BETA/BBL}/BETA TPU 95A @BBL A1M.json | 2 +- .../BETA/BBL}/BETA TPU 95A @BBL H2D.json | 2 +- .../BETA/BBL}/BETA TPU 95A @BBL P1P.json | 2 +- .../BETA/BBL}/BETA TPU 95A @BBL X1C.json | 2 +- .../BETA/BBL}/BETA TPU 98A @BBL A1.json | 2 +- .../BETA/BBL}/BETA TPU 98A @BBL A1M.json | 2 +- .../BETA/BBL}/BETA TPU 98A @BBL H2D.json | 2 +- .../BETA/BBL}/BETA TPU 98A @BBL P1P.json | 2 +- .../BETA/BBL}/BETA TPU 98A @BBL X1C.json | 2 +- .../BETA/BBL}/BETA TPU Matte @BBL A1.json | 2 +- .../BETA/BBL}/BETA TPU Matte @BBL A1M.json | 2 +- .../BETA/BBL}/BETA TPU Matte @BBL H2D.json | 2 +- .../BETA/BBL}/BETA TPU Matte @BBL P1P.json | 2 +- .../BETA/BBL}/BETA TPU Matte @BBL X1C.json | 2 +- .../filament/BETA/BETA ABS @base.json | 93 + .../filament/BETA/BETA ASA @base.json | 48 + .../filament/BETA/BETA HIPS @base.json | 56 + .../filament/BETA/BETA PAHT-CF @base.json | 102 + .../filament/BETA/BETA PEBA 90A @base.json | 75 + .../filament/BETA/BETA PETG @base.json | 43 + .../BETA/BETA PETG Fluorescence @base.json | 43 + .../BETA/BETA PETG Glitter @base.json | 43 + .../filament/BETA/BETA PETG Glow @base.json | 43 + .../BETA/BETA PETG Gradient @base.json | 43 + .../filament/BETA/BETA PETG HF @base.json | 43 + .../BETA PETG Heat Color Change @base.json | 43 + .../filament/BETA/BETA PETG Marble @base.json | 43 + .../filament/BETA/BETA PETG Matte @base.json | 43 + .../BETA/BETA PETG Metallic @base.json | 43 + .../BETA/BETA PETG Transparent @base.json | 43 + .../BETA/BETA PETG UV Color Change @base.json | 43 + .../filament/BETA/BETA PETG-CF @base.json | 43 + .../filament/BETA/BETA PETG-GF @base.json | 43 + .../filament/BETA/BETA PLA Basic @base.json | 46 + .../BETA/BETA PLA Chameleon @base.json | 46 + .../BETA/BETA PLA Fluorescence @base.json | 46 + .../filament/BETA/BETA PLA Glitter @base.json | 46 + .../filament/BETA/BETA PLA Glow @base.json | 46 + .../BETA/BETA PLA Gradient @base.json | 46 + .../BETA PLA Heat Color Change @base.json | 46 + .../BETA/BETA PLA High Speed @base.json | 69 + .../BETA/BETA PLA High Temp @base.json | 46 + .../filament/BETA/BETA PLA Marble @base.json | 46 + .../filament/BETA/BETA PLA Matte @base.json | 46 + .../filament/BETA/BETA PLA Metal @base.json | 46 + .../BETA/BETA PLA Metallic @base.json | 46 + .../filament/BETA/BETA PLA PRO @base.json | 46 + .../filament/BETA/BETA PLA Silk @base.json | 46 + .../filament/BETA/BETA PLA Silk+ @base.json | 46 + .../BETA/BETA PLA Transparent @base.json | 46 + .../BETA/BETA PLA UV Color Change @base.json | 46 + .../filament/BETA/BETA PLA Wood @base.json | 46 + .../filament/BETA/BETA PLA Youth @base.json | 46 + .../filament/BETA/BETA PLA-CF @base.json | 46 + .../filament/BETA/BETA TPU 90A @base.json | 75 + .../filament/BETA/BETA TPU 95A @base.json | 72 + .../filament/BETA/BETA TPU 98A @base.json | 72 + .../filament/BETA/BETA TPU Matte @base.json | 75 + .../BBL}/COEX ABS @BBL X1 0.2 nozzle.json | 2 +- .../filament/COEX/BBL}/COEX ABS @BBL X1.json | 2 +- .../BBL}/COEX ABS @BBL X1C 0.2 nozzle.json | 2 +- .../filament/COEX/BBL}/COEX ABS @BBL X1C.json | 2 +- .../COEX ABS PRIME @BBL X1 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX ABS PRIME @BBL X1.json | 2 +- .../COEX ABS PRIME @BBL X1C 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX ABS PRIME @BBL X1C.json | 2 +- .../COEX ASA PRIME @BBL X1 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX ASA PRIME @BBL X1.json | 2 +- .../COEX ASA PRIME @BBL X1C 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX ASA PRIME @BBL X1C.json | 2 +- .../COEX/BBL}/COEX NYLEX PA6-CF @BBL X1C.json | 2 +- .../BBL}/COEX NYLEX UNFILLED @BBL X1C.json | 2 +- .../COEX PCTG PRIME @BBL A1 0.2 nozzle.json | 2 +- .../COEX PCTG PRIME @BBL A1 0.8 nozzle.json | 2 +- .../COEX/BBL}/COEX PCTG PRIME @BBL A1.json | 2 +- .../COEX PCTG PRIME @BBL A1M 0.2 nozzle.json | 2 +- .../COEX PCTG PRIME @BBL A1M 0.8 nozzle.json | 2 +- .../COEX/BBL}/COEX PCTG PRIME @BBL A1M.json | 2 +- .../COEX PCTG PRIME @BBL X1C 0.2 nozzle.json | 2 +- .../COEX PCTG PRIME @BBL X1C 0.8 nozzle.json | 2 +- .../COEX/BBL}/COEX PCTG PRIME @BBL X1C.json | 2 +- .../BBL}/COEX PETG @BBL A1 0.2 nozzle.json | 2 +- .../BBL}/COEX PETG @BBL A1 0.8 nozzle.json | 2 +- .../filament/COEX/BBL}/COEX PETG @BBL A1.json | 2 +- .../BBL}/COEX PETG @BBL A1M 0.2 nozzle.json | 2 +- .../BBL}/COEX PETG @BBL A1M 0.8 nozzle.json | 2 +- .../COEX/BBL}/COEX PETG @BBL A1M.json | 2 +- .../BBL}/COEX PETG @BBL X1C 0.2 nozzle.json | 2 +- .../BBL}/COEX PETG @BBL X1C 0.8 nozzle.json | 2 +- .../COEX/BBL}/COEX PETG @BBL X1C.json | 2 +- .../BBL}/COEX PLA @BBL A1 0.2 nozzle.json | 2 +- .../filament/COEX/BBL}/COEX PLA @BBL A1.json | 2 +- .../BBL}/COEX PLA @BBL A1M 0.2 nozzle.json | 2 +- .../filament/COEX/BBL}/COEX PLA @BBL A1M.json | 2 +- .../BBL}/COEX PLA @BBL P1P 0.2 nozzle.json | 2 +- .../filament/COEX/BBL}/COEX PLA @BBL P1P.json | 2 +- .../filament/COEX/BBL}/COEX PLA @BBL X1.json | 2 +- .../BBL}/COEX PLA @BBL X1C 0.2 nozzle.json | 2 +- .../filament/COEX/BBL}/COEX PLA @BBL X1C.json | 2 +- .../COEX PLA PRIME @BBL A1 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX PLA PRIME @BBL A1.json | 2 +- .../COEX PLA PRIME @BBL A1M 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX PLA PRIME @BBL A1M.json | 2 +- .../COEX PLA PRIME @BBL P1P 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX PLA PRIME @BBL P1P.json | 2 +- .../COEX PLA PRIME @BBL X1 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX PLA PRIME @BBL X1.json | 2 +- .../COEX PLA PRIME @BBL X1C 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX PLA PRIME @BBL X1C.json | 2 +- .../COEX PLA+Silk @BBL A1 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX PLA+Silk @BBL A1.json | 2 +- .../COEX PLA+Silk @BBL A1M 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX PLA+Silk @BBL A1M.json | 2 +- .../COEX PLA+Silk @BBL P1P 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX PLA+Silk @BBL P1P.json | 2 +- .../COEX PLA+Silk @BBL X1 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX PLA+Silk @BBL X1.json | 2 +- .../COEX PLA+Silk @BBL X1C 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX PLA+Silk @BBL X1C.json | 2 +- .../COEX/BBL}/COEX TPE 30D @BBL A1.json | 2 +- .../COEX/BBL}/COEX TPE 30D @BBL A1M.json | 2 +- .../COEX/BBL}/COEX TPE 30D @BBL P1P.json | 2 +- .../COEX/BBL}/COEX TPE 30D @BBL X1.json | 2 +- .../COEX/BBL}/COEX TPE 30D @BBL X1C.json | 2 +- .../BBL}/COEX TPE 40D @BBL A1 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX TPE 40D @BBL A1.json | 2 +- .../COEX TPE 40D @BBL A1M 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX TPE 40D @BBL A1M.json | 2 +- .../COEX TPE 40D @BBL P1P 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX TPE 40D @BBL P1P.json | 2 +- .../BBL}/COEX TPE 40D @BBL X1 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX TPE 40D @BBL X1.json | 2 +- .../COEX TPE 40D @BBL X1C 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX TPE 40D @BBL X1C.json | 2 +- .../BBL}/COEX TPE 60D @BBL A1 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX TPE 60D @BBL A1.json | 2 +- .../COEX TPE 60D @BBL A1M 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX TPE 60D @BBL A1M.json | 2 +- .../COEX TPE 60D @BBL P1P 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX TPE 60D @BBL P1P.json | 2 +- .../BBL}/COEX TPE 60D @BBL X1 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX TPE 60D @BBL X1.json | 2 +- .../COEX TPE 60D @BBL X1C 0.2 nozzle.json | 2 +- .../COEX/BBL}/COEX TPE 60D @BBL X1C.json | 2 +- .../COEX/BBL}/COEX TPU 60A @BBL X1C.json | 2 +- .../FusRock/BBL}/FusRock ABS-GF @BBL A1.json | 4 +- .../FusRock/BBL}/FusRock ABS-GF @BBL H2D.json | 4 +- .../FusRock/BBL}/FusRock ABS-GF @BBL P1P.json | 4 +- .../FusRock/BBL}/FusRock ABS-GF @BBL X1C.json | 4 +- .../FusRock/BBL/FusRock ABS-GF @BBL base.json | 19 + .../Numakers PLA+ @BBL A1 0.2 nozzle.json | 4 +- .../Numakers/BBL}/Numakers PLA+ @BBL A1.json | 4 +- .../Numakers PLA+ @BBL A1M 0.2 nozzle.json | 4 +- .../Numakers/BBL}/Numakers PLA+ @BBL A1M.json | 4 +- .../Numakers PLA+ @BBL P1P 0.2 nozzle.json | 4 +- .../Numakers/BBL}/Numakers PLA+ @BBL P1P.json | 4 +- .../Numakers/BBL}/Numakers PLA+ @BBL X1.json | 4 +- .../Numakers PLA+ @BBL X1C 0.2 nozzle.json | 4 +- .../Numakers/BBL}/Numakers PLA+ @BBL X1C.json | 4 +- .../BBL/Numakers PLA+ @BBL base.json} | 98 +- .../BBL}/Overture ASA @BBL X1 0.2 nozzle.json | 2 +- .../Overture/BBL}/Overture ASA @BBL X1.json | 2 +- .../Overture ASA @BBL X1C 0.2 nozzle.json | 2 +- .../Overture/BBL}/Overture ASA @BBL X1C.json | 2 +- .../Overture Air PLA @BBL A1 0.2 nozzle.json | 2 +- .../BBL}/Overture Air PLA @BBL A1.json | 2 +- .../Overture Air PLA @BBL A1M 0.2 nozzle.json | 2 +- .../BBL}/Overture Air PLA @BBL A1M.json | 2 +- .../Overture Air PLA @BBL P1P 0.2 nozzle.json | 2 +- .../BBL}/Overture Air PLA @BBL P1P.json | 2 +- .../Overture Air PLA @BBL X1 0.2 nozzle.json | 2 +- .../BBL}/Overture Air PLA @BBL X1.json | 2 +- .../Overture Air PLA @BBL X1C 0.2 nozzle.json | 2 +- .../BBL}/Overture Air PLA @BBL X1C.json | 2 +- .../Overture Easy PLA @BBL A1 0.2 nozzle.json | 2 +- .../BBL}/Overture Easy PLA @BBL A1.json | 2 +- ...Overture Easy PLA @BBL A1M 0.2 nozzle.json | 2 +- .../BBL}/Overture Easy PLA @BBL A1M.json | 2 +- ...Overture Easy PLA @BBL P1P 0.2 nozzle.json | 2 +- .../BBL}/Overture Easy PLA @BBL P1P.json | 2 +- .../Overture Easy PLA @BBL X1 0.2 nozzle.json | 2 +- .../BBL}/Overture Easy PLA @BBL X1.json | 2 +- ...Overture Easy PLA @BBL X1C 0.2 nozzle.json | 2 +- .../BBL}/Overture Easy PLA @BBL X1C.json | 2 +- .../Overture PLA Pro @BBL A1 0.2 nozzle.json | 4 +- .../BBL}/Overture PLA Pro @BBL A1.json | 4 +- .../Overture PLA Pro @BBL A1M 0.2 nozzle.json | 4 +- .../BBL}/Overture PLA Pro @BBL A1M.json | 4 +- .../Overture PLA Pro @BBL P1P 0.2 nozzle.json | 4 +- .../BBL}/Overture PLA Pro @BBL P1P.json | 4 +- .../Overture PLA Pro @BBL X1 0.2 nozzle.json | 4 +- .../BBL}/Overture PLA Pro @BBL X1.json | 4 +- .../Overture PLA Pro @BBL X1C 0.2 nozzle.json | 4 +- .../BBL}/Overture PLA Pro @BBL X1C.json | 4 +- .../BBL/Overture PLA Pro @BBL base.json | 56 + .../Overture Rock PLA @BBL A1 0.2 nozzle.json | 2 +- .../BBL}/Overture Rock PLA @BBL A1.json | 2 +- ...Overture Rock PLA @BBL A1M 0.2 nozzle.json | 2 +- .../BBL}/Overture Rock PLA @BBL A1M.json | 2 +- ...Overture Rock PLA @BBL P1P 0.2 nozzle.json | 2 +- .../BBL}/Overture Rock PLA @BBL P1P.json | 2 +- .../Overture Rock PLA @BBL X1 0.2 nozzle.json | 2 +- .../BBL}/Overture Rock PLA @BBL X1.json | 2 +- ...Overture Rock PLA @BBL X1C 0.2 nozzle.json | 2 +- .../BBL}/Overture Rock PLA @BBL X1C.json | 2 +- .../Overture Silk PLA @BBL A1 0.2 nozzle.json | 2 +- .../BBL}/Overture Silk PLA @BBL A1.json | 2 +- ...Overture Silk PLA @BBL A1M 0.2 nozzle.json | 2 +- .../BBL}/Overture Silk PLA @BBL A1M.json | 2 +- ...Overture Silk PLA @BBL P1P 0.2 nozzle.json | 2 +- .../BBL}/Overture Silk PLA @BBL P1P.json | 2 +- .../Overture Silk PLA @BBL X1 0.2 nozzle.json | 2 +- .../BBL}/Overture Silk PLA @BBL X1.json | 2 +- ...Overture Silk PLA @BBL X1C 0.2 nozzle.json | 2 +- .../BBL}/Overture Silk PLA @BBL X1C.json | 2 +- ...verture Super PLA+ @BBL A1 0.2 nozzle.json | 2 +- .../BBL}/Overture Super PLA+ @BBL A1.json | 2 +- ...erture Super PLA+ @BBL A1M 0.2 nozzle.json | 2 +- .../BBL}/Overture Super PLA+ @BBL A1M.json | 2 +- ...erture Super PLA+ @BBL P1P 0.2 nozzle.json | 2 +- .../BBL}/Overture Super PLA+ @BBL P1P.json | 2 +- ...verture Super PLA+ @BBL X1 0.2 nozzle.json | 2 +- .../BBL}/Overture Super PLA+ @BBL X1.json | 2 +- ...erture Super PLA+ @BBL X1C 0.2 nozzle.json | 2 +- .../BBL}/Overture Super PLA+ @BBL X1C.json | 2 +- .../BBL}/Overture TPU @BBL A1 0.2 nozzle.json | 2 +- .../Overture/BBL}/Overture TPU @BBL A1.json | 2 +- .../Overture TPU @BBL A1M 0.2 nozzle.json | 2 +- .../Overture/BBL}/Overture TPU @BBL A1M.json | 2 +- .../Overture TPU @BBL P1P 0.2 nozzle.json | 2 +- .../Overture/BBL}/Overture TPU @BBL P1P.json | 2 +- .../BBL}/Overture TPU @BBL X1 0.2 nozzle.json | 2 +- .../Overture/BBL}/Overture TPU @BBL X1.json | 2 +- .../Overture TPU @BBL X1C 0.2 nozzle.json | 2 +- .../Overture/BBL}/Overture TPU @BBL X1C.json | 2 +- .../BBL}/Fiberon PA12-CF10 @BBL X1.json | 2 +- .../BBL}/Fiberon PA6-CF20 @BBL X1.json | 2 +- .../BBL}/Fiberon PA6-GF25 @BBL X1.json | 2 +- .../BBL}/Fiberon PA612-CF15 @BBL X1.json | 2 +- .../BBL}/Fiberon PET-CF17 @BBL X1.json | 2 +- .../BBL}/Fiberon PETG-ESD @BBL X1.json | 4 +- .../BBL/Fiberon PETG-ESD @BBL base.json | 59 + .../BBL}/Fiberon PETG-rCF08 @BBL X1.json | 2 +- .../Panchroma CoPE @BBL A1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma CoPE @BBL A1.json | 4 +- .../Panchroma CoPE @BBL A1M 0.2 nozzle.json | 4 +- .../BBL}/Panchroma CoPE @BBL A1M.json | 4 +- .../Panchroma CoPE @BBL P1P 0.2 nozzle.json | 4 +- .../BBL}/Panchroma CoPE @BBL P1P.json | 4 +- .../Panchroma CoPE @BBL X1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma CoPE @BBL X1.json | 4 +- .../Panchroma CoPE @BBL X1C 0.2 nozzle.json | 4 +- .../BBL}/Panchroma CoPE @BBL X1C.json | 4 +- .../BBL/Panchroma CoPE @BBL base.json | 59 + .../Panchroma PLA @BBL A1 0.2 nozzle.json | 4 +- .../Polymaker/BBL}/Panchroma PLA @BBL A1.json | 4 +- .../Panchroma PLA @BBL A1M 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA @BBL A1M.json | 4 +- .../Panchroma PLA @BBL P1P 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA @BBL P1P.json | 4 +- .../Panchroma PLA @BBL X1 0.2 nozzle.json | 4 +- .../Polymaker/BBL}/Panchroma PLA @BBL X1.json | 4 +- .../Panchroma PLA @BBL X1C 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA @BBL X1C.json | 4 +- .../BBL/Panchroma PLA @BBL base.json | 65 + ...roma PLA Celestial @BBL A1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Celestial @BBL A1.json | 4 +- ...oma PLA Celestial @BBL A1M 0.2 nozzle.json | 4 +- .../Panchroma PLA Celestial @BBL A1M.json | 4 +- ...oma PLA Celestial @BBL P1P 0.2 nozzle.json | 4 +- .../Panchroma PLA Celestial @BBL P1P.json | 4 +- ...roma PLA Celestial @BBL X1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Celestial @BBL X1.json | 4 +- ...oma PLA Celestial @BBL X1C 0.2 nozzle.json | 4 +- .../Panchroma PLA Celestial @BBL X1C.json | 4 +- .../Panchroma PLA Celestial @BBL base.json | 59 + ...nchroma PLA Galaxy @BBL A1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Galaxy @BBL A1.json | 4 +- ...chroma PLA Galaxy @BBL A1M 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Galaxy @BBL A1M.json | 4 +- ...chroma PLA Galaxy @BBL P1P 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Galaxy @BBL P1P.json | 4 +- ...nchroma PLA Galaxy @BBL X1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Galaxy @BBL X1.json | 4 +- ...chroma PLA Galaxy @BBL X1C 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Galaxy @BBL X1C.json | 4 +- .../BBL/Panchroma PLA Galaxy @BBL base.json | 59 + ...Panchroma PLA Glow @BBL A1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Glow @BBL A1.json | 4 +- ...anchroma PLA Glow @BBL A1M 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Glow @BBL A1M.json | 4 +- ...anchroma PLA Glow @BBL P1P 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Glow @BBL P1P.json | 4 +- ...Panchroma PLA Glow @BBL X1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Glow @BBL X1.json | 4 +- ...anchroma PLA Glow @BBL X1C 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Glow @BBL X1C.json | 4 +- .../BBL/Panchroma PLA Glow @BBL base.json | 59 + ...hroma PLA Luminous @BBL A1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Luminous @BBL A1.json | 4 +- ...roma PLA Luminous @BBL A1M 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Luminous @BBL A1M.json | 4 +- ...roma PLA Luminous @BBL P1P 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Luminous @BBL P1P.json | 4 +- ...hroma PLA Luminous @BBL X1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Luminous @BBL X1.json | 4 +- ...roma PLA Luminous @BBL X1C 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Luminous @BBL X1C.json | 4 +- .../BBL/Panchroma PLA Luminous @BBL base.json | 59 + ...nchroma PLA Marble @BBL A1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Marble @BBL A1.json | 4 +- ...chroma PLA Marble @BBL A1M 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Marble @BBL A1M.json | 4 +- ...chroma PLA Marble @BBL P1P 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Marble @BBL P1P.json | 4 +- ...nchroma PLA Marble @BBL X1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Marble @BBL X1.json | 4 +- ...chroma PLA Marble @BBL X1C 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Marble @BBL X1C.json | 4 +- .../BBL/Panchroma PLA Marble @BBL base.json | 62 + ...anchroma PLA Matte @BBL A1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Matte @BBL A1.json | 4 +- ...nchroma PLA Matte @BBL A1M 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Matte @BBL A1M.json | 4 +- ...nchroma PLA Matte @BBL P1P 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Matte @BBL P1P.json | 4 +- ...anchroma PLA Matte @BBL X1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Matte @BBL X1.json | 4 +- ...nchroma PLA Matte @BBL X1C 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Matte @BBL X1C.json | 4 +- .../BBL/Panchroma PLA Matte @BBL base.json | 62 + ...hroma PLA Metallic @BBL A1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Metallic @BBL A1.json | 4 +- ...roma PLA Metallic @BBL A1M 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Metallic @BBL A1M.json | 4 +- ...roma PLA Metallic @BBL P1P 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Metallic @BBL P1P.json | 4 +- ...hroma PLA Metallic @BBL X1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Metallic @BBL X1.json | 4 +- ...roma PLA Metallic @BBL X1C 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Metallic @BBL X1C.json | 4 +- .../BBL/Panchroma PLA Metallic @BBL base.json | 59 + ...Panchroma PLA Neon @BBL A1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Neon @BBL A1.json | 4 +- ...anchroma PLA Neon @BBL A1M 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Neon @BBL A1M.json | 4 +- ...anchroma PLA Neon @BBL P1P 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Neon @BBL P1P.json | 4 +- ...Panchroma PLA Neon @BBL X1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Neon @BBL X1.json | 4 +- ...anchroma PLA Neon @BBL X1C 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Neon @BBL X1C.json | 4 +- .../BBL/Panchroma PLA Neon @BBL base.json | 59 + ...anchroma PLA Satin @BBL A1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Satin @BBL A1.json | 4 +- ...nchroma PLA Satin @BBL A1M 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Satin @BBL A1M.json | 4 +- ...nchroma PLA Satin @BBL P1P 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Satin @BBL P1P.json | 4 +- ...anchroma PLA Satin @BBL X1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Satin @BBL X1.json | 4 +- ...nchroma PLA Satin @BBL X1C 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Satin @BBL X1C.json | 4 +- .../BBL/Panchroma PLA Satin @BBL base.json | 62 + ...Panchroma PLA Silk @BBL A1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Silk @BBL A1.json | 4 +- ...anchroma PLA Silk @BBL A1M 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Silk @BBL A1M.json | 4 +- ...anchroma PLA Silk @BBL P1P 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Silk @BBL P1P.json | 4 +- ...Panchroma PLA Silk @BBL X1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Silk @BBL X1.json | 4 +- ...anchroma PLA Silk @BBL X1C 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Silk @BBL X1C.json | 4 +- .../BBL/Panchroma PLA Silk @BBL base.json | 62 + ...roma PLA Starlight @BBL A1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Starlight @BBL A1.json | 4 +- ...oma PLA Starlight @BBL A1M 0.2 nozzle.json | 4 +- .../Panchroma PLA Starlight @BBL A1M.json | 4 +- ...oma PLA Starlight @BBL P1P 0.2 nozzle.json | 4 +- .../Panchroma PLA Starlight @BBL P1P.json | 4 +- ...roma PLA Starlight @BBL X1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA Starlight @BBL X1.json | 4 +- ...oma PLA Starlight @BBL X1C 0.2 nozzle.json | 4 +- .../Panchroma PLA Starlight @BBL X1C.json | 4 +- .../Panchroma PLA Starlight @BBL base.json | 59 + ...oma PLA Temp Shift @BBL A1 0.2 nozzle.json | 4 +- .../Panchroma PLA Temp Shift @BBL A1.json | 4 +- ...ma PLA Temp Shift @BBL A1M 0.2 nozzle.json | 4 +- .../Panchroma PLA Temp Shift @BBL A1M.json | 4 +- ...ma PLA Temp Shift @BBL P1P 0.2 nozzle.json | 4 +- .../Panchroma PLA Temp Shift @BBL P1P.json | 4 +- ...oma PLA Temp Shift @BBL X1 0.2 nozzle.json | 4 +- .../Panchroma PLA Temp Shift @BBL X1.json | 4 +- ...ma PLA Temp Shift @BBL X1C 0.2 nozzle.json | 4 +- .../Panchroma PLA Temp Shift @BBL X1C.json | 4 +- .../Panchroma PLA Temp Shift @BBL base.json | 59 + ...ma PLA Translucent @BBL A1 0.2 nozzle.json | 4 +- .../Panchroma PLA Translucent @BBL A1.json | 4 +- ...a PLA Translucent @BBL A1M 0.2 nozzle.json | 4 +- .../Panchroma PLA Translucent @BBL A1M.json | 4 +- ...a PLA Translucent @BBL P1P 0.2 nozzle.json | 4 +- .../Panchroma PLA Translucent @BBL P1P.json | 4 +- ...ma PLA Translucent @BBL X1 0.2 nozzle.json | 4 +- .../Panchroma PLA Translucent @BBL X1.json | 4 +- ...a PLA Translucent @BBL X1C 0.2 nozzle.json | 4 +- .../Panchroma PLA Translucent @BBL X1C.json | 4 +- .../Panchroma PLA Translucent @BBL base.json | 56 + ...hroma PLA UV Shift @BBL A1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA UV Shift @BBL A1.json | 4 +- ...roma PLA UV Shift @BBL A1M 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA UV Shift @BBL A1M.json | 4 +- ...roma PLA UV Shift @BBL P1P 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA UV Shift @BBL P1P.json | 4 +- ...hroma PLA UV Shift @BBL X1 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA UV Shift @BBL X1.json | 4 +- ...roma PLA UV Shift @BBL X1C 0.2 nozzle.json | 4 +- .../BBL}/Panchroma PLA UV Shift @BBL X1C.json | 4 +- .../BBL/Panchroma PLA UV Shift @BBL base.json | 59 + .../BBL}/PolyLite CosPLA @BBL A1.json | 2 +- .../BBL}/PolyLite CosPLA @BBL A1M.json | 2 +- .../BBL}/PolyLite CosPLA @BBL P1P.json | 2 +- .../BBL}/PolyLite CosPLA @BBL X1.json | 2 +- .../BBL}/PolyLite PLA Galaxy @BBL A1.json | 2 +- .../BBL}/PolyLite PLA Galaxy @BBL A1M.json | 2 +- .../BBL}/PolyLite PLA Galaxy @BBL P1P.json | 2 +- .../BBL}/PolyLite PLA Galaxy @BBL X1.json | 2 +- .../BBL}/PolyLite PLA Glow @BBL A1.json | 2 +- .../BBL}/PolyLite PLA Glow @BBL A1M.json | 2 +- .../BBL}/PolyLite PLA Glow @BBL P1P.json | 2 +- .../BBL}/PolyLite PLA Glow @BBL X1.json | 2 +- .../BBL}/PolyLite PLA Luminous @BBL A1.json | 2 +- .../BBL}/PolyLite PLA Luminous @BBL A1M.json | 2 +- .../BBL}/PolyLite PLA Luminous @BBL P1P.json | 2 +- .../BBL}/PolyLite PLA Luminous @BBL X1.json | 2 +- .../BBL}/PolyLite PLA Neon @BBL A1.json | 2 +- .../BBL}/PolyLite PLA Neon @BBL A1M.json | 2 +- .../BBL}/PolyLite PLA Neon @BBL P1P.json | 2 +- .../BBL}/PolyLite PLA Neon @BBL X1.json | 2 +- .../PolyLite PLA Pro @BBL A1 0.2 nozzle.json | 4 +- .../BBL}/PolyLite PLA Pro @BBL A1.json | 4 +- .../PolyLite PLA Pro @BBL A1M 0.2 nozzle.json | 4 +- .../BBL}/PolyLite PLA Pro @BBL A1M.json | 4 +- .../PolyLite PLA Pro @BBL P1P 0.2 nozzle.json | 4 +- .../BBL}/PolyLite PLA Pro @BBL P1P.json | 4 +- .../PolyLite PLA Pro @BBL X1 0.2 nozzle.json | 4 +- .../BBL}/PolyLite PLA Pro @BBL X1.json | 4 +- .../PolyLite PLA Pro @BBL X1C 0.2 nozzle.json | 4 +- .../BBL}/PolyLite PLA Pro @BBL X1C.json | 4 +- .../BBL/PolyLite PLA Pro @BBL base.json | 56 + .../BBL}/PolyLite PLA Starlight @BBL A1.json | 2 +- .../BBL}/PolyLite PLA Starlight @BBL A1M.json | 2 +- .../BBL}/PolyLite PLA Starlight @BBL P1P.json | 2 +- .../BBL}/PolyLite PLA Starlight @BBL X1.json | 2 +- .../PolyLite PLA Translucent @BBL A1.json | 2 +- .../PolyLite PLA Translucent @BBL A1M.json | 2 +- .../PolyLite PLA Translucent @BBL P1P.json | 2 +- .../PolyLite PLA Translucent @BBL X1.json | 2 +- .../BBL}/PolyTerra PLA Marble @BBL A1.json | 2 +- .../BBL}/PolyTerra PLA Marble @BBL A1M.json | 2 +- .../BBL}/PolyTerra PLA Marble @BBL P1P.json | 2 +- .../BBL}/PolyTerra PLA Marble @BBL X1.json | 2 +- .../BBL}/PolyTerra PLA+ @BBL A1.json | 2 +- .../BBL}/PolyTerra PLA+ @BBL A1M.json | 2 +- .../BBL}/PolyTerra PLA+ @BBL P1P.json | 2 +- .../BBL}/PolyTerra PLA+ @BBL X1.json | 2 +- .../Polymaker HT-PLA @BBL A1 0.2 nozzle.json | 4 +- .../BBL}/Polymaker HT-PLA @BBL A1.json | 4 +- .../Polymaker HT-PLA @BBL A1M 0.2 nozzle.json | 4 +- .../BBL}/Polymaker HT-PLA @BBL A1M.json | 4 +- .../Polymaker HT-PLA @BBL P1P 0.2 nozzle.json | 4 +- .../BBL}/Polymaker HT-PLA @BBL P1P.json | 4 +- .../Polymaker HT-PLA @BBL X1 0.2 nozzle.json | 4 +- .../BBL}/Polymaker HT-PLA @BBL X1.json | 4 +- .../Polymaker HT-PLA @BBL X1C 0.2 nozzle.json | 4 +- .../BBL}/Polymaker HT-PLA @BBL X1C.json | 4 +- .../BBL/Polymaker HT-PLA @BBL base.json | 65 + ...olymaker HT-PLA-GF @BBL A1 0.2 nozzle.json | 4 +- .../BBL}/Polymaker HT-PLA-GF @BBL A1.json | 4 +- ...lymaker HT-PLA-GF @BBL A1M 0.2 nozzle.json | 4 +- .../BBL}/Polymaker HT-PLA-GF @BBL A1M.json | 4 +- ...lymaker HT-PLA-GF @BBL P1P 0.2 nozzle.json | 4 +- .../BBL}/Polymaker HT-PLA-GF @BBL P1P.json | 4 +- ...olymaker HT-PLA-GF @BBL X1 0.2 nozzle.json | 4 +- .../BBL}/Polymaker HT-PLA-GF @BBL X1.json | 4 +- ...lymaker HT-PLA-GF @BBL X1C 0.2 nozzle.json | 4 +- .../BBL}/Polymaker HT-PLA-GF @BBL X1C.json | 4 +- .../BBL/Polymaker HT-PLA-GF @BBL base.json | 71 + .../Polymaker/Fiberon PA12-CF10 @base.json | 45 + .../Polymaker/Fiberon PA6-CF20 @base.json | 45 + .../Polymaker/Fiberon PA6-GF25 @base.json | 45 + .../Polymaker/Fiberon PA612-CF15 @base.json | 104 + .../Polymaker/Fiberon PET-CF17 @base.json | 46 + .../Polymaker/Fiberon PETG-rCF08 @base.json | 46 + .../Polymaker/PolyLite CosPLA @base.json | 117 + .../Polymaker/PolyLite PLA Galaxy @base.json | 114 + .../Polymaker/PolyLite PLA Glow @base.json | 114 + .../PolyLite PLA Luminous @base.json | 114 + .../Polymaker/PolyLite PLA Neon @base.json | 114 + .../PolyLite PLA Starlight @base.json | 114 + .../PolyLite PLA Translucent @base.json | 114 + .../Polymaker/PolyTerra PLA Marble @base.json | 123 + .../Polymaker/PolyTerra PLA+ @base.json | 117 + .../addnorth/BBL/Generic ABS @BBL base.json | 82 + .../addnorth/BBL/Generic PA @BBL base.json | 88 + .../addnorth/BBL/Generic PA-CF @BBL base.json | 85 + .../addnorth/BBL/Generic PC @BBL base.json | 52 + .../addnorth/BBL/Generic PETG @BBL base.json | 107 + .../BBL/Generic PETG-CF @BBL base.json | 113 + .../addnorth/BBL/Generic PLA @BBL base.json | 59 + .../BBL/Generic PLA High Speed @BBL base.json | 62 + .../BBL/Generic PLA Silk @BBL base.json | 65 + .../BBL/Generic PLA-CF @BBL base.json | 83 + .../addnorth/BBL/Generic TPU @BBL base.json | 49 + .../addnorth/BBL}/addnorth ABS rABS.json | 4 +- .../addnorth/BBL}/addnorth PA Adura FDA.json | 4 +- .../addnorth/BBL}/addnorth PA Adura.json | 4 +- .../addnorth/BBL}/addnorth PA-CF Adura X.json | 4 +- .../addnorth/BBL}/addnorth PA6 Addlantis.json | 4 +- .../BBL}/addnorth PC BLend HT LCF.json | 4 +- .../addnorth/BBL}/addnorth PETG Base.json | 4 +- .../addnorth/BBL}/addnorth PETG ESD.json | 4 +- .../addnorth/BBL}/addnorth PETG Economy.json | 4 +- .../addnorth/BBL}/addnorth PETG Flame v0.json | 4 +- .../BBL}/addnorth PETG PRO Matte.json | 4 +- .../BBL}/addnorth PETG rPETG Matte.json | 4 +- .../BBL}/addnorth PETG-CF Rigid X.json | 4 +- .../addnorth/BBL}/addnorth PLA E-PLA.json | 4 +- .../addnorth/BBL}/addnorth PLA Economy.json | 4 +- .../BBL}/addnorth PLA HT-PLA PRO Matte.json | 4 +- .../BBL}/addnorth PLA Premium Silk.json | 4 +- .../addnorth/BBL}/addnorth PLA Textura.json | 4 +- .../addnorth/BBL}/addnorth PLA Wood.json | 4 +- .../BBL}/addnorth PLA X-PLA High Speed.json | 4 +- .../addnorth/BBL}/addnorth PLA X-PLA.json | 4 +- .../BBL}/addnorth PLA rPLA RE-ADD.json | 4 +- .../BBL}/addnorth PLA-CF Carbon Fiber.json | 4 +- .../BBL}/addnorth PVDF Adamant S1.json | 4 +- .../addnorth/BBL}/addnorth TPU EasyFlex.json | 4 +- .../BBL}/addnorth TPU Pro Matte 85A.json | 4 +- .../BBL}/addnorth TPU Pro Matte 95A.json | 4 +- 774 files changed, 9620 insertions(+), 5739 deletions(-) delete mode 100644 resources/profiles/BBL/filament/BETA/BETA ABS @base.json delete mode 100644 resources/profiles/BBL/filament/BETA/BETA HIPS @base.json delete mode 100644 resources/profiles/BBL/filament/BETA/BETA PAHT-CF @base.json delete mode 100644 resources/profiles/BBL/filament/BETA/BETA PEBA 90A @base.json delete mode 100644 resources/profiles/BBL/filament/BETA/BETA PLA High Speed @base.json delete mode 100644 resources/profiles/BBL/filament/BETA/BETA TPU 90A @base.json delete mode 100644 resources/profiles/BBL/filament/BETA/BETA TPU 95A @base.json delete mode 100644 resources/profiles/BBL/filament/BETA/BETA TPU 98A @base.json delete mode 100644 resources/profiles/BBL/filament/BETA/BETA TPU Matte @base.json delete mode 100644 resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @base.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture PLA Pro @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF15 @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Panchroma PLA @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite CosPLA @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PLA Galaxy @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PLA Glow @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PLA Luminous @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PLA Neon @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PLA Starlight @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PLA Translucent @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyTerra PLA Marble @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyTerra PLA+ @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @base.json rename resources/profiles/{BBL/filament/AliZ => OrcaFilamentLibrary/filament/AliZ/BBL}/AliZ PA-CF @P1-X1.json (91%) rename resources/profiles/{BBL/filament/AliZ => OrcaFilamentLibrary/filament/AliZ/BBL}/AliZ PETG @P1-X1.json (91%) rename resources/profiles/{BBL/filament/AliZ => OrcaFilamentLibrary/filament/AliZ/BBL}/AliZ PETG-CF @P1-X1.json (91%) rename resources/profiles/{BBL/filament/AliZ => OrcaFilamentLibrary/filament/AliZ/BBL}/AliZ PETG-Metal @P1-X1.json (92%) rename resources/profiles/{BBL/filament/AliZ => OrcaFilamentLibrary/filament/AliZ/BBL}/AliZ PLA @P1-X1.json (91%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA ABS @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA ABS @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA ABS @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA ABS @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA ASA @BBL A1 0.4 nozzle.json (90%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA ASA @BBL H2D 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA ASA @BBL X1C 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA HIPS @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA HIPS @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PAHT-CF @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PAHT-CF @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PAHT-CF @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PEBA 90A @BBL A1.json (93%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PEBA 90A @BBL A1M.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PEBA 90A @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PEBA 90A @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PEBA 90A @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG @BBL A1M 0.4 nozzle.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG @BBL H2D 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Fluorescence @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Fluorescence @BBL A1M 0.4 nozzle.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Fluorescence @BBL H2D 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Fluorescence @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Glitter @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Glitter @BBL A1M 0.4 nozzle.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Glitter @BBL H2D 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Glitter @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Glow @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Glow @BBL A1M 0.4 nozzle.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Glow @BBL H2D 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Glow @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Gradient @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Gradient @BBL A1M 0.4 nozzle.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Gradient @BBL H2D 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Gradient @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG HF @BBL A1.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG HF @BBL A1M.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG HF @BBL H2D 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG HF @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Heat Color Change @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Heat Color Change @BBL A1M 0.4 nozzle.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Heat Color Change @BBL H2D 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Heat Color Change @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Marble @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Marble @BBL A1M 0.4 nozzle.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Marble @BBL H2D 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Marble @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Matte @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Matte @BBL A1M 0.4 nozzle.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Matte @BBL H2D 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Matte @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Metallic @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Metallic @BBL A1M 0.4 nozzle.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Metallic @BBL H2D 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Metallic @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Transparent @BBL A1.json (92%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Transparent @BBL A1M.json (92%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Transparent @BBL H2D 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG Transparent @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG UV Color Change @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG UV Color Change @BBL A1M 0.4 nozzle.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG UV Color Change @BBL H2D 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG UV Color Change @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG-CF @BBL A1 0.4 nozzle.json (93%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG-CF @BBL A1M 0.4 nozzle.json (88%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG-CF @BBL H2D 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG-CF @BBL P1P 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG-CF @BBL X1C 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG-GF @BBL A1 0.4 nozzle.json (93%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG-GF @BBL A1M 0.4 nozzle.json (88%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG-GF @BBL H2D 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG-GF @BBL P1P 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PETG-GF @BBL X1C 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Basic @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Basic @BBL A1M.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Basic @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Basic @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Basic @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Chameleon @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Chameleon @BBL A1M.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Chameleon @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Chameleon @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Chameleon @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Fluorescence @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Fluorescence @BBL A1M.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Fluorescence @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Fluorescence @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Fluorescence @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Glitter @BBL A1.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Glitter @BBL A1M.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Glitter @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Glitter @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Glitter @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Glow @BBL A1.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Glow @BBL A1M.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Glow @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Glow @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Glow @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Gradient @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Gradient @BBL A1M.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Gradient @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Gradient @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Gradient @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Heat Color Change @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Heat Color Change @BBL A1M.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Heat Color Change @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Heat Color Change @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Heat Color Change @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA High Speed @BBL A1.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA High Speed @BBL A1M.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA High Speed @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA High Speed @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA High Speed @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA High Temp @BBL A1.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA High Temp @BBL A1M.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA High Temp @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA High Temp @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA High Temp @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Marble @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Marble @BBL A1M.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Marble @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Marble @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Marble @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Matte @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Matte @BBL A1M.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Matte @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Matte @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Matte @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Metal @BBL A1.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Metal @BBL A1M.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Metal @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Metal @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Metal @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Metallic @BBL A1.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Metallic @BBL A1M.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Metallic @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Metallic @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Metallic @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA PRO @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA PRO @BBL A1M.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA PRO @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA PRO @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA PRO @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Silk @BBL A1.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Silk @BBL A1M.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Silk @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Silk @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Silk @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Silk+ @BBL A1.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Silk+ @BBL A1M.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Silk+ @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Silk+ @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Silk+ @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Transparent @BBL A1.json (96%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Transparent @BBL A1M.json (96%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Transparent @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Transparent @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Transparent @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA UV Color Change @BBL A1.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA UV Color Change @BBL A1M.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA UV Color Change @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA UV Color Change @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA UV Color Change @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Wood @BBL A1.json (96%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Wood @BBL A1M.json (97%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Wood @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Wood @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Wood @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Youth @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Youth @BBL A1M.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Youth @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Youth @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA Youth @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA-CF @BBL A1.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA-CF @BBL A1M.json (95%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA-CF @BBL H2D 0.4 nozzle.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA-CF @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA PLA-CF @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU 90A @BBL A1.json (93%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU 90A @BBL A1M.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU 90A @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU 90A @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU 90A @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU 95A @BBL A1.json (93%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU 95A @BBL A1M.json (93%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU 95A @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU 95A @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU 95A @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU 98A @BBL A1.json (93%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU 98A @BBL A1M.json (93%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU 98A @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU 98A @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU 98A @BBL X1C.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU Matte @BBL A1.json (93%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU Matte @BBL A1M.json (94%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU Matte @BBL H2D.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU Matte @BBL P1P.json (98%) rename resources/profiles/{BBL/filament/BETA => OrcaFilamentLibrary/filament/BETA/BBL}/BETA TPU Matte @BBL X1C.json (98%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA ABS @base.json rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA ASA @base.json (52%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA HIPS @base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PAHT-CF @base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PEBA 90A @base.json rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PETG @base.json (72%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PETG Fluorescence @base.json (72%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PETG Glitter @base.json (72%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PETG Glow @base.json (72%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PETG Gradient @base.json (72%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PETG HF @base.json (69%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PETG Heat Color Change @base.json (72%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PETG Marble @base.json (72%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PETG Matte @base.json (72%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PETG Metallic @base.json (72%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PETG Transparent @base.json (70%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PETG UV Color Change @base.json (72%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PETG-CF @base.json (68%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PETG-GF @base.json (68%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA Basic @base.json (61%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA Chameleon @base.json (54%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA Fluorescence @base.json (54%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA Glitter @base.json (54%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA Glow @base.json (56%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA Gradient @base.json (54%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA Heat Color Change @base.json (54%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA High Speed @base.json rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA High Temp @base.json (62%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA Marble @base.json (54%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA Matte @base.json (58%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA Metal @base.json (59%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA Metallic @base.json (59%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA PRO @base.json (61%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA Silk @base.json (63%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA Silk+ @base.json (62%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA Transparent @base.json (54%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA UV Color Change @base.json (57%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA Wood @base.json (59%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA Youth @base.json (58%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/BETA/BETA PLA-CF @base.json (63%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA TPU 90A @base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA TPU 95A @base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA TPU 98A @base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA TPU Matte @base.json rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX ABS @BBL X1 0.2 nozzle.json (90%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX ABS @BBL X1.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX ABS @BBL X1C 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX ABS @BBL X1C.json (94%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX ABS PRIME @BBL X1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX ABS PRIME @BBL X1.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX ABS PRIME @BBL X1C 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX ABS PRIME @BBL X1C.json (94%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX ASA PRIME @BBL X1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX ASA PRIME @BBL X1.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX ASA PRIME @BBL X1C 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX ASA PRIME @BBL X1C.json (94%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX NYLEX PA6-CF @BBL X1C.json (93%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX NYLEX UNFILLED @BBL X1C.json (95%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PCTG PRIME @BBL A1 0.2 nozzle.json (89%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PCTG PRIME @BBL A1 0.8 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PCTG PRIME @BBL A1.json (89%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PCTG PRIME @BBL A1M 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PCTG PRIME @BBL A1M 0.8 nozzle.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PCTG PRIME @BBL A1M.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PCTG PRIME @BBL X1C 0.2 nozzle.json (93%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PCTG PRIME @BBL X1C 0.8 nozzle.json (95%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PCTG PRIME @BBL X1C.json (93%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PETG @BBL A1 0.2 nozzle.json (89%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PETG @BBL A1 0.8 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PETG @BBL A1.json (88%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PETG @BBL A1M 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PETG @BBL A1M 0.8 nozzle.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PETG @BBL A1M.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PETG @BBL X1C 0.2 nozzle.json (93%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PETG @BBL X1C 0.8 nozzle.json (95%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PETG @BBL X1C.json (93%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA @BBL A1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA @BBL A1.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA @BBL A1M 0.2 nozzle.json (87%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA @BBL A1M.json (94%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA @BBL P1P 0.2 nozzle.json (87%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA @BBL P1P.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA @BBL X1.json (88%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA @BBL X1C 0.2 nozzle.json (90%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA @BBL X1C.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA PRIME @BBL A1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA PRIME @BBL A1.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA PRIME @BBL A1M 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA PRIME @BBL A1M.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA PRIME @BBL P1P 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA PRIME @BBL P1P.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA PRIME @BBL X1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA PRIME @BBL X1.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA PRIME @BBL X1C 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA PRIME @BBL X1C.json (94%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA+Silk @BBL A1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA+Silk @BBL A1.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA+Silk @BBL A1M 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA+Silk @BBL A1M.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA+Silk @BBL P1P 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA+Silk @BBL P1P.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA+Silk @BBL X1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA+Silk @BBL X1.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA+Silk @BBL X1C 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX PLA+Silk @BBL X1C.json (94%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 30D @BBL A1.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 30D @BBL A1M.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 30D @BBL P1P.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 30D @BBL X1.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 30D @BBL X1C.json (94%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 40D @BBL A1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 40D @BBL A1.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 40D @BBL A1M 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 40D @BBL A1M.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 40D @BBL P1P 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 40D @BBL P1P.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 40D @BBL X1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 40D @BBL X1.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 40D @BBL X1C 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 40D @BBL X1C.json (94%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 60D @BBL A1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 60D @BBL A1.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 60D @BBL A1M 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 60D @BBL A1M.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 60D @BBL P1P 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 60D @BBL P1P.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 60D @BBL X1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 60D @BBL X1.json (91%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 60D @BBL X1C 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPE 60D @BBL X1C.json (94%) rename resources/profiles/{BBL/filament/COEX => OrcaFilamentLibrary/filament/COEX/BBL}/COEX TPU 60A @BBL X1C.json (94%) rename resources/profiles/{BBL/filament/FusRock => OrcaFilamentLibrary/filament/FusRock/BBL}/FusRock ABS-GF @BBL A1.json (93%) rename resources/profiles/{BBL/filament/FusRock => OrcaFilamentLibrary/filament/FusRock/BBL}/FusRock ABS-GF @BBL H2D.json (95%) rename resources/profiles/{BBL/filament/FusRock => OrcaFilamentLibrary/filament/FusRock/BBL}/FusRock ABS-GF @BBL P1P.json (81%) rename resources/profiles/{BBL/filament/FusRock => OrcaFilamentLibrary/filament/FusRock/BBL}/FusRock ABS-GF @BBL X1C.json (89%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/FusRock/BBL/FusRock ABS-GF @BBL base.json rename resources/profiles/{BBL/filament/Numakers => OrcaFilamentLibrary/filament/Numakers/BBL}/Numakers PLA+ @BBL A1 0.2 nozzle.json (88%) rename resources/profiles/{BBL/filament/Numakers => OrcaFilamentLibrary/filament/Numakers/BBL}/Numakers PLA+ @BBL A1.json (88%) rename resources/profiles/{BBL/filament/Numakers => OrcaFilamentLibrary/filament/Numakers/BBL}/Numakers PLA+ @BBL A1M 0.2 nozzle.json (89%) rename resources/profiles/{BBL/filament/Numakers => OrcaFilamentLibrary/filament/Numakers/BBL}/Numakers PLA+ @BBL A1M.json (88%) rename resources/profiles/{BBL/filament/Numakers => OrcaFilamentLibrary/filament/Numakers/BBL}/Numakers PLA+ @BBL P1P 0.2 nozzle.json (95%) rename resources/profiles/{BBL/filament/Numakers => OrcaFilamentLibrary/filament/Numakers/BBL}/Numakers PLA+ @BBL P1P.json (95%) rename resources/profiles/{BBL/filament/Numakers => OrcaFilamentLibrary/filament/Numakers/BBL}/Numakers PLA+ @BBL X1.json (95%) rename resources/profiles/{BBL/filament/Numakers => OrcaFilamentLibrary/filament/Numakers/BBL}/Numakers PLA+ @BBL X1C 0.2 nozzle.json (96%) rename resources/profiles/{BBL/filament/Numakers => OrcaFilamentLibrary/filament/Numakers/BBL}/Numakers PLA+ @BBL X1C.json (96%) rename resources/profiles/{BBL/filament/Numakers/Numakers PLA+ @base.json => OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL base.json} (51%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture ASA @BBL X1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture ASA @BBL X1.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture ASA @BBL X1C 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture ASA @BBL X1C.json (94%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Air PLA @BBL A1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Air PLA @BBL A1.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Air PLA @BBL A1M 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Air PLA @BBL A1M.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Air PLA @BBL P1P 0.2 nozzle.json (90%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Air PLA @BBL P1P.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Air PLA @BBL X1 0.2 nozzle.json (90%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Air PLA @BBL X1.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Air PLA @BBL X1C 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Air PLA @BBL X1C.json (94%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Easy PLA @BBL A1 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Easy PLA @BBL A1.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Easy PLA @BBL A1M 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Easy PLA @BBL A1M.json (93%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Easy PLA @BBL P1P 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Easy PLA @BBL P1P.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Easy PLA @BBL X1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Easy PLA @BBL X1.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Easy PLA @BBL X1C 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Easy PLA @BBL X1C.json (94%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture PLA Pro @BBL A1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture PLA Pro @BBL A1.json (83%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture PLA Pro @BBL A1M 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture PLA Pro @BBL A1M.json (84%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture PLA Pro @BBL P1P 0.2 nozzle.json (80%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture PLA Pro @BBL P1P.json (82%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture PLA Pro @BBL X1 0.2 nozzle.json (80%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture PLA Pro @BBL X1.json (82%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture PLA Pro @BBL X1C 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture PLA Pro @BBL X1C.json (88%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL base.json rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Rock PLA @BBL A1 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Rock PLA @BBL A1.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Rock PLA @BBL A1M 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Rock PLA @BBL A1M.json (93%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Rock PLA @BBL P1P 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Rock PLA @BBL P1P.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Rock PLA @BBL X1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Rock PLA @BBL X1.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Rock PLA @BBL X1C 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Rock PLA @BBL X1C.json (94%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Silk PLA @BBL A1 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Silk PLA @BBL A1.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Silk PLA @BBL A1M 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Silk PLA @BBL A1M.json (93%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Silk PLA @BBL P1P 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Silk PLA @BBL P1P.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Silk PLA @BBL X1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Silk PLA @BBL X1.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Silk PLA @BBL X1C 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Silk PLA @BBL X1C.json (94%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Super PLA+ @BBL A1 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Super PLA+ @BBL A1.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Super PLA+ @BBL A1M 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Super PLA+ @BBL A1M.json (93%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Super PLA+ @BBL P1P 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Super PLA+ @BBL P1P.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Super PLA+ @BBL X1 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Super PLA+ @BBL X1.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Super PLA+ @BBL X1C 0.2 nozzle.json (93%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture Super PLA+ @BBL X1C.json (94%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture TPU @BBL A1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture TPU @BBL A1.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture TPU @BBL A1M 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture TPU @BBL A1M.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture TPU @BBL P1P 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture TPU @BBL P1P.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture TPU @BBL X1 0.2 nozzle.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture TPU @BBL X1.json (91%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture TPU @BBL X1C 0.2 nozzle.json (92%) rename resources/profiles/{BBL/filament/Overture => OrcaFilamentLibrary/filament/Overture/BBL}/Overture TPU @BBL X1C.json (94%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Fiberon PA12-CF10 @BBL X1.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Fiberon PA6-CF20 @BBL X1.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Fiberon PA6-GF25 @BBL X1.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Fiberon PA612-CF15 @BBL X1.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Fiberon PET-CF17 @BBL X1.json (96%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Fiberon PETG-ESD @BBL X1.json (85%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PETG-ESD @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Fiberon PETG-rCF08 @BBL X1.json (98%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma CoPE @BBL A1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma CoPE @BBL A1.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma CoPE @BBL A1M 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma CoPE @BBL A1M.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma CoPE @BBL P1P 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma CoPE @BBL P1P.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma CoPE @BBL X1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma CoPE @BBL X1.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma CoPE @BBL X1C 0.2 nozzle.json (84%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma CoPE @BBL X1C.json (88%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA @BBL A1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA @BBL A1.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA @BBL A1M 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA @BBL A1M.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA @BBL P1P 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA @BBL P1P.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA @BBL X1 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA @BBL X1.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA @BBL X1C 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA @BBL X1C.json (88%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Celestial @BBL A1 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Celestial @BBL A1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Celestial @BBL A1M 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Celestial @BBL A1M.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Celestial @BBL P1P 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Celestial @BBL P1P.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Celestial @BBL X1 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Celestial @BBL X1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Celestial @BBL X1C 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Celestial @BBL X1C.json (87%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Galaxy @BBL A1 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Galaxy @BBL A1.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Galaxy @BBL A1M 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Galaxy @BBL A1M.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Galaxy @BBL P1P 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Galaxy @BBL P1P.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Galaxy @BBL X1 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Galaxy @BBL X1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Galaxy @BBL X1C 0.2 nozzle.json (84%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Galaxy @BBL X1C.json (88%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Glow @BBL A1 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Glow @BBL A1.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Glow @BBL A1M 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Glow @BBL A1M.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Glow @BBL P1P 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Glow @BBL P1P.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Glow @BBL X1 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Glow @BBL X1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Glow @BBL X1C 0.2 nozzle.json (85%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Glow @BBL X1C.json (89%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Luminous @BBL A1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Luminous @BBL A1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Luminous @BBL A1M 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Luminous @BBL A1M.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Luminous @BBL P1P 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Luminous @BBL P1P.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Luminous @BBL X1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Luminous @BBL X1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Luminous @BBL X1C 0.2 nozzle.json (85%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Luminous @BBL X1C.json (88%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Marble @BBL A1 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Marble @BBL A1.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Marble @BBL A1M 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Marble @BBL A1M.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Marble @BBL P1P 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Marble @BBL P1P.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Marble @BBL X1 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Marble @BBL X1.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Marble @BBL X1C 0.2 nozzle.json (84%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Marble @BBL X1C.json (88%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Matte @BBL A1 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Matte @BBL A1.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Matte @BBL A1M 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Matte @BBL A1M.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Matte @BBL P1P 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Matte @BBL P1P.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Matte @BBL X1 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Matte @BBL X1.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Matte @BBL X1C 0.2 nozzle.json (84%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Matte @BBL X1C.json (88%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Metallic @BBL A1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Metallic @BBL A1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Metallic @BBL A1M 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Metallic @BBL A1M.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Metallic @BBL P1P 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Metallic @BBL P1P.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Metallic @BBL X1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Metallic @BBL X1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Metallic @BBL X1C 0.2 nozzle.json (85%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Metallic @BBL X1C.json (88%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Neon @BBL A1 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Neon @BBL A1.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Neon @BBL A1M 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Neon @BBL A1M.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Neon @BBL P1P 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Neon @BBL P1P.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Neon @BBL X1 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Neon @BBL X1.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Neon @BBL X1C 0.2 nozzle.json (85%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Neon @BBL X1C.json (89%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Satin @BBL A1 0.2 nozzle.json (85%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Satin @BBL A1.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Satin @BBL A1M 0.2 nozzle.json (85%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Satin @BBL A1M.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Satin @BBL P1P 0.2 nozzle.json (85%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Satin @BBL P1P.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Satin @BBL X1 0.2 nozzle.json (85%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Satin @BBL X1.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Satin @BBL X1C 0.2 nozzle.json (86%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Satin @BBL X1C.json (89%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Silk @BBL A1 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Silk @BBL A1.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Silk @BBL A1M 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Silk @BBL A1M.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Silk @BBL P1P 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Silk @BBL P1P.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Silk @BBL X1 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Silk @BBL X1.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json (85%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Silk @BBL X1C.json (89%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Starlight @BBL A1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Starlight @BBL A1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Starlight @BBL A1M 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Starlight @BBL A1M.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Starlight @BBL P1P 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Starlight @BBL P1P.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Starlight @BBL X1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Starlight @BBL X1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Starlight @BBL X1C 0.2 nozzle.json (84%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Starlight @BBL X1C.json (88%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Temp Shift @BBL A1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Temp Shift @BBL A1.json (84%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Temp Shift @BBL A1M 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Temp Shift @BBL A1M.json (84%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Temp Shift @BBL P1P 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Temp Shift @BBL P1P.json (84%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Temp Shift @BBL X1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Temp Shift @BBL X1.json (84%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Temp Shift @BBL X1C 0.2 nozzle.json (84%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Temp Shift @BBL X1C.json (88%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Translucent @BBL A1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Translucent @BBL A1.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Translucent @BBL A1M 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Translucent @BBL A1M.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Translucent @BBL P1P 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Translucent @BBL P1P.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Translucent @BBL X1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Translucent @BBL X1.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Translucent @BBL X1C 0.2 nozzle.json (84%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA Translucent @BBL X1C.json (88%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA UV Shift @BBL A1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA UV Shift @BBL A1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA UV Shift @BBL A1M 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA UV Shift @BBL A1M.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA UV Shift @BBL P1P 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA UV Shift @BBL P1P.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA UV Shift @BBL X1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA UV Shift @BBL X1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA UV Shift @BBL X1C 0.2 nozzle.json (85%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Panchroma PLA UV Shift @BBL X1C.json (88%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite CosPLA @BBL A1.json (88%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite CosPLA @BBL A1M.json (88%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite CosPLA @BBL P1P.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite CosPLA @BBL X1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Galaxy @BBL A1.json (88%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Galaxy @BBL A1M.json (88%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Galaxy @BBL P1P.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Galaxy @BBL X1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Glow @BBL A1.json (88%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Glow @BBL A1M.json (88%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Glow @BBL P1P.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Glow @BBL X1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Luminous @BBL A1.json (88%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Luminous @BBL A1M.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Luminous @BBL P1P.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Luminous @BBL X1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Neon @BBL A1.json (88%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Neon @BBL A1M.json (88%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Neon @BBL P1P.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Neon @BBL X1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Pro @BBL A1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Pro @BBL A1.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Pro @BBL A1M 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Pro @BBL A1M.json (84%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Pro @BBL P1P 0.2 nozzle.json (80%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Pro @BBL P1P.json (84%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Pro @BBL X1 0.2 nozzle.json (80%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Pro @BBL X1.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Pro @BBL X1C 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Pro @BBL X1C.json (88%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Starlight @BBL A1.json (88%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Starlight @BBL A1M.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Starlight @BBL P1P.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Starlight @BBL X1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Translucent @BBL A1.json (88%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Translucent @BBL A1M.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Translucent @BBL P1P.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyLite PLA Translucent @BBL X1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyTerra PLA Marble @BBL A1.json (88%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyTerra PLA Marble @BBL A1M.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyTerra PLA Marble @BBL P1P.json (90%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyTerra PLA Marble @BBL X1.json (91%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyTerra PLA+ @BBL A1.json (88%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyTerra PLA+ @BBL A1M.json (88%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyTerra PLA+ @BBL P1P.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/PolyTerra PLA+ @BBL X1.json (89%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA @BBL A1 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA @BBL A1.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA @BBL A1M 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA @BBL A1M.json (84%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA @BBL P1P 0.2 nozzle.json (80%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA @BBL P1P.json (84%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA @BBL X1 0.2 nozzle.json (80%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA @BBL X1.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA @BBL X1C 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA @BBL X1C.json (88%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL base.json rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA-GF @BBL A1 0.2 nozzle.json (81%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA-GF @BBL A1.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA-GF @BBL A1M 0.2 nozzle.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA-GF @BBL A1M.json (84%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA-GF @BBL P1P 0.2 nozzle.json (80%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA-GF @BBL P1P.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA-GF @BBL X1 0.2 nozzle.json (80%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA-GF @BBL X1.json (82%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA-GF @BBL X1C 0.2 nozzle.json (83%) rename resources/profiles/{BBL/filament/Polymaker => OrcaFilamentLibrary/filament/Polymaker/BBL}/Polymaker HT-PLA-GF @BBL X1C.json (87%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL base.json rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/Polymaker/Fiberon PA12-CF10 @base.json (54%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/Polymaker/Fiberon PA6-CF20 @base.json (54%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/Polymaker/Fiberon PA6-GF25 @base.json (54%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA612-CF15 @base.json rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/Polymaker/Fiberon PET-CF17 @base.json (50%) rename resources/profiles/{BBL => OrcaFilamentLibrary}/filament/Polymaker/Fiberon PETG-rCF08 @base.json (54%) create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite CosPLA @base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Galaxy @base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Glow @base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Luminous @base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Neon @base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Starlight @base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Translucent @base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA Marble @base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA+ @base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic ABS @BBL base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PA @BBL base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PA-CF @BBL base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PC @BBL base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PETG @BBL base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PETG-CF @BBL base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PLA @BBL base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PLA High Speed @BBL base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PLA Silk @BBL base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PLA-CF @BBL base.json create mode 100644 resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic TPU @BBL base.json rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth ABS rABS.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PA Adura FDA.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PA Adura.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PA-CF Adura X.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PA6 Addlantis.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PC BLend HT LCF.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PETG Base.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PETG ESD.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PETG Economy.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PETG Flame v0.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PETG PRO Matte.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PETG rPETG Matte.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PETG-CF Rigid X.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PLA E-PLA.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PLA Economy.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PLA HT-PLA PRO Matte.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PLA Premium Silk.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PLA Textura.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PLA Wood.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PLA X-PLA High Speed.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PLA X-PLA.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PLA rPLA RE-ADD.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PLA-CF Carbon Fiber.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth PVDF Adamant S1.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth TPU EasyFlex.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth TPU Pro Matte 85A.json (98%) rename resources/profiles/{BBL/filament/addnorth => OrcaFilamentLibrary/filament/addnorth/BBL}/addnorth TPU Pro Matte 95A.json (98%) diff --git a/resources/profiles/BBL.json b/resources/profiles/BBL.json index 1f3eaff22f..fd52cf63a4 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.29", + "version": "02.01.00.30", "force_update": "0", "description": "BBL configurations", "machine_model_list": [ @@ -1169,86 +1169,10 @@ } ], "filament_list": [ - { - "name": "COEX PCTG PRIME @BBL X1C", - "sub_path": "filament/COEX/COEX PCTG PRIME @BBL X1C.json" - }, - { - "name": "COEX PCTG PRIME @BBL X1C 0.2 nozzle", - "sub_path": "filament/COEX/COEX PCTG PRIME @BBL X1C 0.2 nozzle.json" - }, - { - "name": "COEX PCTG PRIME @BBL X1C 0.8 nozzle", - "sub_path": "filament/COEX/COEX PCTG PRIME @BBL X1C 0.8 nozzle.json" - }, - { - "name": "COEX PETG @BBL X1C", - "sub_path": "filament/COEX/COEX PETG @BBL X1C.json" - }, - { - "name": "COEX PETG @BBL X1C 0.2 nozzle", - "sub_path": "filament/COEX/COEX PETG @BBL X1C 0.2 nozzle.json" - }, - { - "name": "COEX PETG @BBL X1C 0.8 nozzle", - "sub_path": "filament/COEX/COEX PETG @BBL X1C 0.8 nozzle.json" - }, - { - "name": "COEX PLA @BBL A1M", - "sub_path": "filament/COEX/COEX PLA @BBL A1M.json" - }, - { - "name": "COEX PLA @BBL P1P", - "sub_path": "filament/COEX/COEX PLA @BBL P1P.json" - }, - { - "name": "COEX PLA @BBL X1C", - "sub_path": "filament/COEX/COEX PLA @BBL X1C.json" - }, { "name": "fdm_filament_common", "sub_path": "filament/fdm_filament_common.json" }, - { - "name": "COEX PCTG PRIME @BBL A1M 0.4 nozzle", - "sub_path": "filament/COEX/COEX PCTG PRIME @BBL A1M.json" - }, - { - "name": "COEX PCTG PRIME @BBL A1M 0.2 nozzle", - "sub_path": "filament/COEX/COEX PCTG PRIME @BBL A1M 0.2 nozzle.json" - }, - { - "name": "COEX PCTG PRIME @BBL A1M 0.8 nozzle", - "sub_path": "filament/COEX/COEX PCTG PRIME @BBL A1M 0.8 nozzle.json" - }, - { - "name": "COEX PETG @BBL A1M 0.4 nozzle", - "sub_path": "filament/COEX/COEX PETG @BBL A1M.json" - }, - { - "name": "COEX PETG @BBL A1M 0.2 nozzle", - "sub_path": "filament/COEX/COEX PETG @BBL A1M 0.2 nozzle.json" - }, - { - "name": "COEX PETG @BBL A1M 0.8 nozzle", - "sub_path": "filament/COEX/COEX PETG @BBL A1M 0.8 nozzle.json" - }, - { - "name": "COEX PLA @BBL A1M 0.2 nozzle", - "sub_path": "filament/COEX/COEX PLA @BBL A1M 0.2 nozzle.json" - }, - { - "name": "COEX PLA @BBL P1P 0.2 nozzle", - "sub_path": "filament/COEX/COEX PLA @BBL P1P 0.2 nozzle.json" - }, - { - "name": "COEX PLA @BBL X1C 0.2 nozzle", - "sub_path": "filament/COEX/COEX PLA @BBL X1C 0.2 nozzle.json" - }, - { - "name": "FusRock ABS-GF @base", - "sub_path": "filament/FusRock/FusRock ABS-GF @base.json" - }, { "name": "fdm_filament_abs", "sub_path": "filament/fdm_filament_abs.json" @@ -1321,26 +1245,6 @@ "name": "fdm_filament_tpu", "sub_path": "filament/fdm_filament_tpu.json" }, - { - "name": "FusRock ABS-GF @BBL A1", - "sub_path": "filament/FusRock/FusRock ABS-GF @BBL A1.json" - }, - { - "name": "FusRock ABS-GF @BBL H2D", - "sub_path": "filament/FusRock/FusRock ABS-GF @BBL H2D.json" - }, - { - "name": "FusRock ABS-GF @BBL P1P", - "sub_path": "filament/FusRock/FusRock ABS-GF @BBL P1P.json" - }, - { - "name": "FusRock ABS-GF @BBL X1C", - "sub_path": "filament/FusRock/FusRock ABS-GF @BBL X1C.json" - }, - { - "name": "BETA ABS @base", - "sub_path": "filament/BETA/BETA ABS @base.json" - }, { "name": "Bambu ABS @base", "sub_path": "filament/Bambu ABS @base.json" @@ -1361,10 +1265,6 @@ "name": "PolyLite ABS @base", "sub_path": "filament/Polymaker/PolyLite ABS @base.json" }, - { - "name": "BETA ASA @base", - "sub_path": "filament/BETA/BETA ASA @base.json" - }, { "name": "Bambu ASA @base", "sub_path": "filament/Bambu ASA @base.json" @@ -1393,18 +1293,10 @@ "name": "Generic EVA @base", "sub_path": "filament/Generic EVA @base.json" }, - { - "name": "BETA HIPS @base", - "sub_path": "filament/BETA/BETA HIPS @base.json" - }, { "name": "Generic HIPS @base", "sub_path": "filament/Generic HIPS @base.json" }, - { - "name": "BETA PAHT-CF @base", - "sub_path": "filament/BETA/BETA PAHT-CF @base.json" - }, { "name": "Bambu PA-CF @base", "sub_path": "filament/Bambu PA-CF @base.json" @@ -1433,34 +1325,18 @@ "name": "Fiberon PA12-CF @base", "sub_path": "filament/Polymaker/Fiberon PA12-CF @base.json" }, - { - "name": "Fiberon PA12-CF10 @base", - "sub_path": "filament/Polymaker/Fiberon PA12-CF10 @base.json" - }, { "name": "Fiberon PA6-CF @base", "sub_path": "filament/Polymaker/Fiberon PA6-CF @base.json" }, - { - "name": "Fiberon PA6-CF20 @base", - "sub_path": "filament/Polymaker/Fiberon PA6-CF20 @base.json" - }, { "name": "Fiberon PA6-GF @base", "sub_path": "filament/Polymaker/Fiberon PA6-GF @base.json" }, - { - "name": "Fiberon PA6-GF25 @base", - "sub_path": "filament/Polymaker/Fiberon PA6-GF25 @base.json" - }, { "name": "Fiberon PA612-CF @base", "sub_path": "filament/Polymaker/Fiberon PA612-CF @base.json" }, - { - "name": "Fiberon PA612-CF15 @base", - "sub_path": "filament/Polymaker/Fiberon PA612-CF15 @base.json" - }, { "name": "Generic PA @base", "sub_path": "filament/Generic PA @base.json" @@ -1493,62 +1369,6 @@ "name": "Generic PE-CF @base", "sub_path": "filament/Generic PE-CF @base.json" }, - { - "name": "BETA PETG @base", - "sub_path": "filament/BETA/BETA PETG @base.json" - }, - { - "name": "BETA PETG Fluorescence @base", - "sub_path": "filament/BETA/BETA PETG Fluorescence @base.json" - }, - { - "name": "BETA PETG Glitter @base", - "sub_path": "filament/BETA/BETA PETG Glitter @base.json" - }, - { - "name": "BETA PETG Glow @base", - "sub_path": "filament/BETA/BETA PETG Glow @base.json" - }, - { - "name": "BETA PETG Gradient @base", - "sub_path": "filament/BETA/BETA PETG Gradient @base.json" - }, - { - "name": "BETA PETG HF @base", - "sub_path": "filament/BETA/BETA PETG HF @base.json" - }, - { - "name": "BETA PETG Heat Color Change @base", - "sub_path": "filament/BETA/BETA PETG Heat Color Change @base.json" - }, - { - "name": "BETA PETG Marble @base", - "sub_path": "filament/BETA/BETA PETG Marble @base.json" - }, - { - "name": "BETA PETG Matte @base", - "sub_path": "filament/BETA/BETA PETG Matte @base.json" - }, - { - "name": "BETA PETG Metallic @base", - "sub_path": "filament/BETA/BETA PETG Metallic @base.json" - }, - { - "name": "BETA PETG Transparent @base", - "sub_path": "filament/BETA/BETA PETG Transparent @base.json" - }, - { - "name": "BETA PETG UV Color Change @base", - "sub_path": "filament/BETA/BETA PETG UV Color Change @base.json" - }, - { - "name": "BETA PETG-CF @base", - "sub_path": "filament/BETA/BETA PETG-CF @base.json" - }, - { - "name": "BETA PETG-GF @base", - "sub_path": "filament/BETA/BETA PETG-GF @base.json" - }, { "name": "Bambu PET-CF @base", "sub_path": "filament/Bambu PET-CF @base.json" @@ -1573,10 +1393,6 @@ "name": "Fiberon PET-CF @base", "sub_path": "filament/Polymaker/Fiberon PET-CF @base.json" }, - { - "name": "Fiberon PET-CF17 @base", - "sub_path": "filament/Polymaker/Fiberon PET-CF17 @base.json" - }, { "name": "Fiberon PETG-ESD @base", "sub_path": "filament/Polymaker/Fiberon PETG-ESD @base.json" @@ -1585,10 +1401,6 @@ "name": "Fiberon PETG-rCF @base", "sub_path": "filament/Polymaker/Fiberon PETG-rCF @base.json" }, - { - "name": "Fiberon PETG-rCF08 @base", - "sub_path": "filament/Polymaker/Fiberon PETG-rCF08 @base.json" - }, { "name": "Generic PETG @base", "sub_path": "filament/Generic PETG @base.json" @@ -1613,90 +1425,6 @@ "name": "Generic PHA @base", "sub_path": "filament/Generic PHA @base.json" }, - { - "name": "BETA PLA Basic @base", - "sub_path": "filament/BETA/BETA PLA Basic @base.json" - }, - { - "name": "BETA PLA Chameleon @base", - "sub_path": "filament/BETA/BETA PLA Chameleon @base.json" - }, - { - "name": "BETA PLA Fluorescence @base", - "sub_path": "filament/BETA/BETA PLA Fluorescence @base.json" - }, - { - "name": "BETA PLA Glitter @base", - "sub_path": "filament/BETA/BETA PLA Glitter @base.json" - }, - { - "name": "BETA PLA Glow @base", - "sub_path": "filament/BETA/BETA PLA Glow @base.json" - }, - { - "name": "BETA PLA Gradient @base", - "sub_path": "filament/BETA/BETA PLA Gradient @base.json" - }, - { - "name": "BETA PLA Heat Color Change @base", - "sub_path": "filament/BETA/BETA PLA Heat Color Change @base.json" - }, - { - "name": "BETA PLA High Speed @base", - "sub_path": "filament/BETA/BETA PLA High Speed @base.json" - }, - { - "name": "BETA PLA High Temp @base", - "sub_path": "filament/BETA/BETA PLA High Temp @base.json" - }, - { - "name": "BETA PLA Marble @base", - "sub_path": "filament/BETA/BETA PLA Marble @base.json" - }, - { - "name": "BETA PLA Matte @base", - "sub_path": "filament/BETA/BETA PLA Matte @base.json" - }, - { - "name": "BETA PLA Metal @base", - "sub_path": "filament/BETA/BETA PLA Metal @base.json" - }, - { - "name": "BETA PLA Metallic @base", - "sub_path": "filament/BETA/BETA PLA Metallic @base.json" - }, - { - "name": "BETA PLA PRO @base", - "sub_path": "filament/BETA/BETA PLA PRO @base.json" - }, - { - "name": "BETA PLA Silk @base", - "sub_path": "filament/BETA/BETA PLA Silk @base.json" - }, - { - "name": "BETA PLA Silk+ @base", - "sub_path": "filament/BETA/BETA PLA Silk+ @base.json" - }, - { - "name": "BETA PLA Transparent @base", - "sub_path": "filament/BETA/BETA PLA Transparent @base.json" - }, - { - "name": "BETA PLA UV Color Change @base", - "sub_path": "filament/BETA/BETA PLA UV Color Change @base.json" - }, - { - "name": "BETA PLA Wood @base", - "sub_path": "filament/BETA/BETA PLA Wood @base.json" - }, - { - "name": "BETA PLA Youth @base", - "sub_path": "filament/BETA/BETA PLA Youth @base.json" - }, - { - "name": "BETA PLA-CF @base", - "sub_path": "filament/BETA/BETA PLA-CF @base.json" - }, { "name": "Bambu PLA Aero @base", "sub_path": "filament/Bambu PLA Aero @base.json" @@ -1797,10 +1525,6 @@ "name": "Generic PLA-CF @base", "sub_path": "filament/Generic PLA-CF @base.json" }, - { - "name": "Numakers PLA+ @base", - "sub_path": "filament/Numakers/Numakers PLA+ @base.json" - }, { "name": "Overture Matte PLA @base", "sub_path": "filament/Overture/Overture Matte PLA @base.json" @@ -1809,130 +1533,14 @@ "name": "Overture PLA @base", "sub_path": "filament/Overture/Overture PLA @base.json" }, - { - "name": "Overture PLA Pro @base", - "sub_path": "filament/Overture/Overture PLA Pro @base.json" - }, - { - "name": "Panchroma CoPE @base", - "sub_path": "filament/Polymaker/Panchroma CoPE @base.json" - }, - { - "name": "Panchroma PLA @base", - "sub_path": "filament/Polymaker/Panchroma PLA @base.json" - }, - { - "name": "Panchroma PLA Celestial @base", - "sub_path": "filament/Polymaker/Panchroma PLA Celestial @base.json" - }, - { - "name": "Panchroma PLA Galaxy @base", - "sub_path": "filament/Polymaker/Panchroma PLA Galaxy @base.json" - }, - { - "name": "Panchroma PLA Glow @base", - "sub_path": "filament/Polymaker/Panchroma PLA Glow @base.json" - }, - { - "name": "Panchroma PLA Luminous @base", - "sub_path": "filament/Polymaker/Panchroma PLA Luminous @base.json" - }, - { - "name": "Panchroma PLA Marble @base", - "sub_path": "filament/Polymaker/Panchroma PLA Marble @base.json" - }, - { - "name": "Panchroma PLA Matte @base", - "sub_path": "filament/Polymaker/Panchroma PLA Matte @base.json" - }, - { - "name": "Panchroma PLA Metallic @base", - "sub_path": "filament/Polymaker/Panchroma PLA Metallic @base.json" - }, - { - "name": "Panchroma PLA Neon @base", - "sub_path": "filament/Polymaker/Panchroma PLA Neon @base.json" - }, - { - "name": "Panchroma PLA Satin @base", - "sub_path": "filament/Polymaker/Panchroma PLA Satin @base.json" - }, - { - "name": "Panchroma PLA Silk @base", - "sub_path": "filament/Polymaker/Panchroma PLA Silk @base.json" - }, - { - "name": "Panchroma PLA Starlight @base", - "sub_path": "filament/Polymaker/Panchroma PLA Starlight @base.json" - }, - { - "name": "Panchroma PLA Temp Shift @base", - "sub_path": "filament/Polymaker/Panchroma PLA Temp Shift @base.json" - }, - { - "name": "Panchroma PLA Translucent @base", - "sub_path": "filament/Polymaker/Panchroma PLA Translucent @base.json" - }, - { - "name": "Panchroma PLA UV Shift @base", - "sub_path": "filament/Polymaker/Panchroma PLA UV Shift @base.json" - }, - { - "name": "PolyLite CosPLA @base", - "sub_path": "filament/Polymaker/PolyLite CosPLA @base.json" - }, { "name": "PolyLite PLA @base", "sub_path": "filament/Polymaker/PolyLite PLA @base.json" }, - { - "name": "PolyLite PLA Galaxy @base", - "sub_path": "filament/Polymaker/PolyLite PLA Galaxy @base.json" - }, - { - "name": "PolyLite PLA Glow @base", - "sub_path": "filament/Polymaker/PolyLite PLA Glow @base.json" - }, - { - "name": "PolyLite PLA Luminous @base", - "sub_path": "filament/Polymaker/PolyLite PLA Luminous @base.json" - }, - { - "name": "PolyLite PLA Neon @base", - "sub_path": "filament/Polymaker/PolyLite PLA Neon @base.json" - }, - { - "name": "PolyLite PLA Pro @base", - "sub_path": "filament/Polymaker/PolyLite PLA Pro @base.json" - }, - { - "name": "PolyLite PLA Starlight @base", - "sub_path": "filament/Polymaker/PolyLite PLA Starlight @base.json" - }, - { - "name": "PolyLite PLA Translucent @base", - "sub_path": "filament/Polymaker/PolyLite PLA Translucent @base.json" - }, { "name": "PolyTerra PLA @base", "sub_path": "filament/Polymaker/PolyTerra PLA @base.json" }, - { - "name": "PolyTerra PLA Marble @base", - "sub_path": "filament/Polymaker/PolyTerra PLA Marble @base.json" - }, - { - "name": "PolyTerra PLA+ @base", - "sub_path": "filament/Polymaker/PolyTerra PLA+ @base.json" - }, - { - "name": "Polymaker HT-PLA @base", - "sub_path": "filament/Polymaker/Polymaker HT-PLA @base.json" - }, - { - "name": "Polymaker HT-PLA-GF @base", - "sub_path": "filament/Polymaker/Polymaker HT-PLA-GF @base.json" - }, { "name": "SUNLU PLA Marble @base", "sub_path": "filament/SUNLU/SUNLU Marble PLA @base.json" @@ -2009,26 +1617,6 @@ "name": "Generic SBS @base", "sub_path": "filament/Generic SBS @base.json" }, - { - "name": "BETA PEBA 90A @base", - "sub_path": "filament/BETA/BETA PEBA 90A @base.json" - }, - { - "name": "BETA TPU 90A @base", - "sub_path": "filament/BETA/BETA TPU 90A @base.json" - }, - { - "name": "BETA TPU 95A @base", - "sub_path": "filament/BETA/BETA TPU 95A @base.json" - }, - { - "name": "BETA TPU 98A @base", - "sub_path": "filament/BETA/BETA TPU 98A @base.json" - }, - { - "name": "BETA TPU Matte @base", - "sub_path": "filament/BETA/BETA TPU Matte @base.json" - }, { "name": "Bambu TPU 85A @base", "sub_path": "filament/Bambu TPU 85A @base.json" @@ -2057,22 +1645,6 @@ "name": "Generic TPU for AMS @base", "sub_path": "filament/Generic TPU for AMS @base.json" }, - { - "name": "BETA ABS @BBL A1", - "sub_path": "filament/BETA/BETA ABS @BBL A1.json" - }, - { - "name": "BETA ABS @BBL H2D", - "sub_path": "filament/BETA/BETA ABS @BBL H2D.json" - }, - { - "name": "BETA ABS @BBL P1P", - "sub_path": "filament/BETA/BETA ABS @BBL P1P.json" - }, - { - "name": "BETA ABS @BBL X1C", - "sub_path": "filament/BETA/BETA ABS @BBL X1C.json" - }, { "name": "Bambu ABS @BBL A1", "sub_path": "filament/Bambu ABS @BBL A1.json" @@ -2365,10 +1937,6 @@ "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" @@ -2409,18 +1977,6 @@ "name": "PolyLite ABS @BBL X1E 0.2 nozzle", "sub_path": "filament/Polymaker/PolyLite ABS @BBL X1E 0.2 nozzle.json" }, - { - "name": "BETA ASA @BBL A1 0.4 nozzle", - "sub_path": "filament/BETA/BETA ASA @BBL A1 0.4 nozzle.json" - }, - { - "name": "BETA ASA @BBL H2D 0.4 nozzle", - "sub_path": "filament/BETA/BETA ASA @BBL H2D 0.4 nozzle.json" - }, - { - "name": "BETA ASA @BBL X1C 0.4 nozzle", - "sub_path": "filament/BETA/BETA ASA @BBL X1C 0.4 nozzle.json" - }, { "name": "Bambu ASA @BBL A1 0.2 nozzle", "sub_path": "filament/Bambu ASA @BBL A1 0.2 nozzle.json" @@ -2873,14 +2429,6 @@ "name": "Generic EVA @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic EVA @BBL X2D 0.4 nozzle.json" }, - { - "name": "BETA HIPS @BBL H2D", - "sub_path": "filament/BETA/BETA HIPS @BBL H2D.json" - }, - { - "name": "BETA HIPS @BBL X1C", - "sub_path": "filament/BETA/BETA HIPS @BBL X1C.json" - }, { "name": "Generic HIPS @BBL A1", "sub_path": "filament/Generic HIPS @BBL A1.json" @@ -2969,18 +2517,6 @@ "name": "Generic HIPS @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic HIPS @BBL X2D 0.4 nozzle.json" }, - { - "name": "BETA PAHT-CF @BBL H2D", - "sub_path": "filament/BETA/BETA PAHT-CF @BBL H2D.json" - }, - { - "name": "BETA PAHT-CF @BBL P1P", - "sub_path": "filament/BETA/BETA PAHT-CF @BBL P1P.json" - }, - { - "name": "BETA PAHT-CF @BBL X1C", - "sub_path": "filament/BETA/BETA PAHT-CF @BBL X1C.json" - }, { "name": "Bambu PA-CF @BBL A1", "sub_path": "filament/Bambu PA-CF @BBL A1.json" @@ -3261,10 +2797,6 @@ "name": "Fiberon PA12-CF @BBL X1C", "sub_path": "filament/Polymaker/Fiberon PA12-CF @BBL X1C.json" }, - { - "name": "Fiberon PA12-CF10 @BBL X1", - "sub_path": "filament/Polymaker/Fiberon PA12-CF10 @BBL X1.json" - }, { "name": "Fiberon PA6-CF @BBL H2D", "sub_path": "filament/Polymaker/Fiberon PA6-CF @BBL H2D.json" @@ -3273,10 +2805,6 @@ "name": "Fiberon PA6-CF @BBL X1C", "sub_path": "filament/Polymaker/Fiberon PA6-CF @BBL X1C.json" }, - { - "name": "Fiberon PA6-CF20 @BBL X1", - "sub_path": "filament/Polymaker/Fiberon PA6-CF20 @BBL X1.json" - }, { "name": "Fiberon PA6-GF @BBL H2D", "sub_path": "filament/Polymaker/Fiberon PA6-GF @BBL H2D.json" @@ -3285,10 +2813,6 @@ "name": "Fiberon PA6-GF @BBL X1C", "sub_path": "filament/Polymaker/Fiberon PA6-GF @BBL X1C.json" }, - { - "name": "Fiberon PA6-GF25 @BBL X1", - "sub_path": "filament/Polymaker/Fiberon PA6-GF25 @BBL X1.json" - }, { "name": "Fiberon PA612-CF @BBL H2D", "sub_path": "filament/Polymaker/Fiberon PA612-CF @BBL H2D.json" @@ -3297,10 +2821,6 @@ "name": "Fiberon PA612-CF @BBL X1C", "sub_path": "filament/Polymaker/Fiberon PA612-CF @BBL X1C.json" }, - { - "name": "Fiberon PA612-CF15 @BBL X1", - "sub_path": "filament/Polymaker/Fiberon PA612-CF15 @BBL X1.json" - }, { "name": "Generic PA", "sub_path": "filament/Generic PA.json" @@ -3341,22 +2861,6 @@ "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" @@ -3381,10 +2885,6 @@ "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" @@ -3725,10 +3225,6 @@ "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" @@ -3873,238 +3369,6 @@ "name": "Generic PE-CF @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PE-CF @BBL X2D 0.4 nozzle.json" }, - { - "name": "BETA PETG @BBL A1", - "sub_path": "filament/BETA/BETA PETG @BBL A1.json" - }, - { - "name": "BETA PETG @BBL A1M 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG @BBL A1M 0.4 nozzle.json" - }, - { - "name": "BETA PETG @BBL H2D 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG @BBL H2D 0.4 nozzle.json" - }, - { - "name": "BETA PETG @BBL X1C", - "sub_path": "filament/BETA/BETA PETG @BBL X1C.json" - }, - { - "name": "BETA PETG Fluorescence @BBL A1", - "sub_path": "filament/BETA/BETA PETG Fluorescence @BBL A1.json" - }, - { - "name": "BETA PETG Fluorescence @BBL A1M 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG Fluorescence @BBL A1M 0.4 nozzle.json" - }, - { - "name": "BETA PETG Fluorescence @BBL H2D 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG Fluorescence @BBL H2D 0.4 nozzle.json" - }, - { - "name": "BETA PETG Fluorescence @BBL X1C", - "sub_path": "filament/BETA/BETA PETG Fluorescence @BBL X1C.json" - }, - { - "name": "BETA PETG Glitter @BBL A1", - "sub_path": "filament/BETA/BETA PETG Glitter @BBL A1.json" - }, - { - "name": "BETA PETG Glitter @BBL A1M 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG Glitter @BBL A1M 0.4 nozzle.json" - }, - { - "name": "BETA PETG Glitter @BBL H2D 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG Glitter @BBL H2D 0.4 nozzle.json" - }, - { - "name": "BETA PETG Glitter @BBL X1C", - "sub_path": "filament/BETA/BETA PETG Glitter @BBL X1C.json" - }, - { - "name": "BETA PETG Glow @BBL A1", - "sub_path": "filament/BETA/BETA PETG Glow @BBL A1.json" - }, - { - "name": "BETA PETG Glow @BBL A1M 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG Glow @BBL A1M 0.4 nozzle.json" - }, - { - "name": "BETA PETG Glow @BBL H2D 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG Glow @BBL H2D 0.4 nozzle.json" - }, - { - "name": "BETA PETG Glow @BBL X1C", - "sub_path": "filament/BETA/BETA PETG Glow @BBL X1C.json" - }, - { - "name": "BETA PETG Gradient @BBL A1", - "sub_path": "filament/BETA/BETA PETG Gradient @BBL A1.json" - }, - { - "name": "BETA PETG Gradient @BBL A1M 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG Gradient @BBL A1M 0.4 nozzle.json" - }, - { - "name": "BETA PETG Gradient @BBL H2D 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG Gradient @BBL H2D 0.4 nozzle.json" - }, - { - "name": "BETA PETG Gradient @BBL X1C", - "sub_path": "filament/BETA/BETA PETG Gradient @BBL X1C.json" - }, - { - "name": "BETA PETG HF @BBL A1", - "sub_path": "filament/BETA/BETA PETG HF @BBL A1.json" - }, - { - "name": "BETA PETG HF @BBL A1M", - "sub_path": "filament/BETA/BETA PETG HF @BBL A1M.json" - }, - { - "name": "BETA PETG HF @BBL H2D 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG HF @BBL H2D 0.4 nozzle.json" - }, - { - "name": "BETA PETG HF @BBL X1C", - "sub_path": "filament/BETA/BETA PETG HF @BBL X1C.json" - }, - { - "name": "BETA PETG Heat Color Change @BBL A1", - "sub_path": "filament/BETA/BETA PETG Heat Color Change @BBL A1.json" - }, - { - "name": "BETA PETG Heat Color Change @BBL A1M 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG Heat Color Change @BBL A1M 0.4 nozzle.json" - }, - { - "name": "BETA PETG Heat Color Change @BBL H2D 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG Heat Color Change @BBL H2D 0.4 nozzle.json" - }, - { - "name": "BETA PETG Heat Color Change @BBL X1C", - "sub_path": "filament/BETA/BETA PETG Heat Color Change @BBL X1C.json" - }, - { - "name": "BETA PETG Marble @BBL A1", - "sub_path": "filament/BETA/BETA PETG Marble @BBL A1.json" - }, - { - "name": "BETA PETG Marble @BBL A1M 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG Marble @BBL A1M 0.4 nozzle.json" - }, - { - "name": "BETA PETG Marble @BBL H2D 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG Marble @BBL H2D 0.4 nozzle.json" - }, - { - "name": "BETA PETG Marble @BBL X1C", - "sub_path": "filament/BETA/BETA PETG Marble @BBL X1C.json" - }, - { - "name": "BETA PETG Matte @BBL A1", - "sub_path": "filament/BETA/BETA PETG Matte @BBL A1.json" - }, - { - "name": "BETA PETG Matte @BBL A1M 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG Matte @BBL A1M 0.4 nozzle.json" - }, - { - "name": "BETA PETG Matte @BBL H2D 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG Matte @BBL H2D 0.4 nozzle.json" - }, - { - "name": "BETA PETG Matte @BBL X1C", - "sub_path": "filament/BETA/BETA PETG Matte @BBL X1C.json" - }, - { - "name": "BETA PETG Metallic @BBL A1", - "sub_path": "filament/BETA/BETA PETG Metallic @BBL A1.json" - }, - { - "name": "BETA PETG Metallic @BBL A1M 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG Metallic @BBL A1M 0.4 nozzle.json" - }, - { - "name": "BETA PETG Metallic @BBL H2D 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG Metallic @BBL H2D 0.4 nozzle.json" - }, - { - "name": "BETA PETG Metallic @BBL X1C", - "sub_path": "filament/BETA/BETA PETG Metallic @BBL X1C.json" - }, - { - "name": "BETA PETG Transparent @BBL A1", - "sub_path": "filament/BETA/BETA PETG Transparent @BBL A1.json" - }, - { - "name": "BETA PETG Transparent @BBL A1M", - "sub_path": "filament/BETA/BETA PETG Transparent @BBL A1M.json" - }, - { - "name": "BETA PETG Transparent @BBL H2D 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG Transparent @BBL H2D 0.4 nozzle.json" - }, - { - "name": "BETA PETG Transparent @BBL X1C", - "sub_path": "filament/BETA/BETA PETG Transparent @BBL X1C.json" - }, - { - "name": "BETA PETG UV Color Change @BBL A1", - "sub_path": "filament/BETA/BETA PETG UV Color Change @BBL A1.json" - }, - { - "name": "BETA PETG UV Color Change @BBL A1M 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG UV Color Change @BBL A1M 0.4 nozzle.json" - }, - { - "name": "BETA PETG UV Color Change @BBL H2D 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG UV Color Change @BBL H2D 0.4 nozzle.json" - }, - { - "name": "BETA PETG UV Color Change @BBL X1C", - "sub_path": "filament/BETA/BETA PETG UV Color Change @BBL X1C.json" - }, - { - "name": "BETA PETG-CF @BBL A1 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG-CF @BBL A1 0.4 nozzle.json" - }, - { - "name": "BETA PETG-CF @BBL A1M 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG-CF @BBL A1M 0.4 nozzle.json" - }, - { - "name": "BETA PETG-CF @BBL H2D 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG-CF @BBL H2D 0.4 nozzle.json" - }, - { - "name": "BETA PETG-CF @BBL P1P 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG-CF @BBL P1P 0.4 nozzle.json" - }, - { - "name": "BETA PETG-CF @BBL X1C 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG-CF @BBL X1C 0.4 nozzle.json" - }, - { - "name": "BETA PETG-GF @BBL A1 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG-GF @BBL A1 0.4 nozzle.json" - }, - { - "name": "BETA PETG-GF @BBL A1M 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG-GF @BBL A1M 0.4 nozzle.json" - }, - { - "name": "BETA PETG-GF @BBL H2D 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG-GF @BBL H2D 0.4 nozzle.json" - }, - { - "name": "BETA PETG-GF @BBL P1P 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG-GF @BBL P1P 0.4 nozzle.json" - }, - { - "name": "BETA PETG-GF @BBL X1C 0.4 nozzle", - "sub_path": "filament/BETA/BETA PETG-GF @BBL X1C 0.4 nozzle.json" - }, { "name": "Bambu PET-CF @BBL A1", "sub_path": "filament/Bambu PET-CF @BBL A1.json" @@ -4637,18 +3901,10 @@ "name": "Fiberon PET-CF @BBL X1C", "sub_path": "filament/Polymaker/Fiberon PET-CF @BBL X1C.json" }, - { - "name": "Fiberon PET-CF17 @BBL X1", - "sub_path": "filament/Polymaker/Fiberon PET-CF17 @BBL X1.json" - }, { "name": "Fiberon PETG-ESD @BBL H2D", "sub_path": "filament/Polymaker/Fiberon PETG-ESD @BBL H2D.json" }, - { - "name": "Fiberon PETG-ESD @BBL X1", - "sub_path": "filament/Polymaker/Fiberon PETG-ESD @BBL X1.json" - }, { "name": "Fiberon PETG-ESD @BBL X1C", "sub_path": "filament/Polymaker/Fiberon PETG-ESD @BBL X1C.json" @@ -4661,10 +3917,6 @@ "name": "Fiberon PETG-rCF @BBL X1C", "sub_path": "filament/Polymaker/Fiberon PETG-rCF @BBL X1C.json" }, - { - "name": "Fiberon PETG-rCF08 @BBL X1", - "sub_path": "filament/Polymaker/Fiberon PETG-rCF08 @BBL X1.json" - }, { "name": "Generic PETG", "sub_path": "filament/Generic PETG.json" @@ -4761,30 +4013,6 @@ "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" @@ -4937,10 +4165,6 @@ "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" @@ -5069,426 +4293,6 @@ "name": "Generic PHA @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PHA @BBL X2D 0.4 nozzle.json" }, - { - "name": "BETA PLA Basic @BBL A1", - "sub_path": "filament/BETA/BETA PLA Basic @BBL A1.json" - }, - { - "name": "BETA PLA Basic @BBL A1M", - "sub_path": "filament/BETA/BETA PLA Basic @BBL A1M.json" - }, - { - "name": "BETA PLA Basic @BBL H2D", - "sub_path": "filament/BETA/BETA PLA Basic @BBL H2D.json" - }, - { - "name": "BETA PLA Basic @BBL P1P", - "sub_path": "filament/BETA/BETA PLA Basic @BBL P1P.json" - }, - { - "name": "BETA PLA Basic @BBL X1C", - "sub_path": "filament/BETA/BETA PLA Basic @BBL X1C.json" - }, - { - "name": "BETA PLA Chameleon @BBL A1", - "sub_path": "filament/BETA/BETA PLA Chameleon @BBL A1.json" - }, - { - "name": "BETA PLA Chameleon @BBL A1M", - "sub_path": "filament/BETA/BETA PLA Chameleon @BBL A1M.json" - }, - { - "name": "BETA PLA Chameleon @BBL H2D", - "sub_path": "filament/BETA/BETA PLA Chameleon @BBL H2D.json" - }, - { - "name": "BETA PLA Chameleon @BBL P1P", - "sub_path": "filament/BETA/BETA PLA Chameleon @BBL P1P.json" - }, - { - "name": "BETA PLA Chameleon @BBL X1C", - "sub_path": "filament/BETA/BETA PLA Chameleon @BBL X1C.json" - }, - { - "name": "BETA PLA Fluorescence @BBL A1", - "sub_path": "filament/BETA/BETA PLA Fluorescence @BBL A1.json" - }, - { - "name": "BETA PLA Fluorescence @BBL A1M", - "sub_path": "filament/BETA/BETA PLA Fluorescence @BBL A1M.json" - }, - { - "name": "BETA PLA Fluorescence @BBL H2D", - "sub_path": "filament/BETA/BETA PLA Fluorescence @BBL H2D.json" - }, - { - "name": "BETA PLA Fluorescence @BBL P1P", - "sub_path": "filament/BETA/BETA PLA Fluorescence @BBL P1P.json" - }, - { - "name": "BETA PLA Fluorescence @BBL X1C", - "sub_path": "filament/BETA/BETA PLA Fluorescence @BBL X1C.json" - }, - { - "name": "BETA PLA Glitter @BBL A1", - "sub_path": "filament/BETA/BETA PLA Glitter @BBL A1.json" - }, - { - "name": "BETA PLA Glitter @BBL A1M", - "sub_path": "filament/BETA/BETA PLA Glitter @BBL A1M.json" - }, - { - "name": "BETA PLA Glitter @BBL H2D", - "sub_path": "filament/BETA/BETA PLA Glitter @BBL H2D.json" - }, - { - "name": "BETA PLA Glitter @BBL P1P", - "sub_path": "filament/BETA/BETA PLA Glitter @BBL P1P.json" - }, - { - "name": "BETA PLA Glitter @BBL X1C", - "sub_path": "filament/BETA/BETA PLA Glitter @BBL X1C.json" - }, - { - "name": "BETA PLA Glow @BBL A1", - "sub_path": "filament/BETA/BETA PLA Glow @BBL A1.json" - }, - { - "name": "BETA PLA Glow @BBL A1M", - "sub_path": "filament/BETA/BETA PLA Glow @BBL A1M.json" - }, - { - "name": "BETA PLA Glow @BBL H2D", - "sub_path": "filament/BETA/BETA PLA Glow @BBL H2D.json" - }, - { - "name": "BETA PLA Glow @BBL P1P", - "sub_path": "filament/BETA/BETA PLA Glow @BBL P1P.json" - }, - { - "name": "BETA PLA Glow @BBL X1C", - "sub_path": "filament/BETA/BETA PLA Glow @BBL X1C.json" - }, - { - "name": "BETA PLA Gradient @BBL A1", - "sub_path": "filament/BETA/BETA PLA Gradient @BBL A1.json" - }, - { - "name": "BETA PLA Gradient @BBL A1M", - "sub_path": "filament/BETA/BETA PLA Gradient @BBL A1M.json" - }, - { - "name": "BETA PLA Gradient @BBL H2D", - "sub_path": "filament/BETA/BETA PLA Gradient @BBL H2D.json" - }, - { - "name": "BETA PLA Gradient @BBL P1P", - "sub_path": "filament/BETA/BETA PLA Gradient @BBL P1P.json" - }, - { - "name": "BETA PLA Gradient @BBL X1C", - "sub_path": "filament/BETA/BETA PLA Gradient @BBL X1C.json" - }, - { - "name": "BETA PLA Heat Color Change @BBL A1", - "sub_path": "filament/BETA/BETA PLA Heat Color Change @BBL A1.json" - }, - { - "name": "BETA PLA Heat Color Change @BBL A1M", - "sub_path": "filament/BETA/BETA PLA Heat Color Change @BBL A1M.json" - }, - { - "name": "BETA PLA Heat Color Change @BBL H2D", - "sub_path": "filament/BETA/BETA PLA Heat Color Change @BBL H2D.json" - }, - { - "name": "BETA PLA Heat Color Change @BBL P1P", - "sub_path": "filament/BETA/BETA PLA Heat Color Change @BBL P1P.json" - }, - { - "name": "BETA PLA Heat Color Change @BBL X1C", - "sub_path": "filament/BETA/BETA PLA Heat Color Change @BBL X1C.json" - }, - { - "name": "BETA PLA High Speed @BBL A1", - "sub_path": "filament/BETA/BETA PLA High Speed @BBL A1.json" - }, - { - "name": "BETA PLA High Speed @BBL A1M", - "sub_path": "filament/BETA/BETA PLA High Speed @BBL A1M.json" - }, - { - "name": "BETA PLA High Speed @BBL H2D", - "sub_path": "filament/BETA/BETA PLA High Speed @BBL H2D.json" - }, - { - "name": "BETA PLA High Speed @BBL P1P", - "sub_path": "filament/BETA/BETA PLA High Speed @BBL P1P.json" - }, - { - "name": "BETA PLA High Speed @BBL X1C", - "sub_path": "filament/BETA/BETA PLA High Speed @BBL X1C.json" - }, - { - "name": "BETA PLA High Temp @BBL A1", - "sub_path": "filament/BETA/BETA PLA High Temp @BBL A1.json" - }, - { - "name": "BETA PLA High Temp @BBL A1M", - "sub_path": "filament/BETA/BETA PLA High Temp @BBL A1M.json" - }, - { - "name": "BETA PLA High Temp @BBL H2D", - "sub_path": "filament/BETA/BETA PLA High Temp @BBL H2D.json" - }, - { - "name": "BETA PLA High Temp @BBL P1P", - "sub_path": "filament/BETA/BETA PLA High Temp @BBL P1P.json" - }, - { - "name": "BETA PLA High Temp @BBL X1C", - "sub_path": "filament/BETA/BETA PLA High Temp @BBL X1C.json" - }, - { - "name": "BETA PLA Marble @BBL A1", - "sub_path": "filament/BETA/BETA PLA Marble @BBL A1.json" - }, - { - "name": "BETA PLA Marble @BBL A1M", - "sub_path": "filament/BETA/BETA PLA Marble @BBL A1M.json" - }, - { - "name": "BETA PLA Marble @BBL H2D", - "sub_path": "filament/BETA/BETA PLA Marble @BBL H2D.json" - }, - { - "name": "BETA PLA Marble @BBL P1P", - "sub_path": "filament/BETA/BETA PLA Marble @BBL P1P.json" - }, - { - "name": "BETA PLA Marble @BBL X1C", - "sub_path": "filament/BETA/BETA PLA Marble @BBL X1C.json" - }, - { - "name": "BETA PLA Matte @BBL A1", - "sub_path": "filament/BETA/BETA PLA Matte @BBL A1.json" - }, - { - "name": "BETA PLA Matte @BBL A1M", - "sub_path": "filament/BETA/BETA PLA Matte @BBL A1M.json" - }, - { - "name": "BETA PLA Matte @BBL H2D", - "sub_path": "filament/BETA/BETA PLA Matte @BBL H2D.json" - }, - { - "name": "BETA PLA Matte @BBL P1P", - "sub_path": "filament/BETA/BETA PLA Matte @BBL P1P.json" - }, - { - "name": "BETA PLA Matte @BBL X1C", - "sub_path": "filament/BETA/BETA PLA Matte @BBL X1C.json" - }, - { - "name": "BETA PLA Metal @BBL A1", - "sub_path": "filament/BETA/BETA PLA Metal @BBL A1.json" - }, - { - "name": "BETA PLA Metal @BBL A1M", - "sub_path": "filament/BETA/BETA PLA Metal @BBL A1M.json" - }, - { - "name": "BETA PLA Metal @BBL H2D", - "sub_path": "filament/BETA/BETA PLA Metal @BBL H2D.json" - }, - { - "name": "BETA PLA Metal @BBL P1P", - "sub_path": "filament/BETA/BETA PLA Metal @BBL P1P.json" - }, - { - "name": "BETA PLA Metal @BBL X1C", - "sub_path": "filament/BETA/BETA PLA Metal @BBL X1C.json" - }, - { - "name": "BETA PLA Metallic @BBL A1", - "sub_path": "filament/BETA/BETA PLA Metallic @BBL A1.json" - }, - { - "name": "BETA PLA Metallic @BBL A1M", - "sub_path": "filament/BETA/BETA PLA Metallic @BBL A1M.json" - }, - { - "name": "BETA PLA Metallic @BBL H2D", - "sub_path": "filament/BETA/BETA PLA Metallic @BBL H2D.json" - }, - { - "name": "BETA PLA Metallic @BBL P1P", - "sub_path": "filament/BETA/BETA PLA Metallic @BBL P1P.json" - }, - { - "name": "BETA PLA Metallic @BBL X1C", - "sub_path": "filament/BETA/BETA PLA Metallic @BBL X1C.json" - }, - { - "name": "BETA PLA PRO @BBL A1", - "sub_path": "filament/BETA/BETA PLA PRO @BBL A1.json" - }, - { - "name": "BETA PLA PRO @BBL A1M", - "sub_path": "filament/BETA/BETA PLA PRO @BBL A1M.json" - }, - { - "name": "BETA PLA PRO @BBL H2D", - "sub_path": "filament/BETA/BETA PLA PRO @BBL H2D.json" - }, - { - "name": "BETA PLA PRO @BBL P1P", - "sub_path": "filament/BETA/BETA PLA PRO @BBL P1P.json" - }, - { - "name": "BETA PLA PRO @BBL X1C", - "sub_path": "filament/BETA/BETA PLA PRO @BBL X1C.json" - }, - { - "name": "BETA PLA Silk @BBL A1", - "sub_path": "filament/BETA/BETA PLA Silk @BBL A1.json" - }, - { - "name": "BETA PLA Silk @BBL A1M", - "sub_path": "filament/BETA/BETA PLA Silk @BBL A1M.json" - }, - { - "name": "BETA PLA Silk @BBL H2D", - "sub_path": "filament/BETA/BETA PLA Silk @BBL H2D.json" - }, - { - "name": "BETA PLA Silk @BBL P1P", - "sub_path": "filament/BETA/BETA PLA Silk @BBL P1P.json" - }, - { - "name": "BETA PLA Silk @BBL X1C", - "sub_path": "filament/BETA/BETA PLA Silk @BBL X1C.json" - }, - { - "name": "BETA PLA Silk+ @BBL A1", - "sub_path": "filament/BETA/BETA PLA Silk+ @BBL A1.json" - }, - { - "name": "BETA PLA Silk+ @BBL A1M", - "sub_path": "filament/BETA/BETA PLA Silk+ @BBL A1M.json" - }, - { - "name": "BETA PLA Silk+ @BBL H2D", - "sub_path": "filament/BETA/BETA PLA Silk+ @BBL H2D.json" - }, - { - "name": "BETA PLA Silk+ @BBL P1P", - "sub_path": "filament/BETA/BETA PLA Silk+ @BBL P1P.json" - }, - { - "name": "BETA PLA Silk+ @BBL X1C", - "sub_path": "filament/BETA/BETA PLA Silk+ @BBL X1C.json" - }, - { - "name": "BETA PLA Transparent @BBL A1", - "sub_path": "filament/BETA/BETA PLA Transparent @BBL A1.json" - }, - { - "name": "BETA PLA Transparent @BBL A1M", - "sub_path": "filament/BETA/BETA PLA Transparent @BBL A1M.json" - }, - { - "name": "BETA PLA Transparent @BBL H2D", - "sub_path": "filament/BETA/BETA PLA Transparent @BBL H2D.json" - }, - { - "name": "BETA PLA Transparent @BBL P1P", - "sub_path": "filament/BETA/BETA PLA Transparent @BBL P1P.json" - }, - { - "name": "BETA PLA Transparent @BBL X1C", - "sub_path": "filament/BETA/BETA PLA Transparent @BBL X1C.json" - }, - { - "name": "BETA PLA UV Color Change @BBL A1", - "sub_path": "filament/BETA/BETA PLA UV Color Change @BBL A1.json" - }, - { - "name": "BETA PLA UV Color Change @BBL A1M", - "sub_path": "filament/BETA/BETA PLA UV Color Change @BBL A1M.json" - }, - { - "name": "BETA PLA UV Color Change @BBL H2D", - "sub_path": "filament/BETA/BETA PLA UV Color Change @BBL H2D.json" - }, - { - "name": "BETA PLA UV Color Change @BBL P1P", - "sub_path": "filament/BETA/BETA PLA UV Color Change @BBL P1P.json" - }, - { - "name": "BETA PLA UV Color Change @BBL X1C", - "sub_path": "filament/BETA/BETA PLA UV Color Change @BBL X1C.json" - }, - { - "name": "BETA PLA Wood @BBL A1", - "sub_path": "filament/BETA/BETA PLA Wood @BBL A1.json" - }, - { - "name": "BETA PLA Wood @BBL A1M", - "sub_path": "filament/BETA/BETA PLA Wood @BBL A1M.json" - }, - { - "name": "BETA PLA Wood @BBL H2D", - "sub_path": "filament/BETA/BETA PLA Wood @BBL H2D.json" - }, - { - "name": "BETA PLA Wood @BBL P1P", - "sub_path": "filament/BETA/BETA PLA Wood @BBL P1P.json" - }, - { - "name": "BETA PLA Wood @BBL X1C", - "sub_path": "filament/BETA/BETA PLA Wood @BBL X1C.json" - }, - { - "name": "BETA PLA Youth @BBL A1", - "sub_path": "filament/BETA/BETA PLA Youth @BBL A1.json" - }, - { - "name": "BETA PLA Youth @BBL A1M", - "sub_path": "filament/BETA/BETA PLA Youth @BBL A1M.json" - }, - { - "name": "BETA PLA Youth @BBL H2D", - "sub_path": "filament/BETA/BETA PLA Youth @BBL H2D.json" - }, - { - "name": "BETA PLA Youth @BBL P1P", - "sub_path": "filament/BETA/BETA PLA Youth @BBL P1P.json" - }, - { - "name": "BETA PLA Youth @BBL X1C", - "sub_path": "filament/BETA/BETA PLA Youth @BBL X1C.json" - }, - { - "name": "BETA PLA-CF @BBL A1", - "sub_path": "filament/BETA/BETA PLA-CF @BBL A1.json" - }, - { - "name": "BETA PLA-CF @BBL A1M", - "sub_path": "filament/BETA/BETA PLA-CF @BBL A1M.json" - }, - { - "name": "BETA PLA-CF @BBL H2D 0.4 nozzle", - "sub_path": "filament/BETA/BETA PLA-CF @BBL H2D 0.4 nozzle.json" - }, - { - "name": "BETA PLA-CF @BBL P1P", - "sub_path": "filament/BETA/BETA PLA-CF @BBL P1P.json" - }, - { - "name": "BETA PLA-CF @BBL X1C", - "sub_path": "filament/BETA/BETA PLA-CF @BBL X1C.json" - }, { "name": "Bambu PLA Aero @BBL A1", "sub_path": "filament/Bambu PLA Aero @BBL A1.json" @@ -7809,34 +6613,6 @@ "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" @@ -7917,10 +6693,6 @@ "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" @@ -7973,10 +6745,6 @@ "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" @@ -8029,46 +6797,6 @@ "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" - }, - { - "name": "Numakers PLA+ @BBL A1 0.2 nozzle", - "sub_path": "filament/Numakers/Numakers PLA+ @BBL A1 0.2 nozzle.json" - }, - { - "name": "Numakers PLA+ @BBL A1M", - "sub_path": "filament/Numakers/Numakers PLA+ @BBL A1M.json" - }, - { - "name": "Numakers PLA+ @BBL A1M 0.2 nozzle", - "sub_path": "filament/Numakers/Numakers PLA+ @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Numakers PLA+ @BBL P1P", - "sub_path": "filament/Numakers/Numakers PLA+ @BBL P1P.json" - }, - { - "name": "Numakers PLA+ @BBL P1P 0.2 nozzle", - "sub_path": "filament/Numakers/Numakers PLA+ @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Numakers PLA+ @BBL X1", - "sub_path": "filament/Numakers/Numakers PLA+ @BBL X1.json" - }, - { - "name": "Numakers PLA+ @BBL X1C", - "sub_path": "filament/Numakers/Numakers PLA+ @BBL X1C.json" - }, - { - "name": "Numakers PLA+ @BBL X1C 0.2 nozzle", - "sub_path": "filament/Numakers/Numakers PLA+ @BBL X1C 0.2 nozzle.json" - }, { "name": "Overture Matte PLA @BBL A1", "sub_path": "filament/Overture/Overture Matte PLA @BBL A1.json" @@ -8165,702 +6893,6 @@ "name": "Overture PLA @BBL X1C", "sub_path": "filament/Overture/Overture PLA @BBL X1C.json" }, - { - "name": "Overture PLA Pro @BBL A1", - "sub_path": "filament/Overture/Overture PLA Pro @BBL A1.json" - }, - { - "name": "Overture PLA Pro @BBL A1 0.2 nozzle", - "sub_path": "filament/Overture/Overture PLA Pro @BBL A1 0.2 nozzle.json" - }, - { - "name": "Overture PLA Pro @BBL A1M", - "sub_path": "filament/Overture/Overture PLA Pro @BBL A1M.json" - }, - { - "name": "Overture PLA Pro @BBL A1M 0.2 nozzle", - "sub_path": "filament/Overture/Overture PLA Pro @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Overture PLA Pro @BBL P1P", - "sub_path": "filament/Overture/Overture PLA Pro @BBL P1P.json" - }, - { - "name": "Overture PLA Pro @BBL P1P 0.2 nozzle", - "sub_path": "filament/Overture/Overture PLA Pro @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Overture PLA Pro @BBL X1", - "sub_path": "filament/Overture/Overture PLA Pro @BBL X1.json" - }, - { - "name": "Overture PLA Pro @BBL X1 0.2 nozzle", - "sub_path": "filament/Overture/Overture PLA Pro @BBL X1 0.2 nozzle.json" - }, - { - "name": "Overture PLA Pro @BBL X1C", - "sub_path": "filament/Overture/Overture PLA Pro @BBL X1C.json" - }, - { - "name": "Overture PLA Pro @BBL X1C 0.2 nozzle", - "sub_path": "filament/Overture/Overture PLA Pro @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Panchroma CoPE @BBL A1", - "sub_path": "filament/Polymaker/Panchroma CoPE @BBL A1.json" - }, - { - "name": "Panchroma CoPE @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma CoPE @BBL A1 0.2 nozzle.json" - }, - { - "name": "Panchroma CoPE @BBL A1M", - "sub_path": "filament/Polymaker/Panchroma CoPE @BBL A1M.json" - }, - { - "name": "Panchroma CoPE @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma CoPE @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Panchroma CoPE @BBL P1P", - "sub_path": "filament/Polymaker/Panchroma CoPE @BBL P1P.json" - }, - { - "name": "Panchroma CoPE @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma CoPE @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Panchroma CoPE @BBL X1", - "sub_path": "filament/Polymaker/Panchroma CoPE @BBL X1.json" - }, - { - "name": "Panchroma CoPE @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma CoPE @BBL X1 0.2 nozzle.json" - }, - { - "name": "Panchroma CoPE @BBL X1C", - "sub_path": "filament/Polymaker/Panchroma CoPE @BBL X1C.json" - }, - { - "name": "Panchroma CoPE @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma CoPE @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA @BBL A1", - "sub_path": "filament/Polymaker/Panchroma PLA @BBL A1.json" - }, - { - "name": "Panchroma PLA @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA @BBL A1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA @BBL A1M", - "sub_path": "filament/Polymaker/Panchroma PLA @BBL A1M.json" - }, - { - "name": "Panchroma PLA @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA @BBL P1P", - "sub_path": "filament/Polymaker/Panchroma PLA @BBL P1P.json" - }, - { - "name": "Panchroma PLA @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA @BBL X1", - "sub_path": "filament/Polymaker/Panchroma PLA @BBL X1.json" - }, - { - "name": "Panchroma PLA @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA @BBL X1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA @BBL X1C", - "sub_path": "filament/Polymaker/Panchroma PLA @BBL X1C.json" - }, - { - "name": "Panchroma PLA @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Celestial @BBL A1", - "sub_path": "filament/Polymaker/Panchroma PLA Celestial @BBL A1.json" - }, - { - "name": "Panchroma PLA Celestial @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Celestial @BBL A1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Celestial @BBL A1M", - "sub_path": "filament/Polymaker/Panchroma PLA Celestial @BBL A1M.json" - }, - { - "name": "Panchroma PLA Celestial @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Celestial @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Celestial @BBL P1P", - "sub_path": "filament/Polymaker/Panchroma PLA Celestial @BBL P1P.json" - }, - { - "name": "Panchroma PLA Celestial @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Celestial @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Celestial @BBL X1", - "sub_path": "filament/Polymaker/Panchroma PLA Celestial @BBL X1.json" - }, - { - "name": "Panchroma PLA Celestial @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Celestial @BBL X1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Celestial @BBL X1C", - "sub_path": "filament/Polymaker/Panchroma PLA Celestial @BBL X1C.json" - }, - { - "name": "Panchroma PLA Celestial @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Celestial @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Galaxy @BBL A1", - "sub_path": "filament/Polymaker/Panchroma PLA Galaxy @BBL A1.json" - }, - { - "name": "Panchroma PLA Galaxy @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Galaxy @BBL A1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Galaxy @BBL A1M", - "sub_path": "filament/Polymaker/Panchroma PLA Galaxy @BBL A1M.json" - }, - { - "name": "Panchroma PLA Galaxy @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Galaxy @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Galaxy @BBL P1P", - "sub_path": "filament/Polymaker/Panchroma PLA Galaxy @BBL P1P.json" - }, - { - "name": "Panchroma PLA Galaxy @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Galaxy @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Galaxy @BBL X1", - "sub_path": "filament/Polymaker/Panchroma PLA Galaxy @BBL X1.json" - }, - { - "name": "Panchroma PLA Galaxy @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Galaxy @BBL X1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Galaxy @BBL X1C", - "sub_path": "filament/Polymaker/Panchroma PLA Galaxy @BBL X1C.json" - }, - { - "name": "Panchroma PLA Galaxy @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Galaxy @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Glow @BBL A1", - "sub_path": "filament/Polymaker/Panchroma PLA Glow @BBL A1.json" - }, - { - "name": "Panchroma PLA Glow @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Glow @BBL A1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Glow @BBL A1M", - "sub_path": "filament/Polymaker/Panchroma PLA Glow @BBL A1M.json" - }, - { - "name": "Panchroma PLA Glow @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Glow @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Glow @BBL P1P", - "sub_path": "filament/Polymaker/Panchroma PLA Glow @BBL P1P.json" - }, - { - "name": "Panchroma PLA Glow @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Glow @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Glow @BBL X1", - "sub_path": "filament/Polymaker/Panchroma PLA Glow @BBL X1.json" - }, - { - "name": "Panchroma PLA Glow @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Glow @BBL X1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Glow @BBL X1C", - "sub_path": "filament/Polymaker/Panchroma PLA Glow @BBL X1C.json" - }, - { - "name": "Panchroma PLA Glow @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Glow @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Luminous @BBL A1", - "sub_path": "filament/Polymaker/Panchroma PLA Luminous @BBL A1.json" - }, - { - "name": "Panchroma PLA Luminous @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Luminous @BBL A1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Luminous @BBL A1M", - "sub_path": "filament/Polymaker/Panchroma PLA Luminous @BBL A1M.json" - }, - { - "name": "Panchroma PLA Luminous @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Luminous @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Luminous @BBL P1P", - "sub_path": "filament/Polymaker/Panchroma PLA Luminous @BBL P1P.json" - }, - { - "name": "Panchroma PLA Luminous @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Luminous @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Luminous @BBL X1", - "sub_path": "filament/Polymaker/Panchroma PLA Luminous @BBL X1.json" - }, - { - "name": "Panchroma PLA Luminous @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Luminous @BBL X1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Luminous @BBL X1C", - "sub_path": "filament/Polymaker/Panchroma PLA Luminous @BBL X1C.json" - }, - { - "name": "Panchroma PLA Luminous @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Luminous @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Marble @BBL A1", - "sub_path": "filament/Polymaker/Panchroma PLA Marble @BBL A1.json" - }, - { - "name": "Panchroma PLA Marble @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Marble @BBL A1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Marble @BBL A1M", - "sub_path": "filament/Polymaker/Panchroma PLA Marble @BBL A1M.json" - }, - { - "name": "Panchroma PLA Marble @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Marble @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Marble @BBL P1P", - "sub_path": "filament/Polymaker/Panchroma PLA Marble @BBL P1P.json" - }, - { - "name": "Panchroma PLA Marble @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Marble @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Marble @BBL X1", - "sub_path": "filament/Polymaker/Panchroma PLA Marble @BBL X1.json" - }, - { - "name": "Panchroma PLA Marble @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Marble @BBL X1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Marble @BBL X1C", - "sub_path": "filament/Polymaker/Panchroma PLA Marble @BBL X1C.json" - }, - { - "name": "Panchroma PLA Marble @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Marble @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Matte @BBL A1", - "sub_path": "filament/Polymaker/Panchroma PLA Matte @BBL A1.json" - }, - { - "name": "Panchroma PLA Matte @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Matte @BBL A1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Matte @BBL A1M", - "sub_path": "filament/Polymaker/Panchroma PLA Matte @BBL A1M.json" - }, - { - "name": "Panchroma PLA Matte @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Matte @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Matte @BBL P1P", - "sub_path": "filament/Polymaker/Panchroma PLA Matte @BBL P1P.json" - }, - { - "name": "Panchroma PLA Matte @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Matte @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Matte @BBL X1", - "sub_path": "filament/Polymaker/Panchroma PLA Matte @BBL X1.json" - }, - { - "name": "Panchroma PLA Matte @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Matte @BBL X1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Matte @BBL X1C", - "sub_path": "filament/Polymaker/Panchroma PLA Matte @BBL X1C.json" - }, - { - "name": "Panchroma PLA Matte @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Matte @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Metallic @BBL A1", - "sub_path": "filament/Polymaker/Panchroma PLA Metallic @BBL A1.json" - }, - { - "name": "Panchroma PLA Metallic @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Metallic @BBL A1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Metallic @BBL A1M", - "sub_path": "filament/Polymaker/Panchroma PLA Metallic @BBL A1M.json" - }, - { - "name": "Panchroma PLA Metallic @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Metallic @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Metallic @BBL P1P", - "sub_path": "filament/Polymaker/Panchroma PLA Metallic @BBL P1P.json" - }, - { - "name": "Panchroma PLA Metallic @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Metallic @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Metallic @BBL X1", - "sub_path": "filament/Polymaker/Panchroma PLA Metallic @BBL X1.json" - }, - { - "name": "Panchroma PLA Metallic @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Metallic @BBL X1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Metallic @BBL X1C", - "sub_path": "filament/Polymaker/Panchroma PLA Metallic @BBL X1C.json" - }, - { - "name": "Panchroma PLA Metallic @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Metallic @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Neon @BBL A1", - "sub_path": "filament/Polymaker/Panchroma PLA Neon @BBL A1.json" - }, - { - "name": "Panchroma PLA Neon @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Neon @BBL A1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Neon @BBL A1M", - "sub_path": "filament/Polymaker/Panchroma PLA Neon @BBL A1M.json" - }, - { - "name": "Panchroma PLA Neon @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Neon @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Neon @BBL P1P", - "sub_path": "filament/Polymaker/Panchroma PLA Neon @BBL P1P.json" - }, - { - "name": "Panchroma PLA Neon @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Neon @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Neon @BBL X1", - "sub_path": "filament/Polymaker/Panchroma PLA Neon @BBL X1.json" - }, - { - "name": "Panchroma PLA Neon @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Neon @BBL X1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Neon @BBL X1C", - "sub_path": "filament/Polymaker/Panchroma PLA Neon @BBL X1C.json" - }, - { - "name": "Panchroma PLA Neon @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Neon @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Satin @BBL A1", - "sub_path": "filament/Polymaker/Panchroma PLA Satin @BBL A1.json" - }, - { - "name": "Panchroma PLA Satin @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Satin @BBL A1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Satin @BBL A1M", - "sub_path": "filament/Polymaker/Panchroma PLA Satin @BBL A1M.json" - }, - { - "name": "Panchroma PLA Satin @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Satin @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Satin @BBL P1P", - "sub_path": "filament/Polymaker/Panchroma PLA Satin @BBL P1P.json" - }, - { - "name": "Panchroma PLA Satin @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Satin @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Satin @BBL X1", - "sub_path": "filament/Polymaker/Panchroma PLA Satin @BBL X1.json" - }, - { - "name": "Panchroma PLA Satin @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Satin @BBL X1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Satin @BBL X1C", - "sub_path": "filament/Polymaker/Panchroma PLA Satin @BBL X1C.json" - }, - { - "name": "Panchroma PLA Satin @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Satin @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Silk @BBL A1", - "sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL A1.json" - }, - { - "name": "Panchroma PLA Silk @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL A1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Silk @BBL A1M", - "sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL A1M.json" - }, - { - "name": "Panchroma PLA Silk @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Silk @BBL P1P", - "sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL P1P.json" - }, - { - "name": "Panchroma PLA Silk @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Silk @BBL X1", - "sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1.json" - }, - { - "name": "Panchroma PLA Silk @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1 0.2 nozzle.json" - }, - { - "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" - }, - { - "name": "Panchroma PLA Starlight @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Starlight @BBL A1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Starlight @BBL A1M", - "sub_path": "filament/Polymaker/Panchroma PLA Starlight @BBL A1M.json" - }, - { - "name": "Panchroma PLA Starlight @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Starlight @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Starlight @BBL P1P", - "sub_path": "filament/Polymaker/Panchroma PLA Starlight @BBL P1P.json" - }, - { - "name": "Panchroma PLA Starlight @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Starlight @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Starlight @BBL X1", - "sub_path": "filament/Polymaker/Panchroma PLA Starlight @BBL X1.json" - }, - { - "name": "Panchroma PLA Starlight @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Starlight @BBL X1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Starlight @BBL X1C", - "sub_path": "filament/Polymaker/Panchroma PLA Starlight @BBL X1C.json" - }, - { - "name": "Panchroma PLA Starlight @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Starlight @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Temp Shift @BBL A1", - "sub_path": "filament/Polymaker/Panchroma PLA Temp Shift @BBL A1.json" - }, - { - "name": "Panchroma PLA Temp Shift @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Temp Shift @BBL A1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Temp Shift @BBL A1M", - "sub_path": "filament/Polymaker/Panchroma PLA Temp Shift @BBL A1M.json" - }, - { - "name": "Panchroma PLA Temp Shift @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Temp Shift @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Temp Shift @BBL P1P", - "sub_path": "filament/Polymaker/Panchroma PLA Temp Shift @BBL P1P.json" - }, - { - "name": "Panchroma PLA Temp Shift @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Temp Shift @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Temp Shift @BBL X1", - "sub_path": "filament/Polymaker/Panchroma PLA Temp Shift @BBL X1.json" - }, - { - "name": "Panchroma PLA Temp Shift @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Temp Shift @BBL X1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Temp Shift @BBL X1C", - "sub_path": "filament/Polymaker/Panchroma PLA Temp Shift @BBL X1C.json" - }, - { - "name": "Panchroma PLA Temp Shift @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Temp Shift @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Translucent @BBL A1", - "sub_path": "filament/Polymaker/Panchroma PLA Translucent @BBL A1.json" - }, - { - "name": "Panchroma PLA Translucent @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Translucent @BBL A1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Translucent @BBL A1M", - "sub_path": "filament/Polymaker/Panchroma PLA Translucent @BBL A1M.json" - }, - { - "name": "Panchroma PLA Translucent @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Translucent @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Translucent @BBL P1P", - "sub_path": "filament/Polymaker/Panchroma PLA Translucent @BBL P1P.json" - }, - { - "name": "Panchroma PLA Translucent @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Translucent @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Translucent @BBL X1", - "sub_path": "filament/Polymaker/Panchroma PLA Translucent @BBL X1.json" - }, - { - "name": "Panchroma PLA Translucent @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Translucent @BBL X1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA Translucent @BBL X1C", - "sub_path": "filament/Polymaker/Panchroma PLA Translucent @BBL X1C.json" - }, - { - "name": "Panchroma PLA Translucent @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Translucent @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA UV Shift @BBL A1", - "sub_path": "filament/Polymaker/Panchroma PLA UV Shift @BBL A1.json" - }, - { - "name": "Panchroma PLA UV Shift @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA UV Shift @BBL A1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA UV Shift @BBL A1M", - "sub_path": "filament/Polymaker/Panchroma PLA UV Shift @BBL A1M.json" - }, - { - "name": "Panchroma PLA UV Shift @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA UV Shift @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA UV Shift @BBL P1P", - "sub_path": "filament/Polymaker/Panchroma PLA UV Shift @BBL P1P.json" - }, - { - "name": "Panchroma PLA UV Shift @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA UV Shift @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA UV Shift @BBL X1", - "sub_path": "filament/Polymaker/Panchroma PLA UV Shift @BBL X1.json" - }, - { - "name": "Panchroma PLA UV Shift @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA UV Shift @BBL X1 0.2 nozzle.json" - }, - { - "name": "Panchroma PLA UV Shift @BBL X1C", - "sub_path": "filament/Polymaker/Panchroma PLA UV Shift @BBL X1C.json" - }, - { - "name": "Panchroma PLA UV Shift @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA UV Shift @BBL X1C 0.2 nozzle.json" - }, - { - "name": "PolyLite CosPLA @BBL A1", - "sub_path": "filament/Polymaker/PolyLite CosPLA @BBL A1.json" - }, - { - "name": "PolyLite CosPLA @BBL A1M", - "sub_path": "filament/Polymaker/PolyLite CosPLA @BBL A1M.json" - }, - { - "name": "PolyLite CosPLA @BBL P1P", - "sub_path": "filament/Polymaker/PolyLite CosPLA @BBL P1P.json" - }, - { - "name": "PolyLite CosPLA @BBL X1", - "sub_path": "filament/Polymaker/PolyLite CosPLA @BBL X1.json" - }, { "name": "PolyLite PLA @BBL A1", "sub_path": "filament/Polymaker/PolyLite PLA @BBL A1.json" @@ -8913,142 +6945,6 @@ "name": "PolyLite PLA @BBL X1C", "sub_path": "filament/Polymaker/PolyLite PLA @BBL X1C.json" }, - { - "name": "PolyLite PLA Galaxy @BBL A1", - "sub_path": "filament/Polymaker/PolyLite PLA Galaxy @BBL A1.json" - }, - { - "name": "PolyLite PLA Galaxy @BBL A1M", - "sub_path": "filament/Polymaker/PolyLite PLA Galaxy @BBL A1M.json" - }, - { - "name": "PolyLite PLA Galaxy @BBL P1P", - "sub_path": "filament/Polymaker/PolyLite PLA Galaxy @BBL P1P.json" - }, - { - "name": "PolyLite PLA Galaxy @BBL X1", - "sub_path": "filament/Polymaker/PolyLite PLA Galaxy @BBL X1.json" - }, - { - "name": "PolyLite PLA Glow @BBL A1", - "sub_path": "filament/Polymaker/PolyLite PLA Glow @BBL A1.json" - }, - { - "name": "PolyLite PLA Glow @BBL A1M", - "sub_path": "filament/Polymaker/PolyLite PLA Glow @BBL A1M.json" - }, - { - "name": "PolyLite PLA Glow @BBL P1P", - "sub_path": "filament/Polymaker/PolyLite PLA Glow @BBL P1P.json" - }, - { - "name": "PolyLite PLA Glow @BBL X1", - "sub_path": "filament/Polymaker/PolyLite PLA Glow @BBL X1.json" - }, - { - "name": "PolyLite PLA Luminous @BBL A1", - "sub_path": "filament/Polymaker/PolyLite PLA Luminous @BBL A1.json" - }, - { - "name": "PolyLite PLA Luminous @BBL A1M", - "sub_path": "filament/Polymaker/PolyLite PLA Luminous @BBL A1M.json" - }, - { - "name": "PolyLite PLA Luminous @BBL P1P", - "sub_path": "filament/Polymaker/PolyLite PLA Luminous @BBL P1P.json" - }, - { - "name": "PolyLite PLA Luminous @BBL X1", - "sub_path": "filament/Polymaker/PolyLite PLA Luminous @BBL X1.json" - }, - { - "name": "PolyLite PLA Neon @BBL A1", - "sub_path": "filament/Polymaker/PolyLite PLA Neon @BBL A1.json" - }, - { - "name": "PolyLite PLA Neon @BBL A1M", - "sub_path": "filament/Polymaker/PolyLite PLA Neon @BBL A1M.json" - }, - { - "name": "PolyLite PLA Neon @BBL P1P", - "sub_path": "filament/Polymaker/PolyLite PLA Neon @BBL P1P.json" - }, - { - "name": "PolyLite PLA Neon @BBL X1", - "sub_path": "filament/Polymaker/PolyLite PLA Neon @BBL X1.json" - }, - { - "name": "PolyLite PLA Pro @BBL A1", - "sub_path": "filament/Polymaker/PolyLite PLA Pro @BBL A1.json" - }, - { - "name": "PolyLite PLA Pro @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite PLA Pro @BBL A1 0.2 nozzle.json" - }, - { - "name": "PolyLite PLA Pro @BBL A1M", - "sub_path": "filament/Polymaker/PolyLite PLA Pro @BBL A1M.json" - }, - { - "name": "PolyLite PLA Pro @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite PLA Pro @BBL A1M 0.2 nozzle.json" - }, - { - "name": "PolyLite PLA Pro @BBL P1P", - "sub_path": "filament/Polymaker/PolyLite PLA Pro @BBL P1P.json" - }, - { - "name": "PolyLite PLA Pro @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite PLA Pro @BBL P1P 0.2 nozzle.json" - }, - { - "name": "PolyLite PLA Pro @BBL X1", - "sub_path": "filament/Polymaker/PolyLite PLA Pro @BBL X1.json" - }, - { - "name": "PolyLite PLA Pro @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite PLA Pro @BBL X1 0.2 nozzle.json" - }, - { - "name": "PolyLite PLA Pro @BBL X1C", - "sub_path": "filament/Polymaker/PolyLite PLA Pro @BBL X1C.json" - }, - { - "name": "PolyLite PLA Pro @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite PLA Pro @BBL X1C 0.2 nozzle.json" - }, - { - "name": "PolyLite PLA Starlight @BBL A1", - "sub_path": "filament/Polymaker/PolyLite PLA Starlight @BBL A1.json" - }, - { - "name": "PolyLite PLA Starlight @BBL A1M", - "sub_path": "filament/Polymaker/PolyLite PLA Starlight @BBL A1M.json" - }, - { - "name": "PolyLite PLA Starlight @BBL P1P", - "sub_path": "filament/Polymaker/PolyLite PLA Starlight @BBL P1P.json" - }, - { - "name": "PolyLite PLA Starlight @BBL X1", - "sub_path": "filament/Polymaker/PolyLite PLA Starlight @BBL X1.json" - }, - { - "name": "PolyLite PLA Translucent @BBL A1", - "sub_path": "filament/Polymaker/PolyLite PLA Translucent @BBL A1.json" - }, - { - "name": "PolyLite PLA Translucent @BBL A1M", - "sub_path": "filament/Polymaker/PolyLite PLA Translucent @BBL A1M.json" - }, - { - "name": "PolyLite PLA Translucent @BBL P1P", - "sub_path": "filament/Polymaker/PolyLite PLA Translucent @BBL P1P.json" - }, - { - "name": "PolyLite PLA Translucent @BBL X1", - "sub_path": "filament/Polymaker/PolyLite PLA Translucent @BBL X1.json" - }, { "name": "PolyTerra PLA @BBL A1", "sub_path": "filament/Polymaker/PolyTerra PLA @BBL A1.json" @@ -9101,118 +6997,6 @@ "name": "PolyTerra PLA @BBL X1C", "sub_path": "filament/Polymaker/PolyTerra PLA @BBL X1C.json" }, - { - "name": "PolyTerra PLA Marble @BBL A1", - "sub_path": "filament/Polymaker/PolyTerra PLA Marble @BBL A1.json" - }, - { - "name": "PolyTerra PLA Marble @BBL A1M", - "sub_path": "filament/Polymaker/PolyTerra PLA Marble @BBL A1M.json" - }, - { - "name": "PolyTerra PLA Marble @BBL P1P", - "sub_path": "filament/Polymaker/PolyTerra PLA Marble @BBL P1P.json" - }, - { - "name": "PolyTerra PLA Marble @BBL X1", - "sub_path": "filament/Polymaker/PolyTerra PLA Marble @BBL X1.json" - }, - { - "name": "PolyTerra PLA+ @BBL A1", - "sub_path": "filament/Polymaker/PolyTerra PLA+ @BBL A1.json" - }, - { - "name": "PolyTerra PLA+ @BBL A1M", - "sub_path": "filament/Polymaker/PolyTerra PLA+ @BBL A1M.json" - }, - { - "name": "PolyTerra PLA+ @BBL P1P", - "sub_path": "filament/Polymaker/PolyTerra PLA+ @BBL P1P.json" - }, - { - "name": "PolyTerra PLA+ @BBL X1", - "sub_path": "filament/Polymaker/PolyTerra PLA+ @BBL X1.json" - }, - { - "name": "Polymaker HT-PLA @BBL A1", - "sub_path": "filament/Polymaker/Polymaker HT-PLA @BBL A1.json" - }, - { - "name": "Polymaker HT-PLA @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Polymaker HT-PLA @BBL A1 0.2 nozzle.json" - }, - { - "name": "Polymaker HT-PLA @BBL A1M", - "sub_path": "filament/Polymaker/Polymaker HT-PLA @BBL A1M.json" - }, - { - "name": "Polymaker HT-PLA @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Polymaker HT-PLA @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Polymaker HT-PLA @BBL P1P", - "sub_path": "filament/Polymaker/Polymaker HT-PLA @BBL P1P.json" - }, - { - "name": "Polymaker HT-PLA @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Polymaker HT-PLA @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Polymaker HT-PLA @BBL X1", - "sub_path": "filament/Polymaker/Polymaker HT-PLA @BBL X1.json" - }, - { - "name": "Polymaker HT-PLA @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Polymaker HT-PLA @BBL X1 0.2 nozzle.json" - }, - { - "name": "Polymaker HT-PLA @BBL X1C", - "sub_path": "filament/Polymaker/Polymaker HT-PLA @BBL X1C.json" - }, - { - "name": "Polymaker HT-PLA @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Polymaker HT-PLA @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Polymaker HT-PLA-GF @BBL A1", - "sub_path": "filament/Polymaker/Polymaker HT-PLA-GF @BBL A1.json" - }, - { - "name": "Polymaker HT-PLA-GF @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/Polymaker HT-PLA-GF @BBL A1 0.2 nozzle.json" - }, - { - "name": "Polymaker HT-PLA-GF @BBL A1M", - "sub_path": "filament/Polymaker/Polymaker HT-PLA-GF @BBL A1M.json" - }, - { - "name": "Polymaker HT-PLA-GF @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/Polymaker HT-PLA-GF @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Polymaker HT-PLA-GF @BBL P1P", - "sub_path": "filament/Polymaker/Polymaker HT-PLA-GF @BBL P1P.json" - }, - { - "name": "Polymaker HT-PLA-GF @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/Polymaker HT-PLA-GF @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Polymaker HT-PLA-GF @BBL X1", - "sub_path": "filament/Polymaker/Polymaker HT-PLA-GF @BBL X1.json" - }, - { - "name": "Polymaker HT-PLA-GF @BBL X1 0.2 nozzle", - "sub_path": "filament/Polymaker/Polymaker HT-PLA-GF @BBL X1 0.2 nozzle.json" - }, - { - "name": "Polymaker HT-PLA-GF @BBL X1C", - "sub_path": "filament/Polymaker/Polymaker HT-PLA-GF @BBL X1C.json" - }, - { - "name": "Polymaker HT-PLA-GF @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Polymaker HT-PLA-GF @BBL X1C 0.2 nozzle.json" - }, { "name": "SUNLU PLA Marble @BBL A1", "sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL A1.json" @@ -9933,106 +7717,6 @@ "name": "Generic SBS", "sub_path": "filament/Generic SBS.json" }, - { - "name": "BETA PEBA 90A @BBL A1", - "sub_path": "filament/BETA/BETA PEBA 90A @BBL A1.json" - }, - { - "name": "BETA PEBA 90A @BBL A1M", - "sub_path": "filament/BETA/BETA PEBA 90A @BBL A1M.json" - }, - { - "name": "BETA PEBA 90A @BBL H2D", - "sub_path": "filament/BETA/BETA PEBA 90A @BBL H2D.json" - }, - { - "name": "BETA PEBA 90A @BBL P1P", - "sub_path": "filament/BETA/BETA PEBA 90A @BBL P1P.json" - }, - { - "name": "BETA PEBA 90A @BBL X1C", - "sub_path": "filament/BETA/BETA PEBA 90A @BBL X1C.json" - }, - { - "name": "BETA TPU 90A @BBL A1", - "sub_path": "filament/BETA/BETA TPU 90A @BBL A1.json" - }, - { - "name": "BETA TPU 90A @BBL A1M", - "sub_path": "filament/BETA/BETA TPU 90A @BBL A1M.json" - }, - { - "name": "BETA TPU 90A @BBL H2D", - "sub_path": "filament/BETA/BETA TPU 90A @BBL H2D.json" - }, - { - "name": "BETA TPU 90A @BBL P1P", - "sub_path": "filament/BETA/BETA TPU 90A @BBL P1P.json" - }, - { - "name": "BETA TPU 90A @BBL X1C", - "sub_path": "filament/BETA/BETA TPU 90A @BBL X1C.json" - }, - { - "name": "BETA TPU 95A @BBL A1", - "sub_path": "filament/BETA/BETA TPU 95A @BBL A1.json" - }, - { - "name": "BETA TPU 95A @BBL A1M", - "sub_path": "filament/BETA/BETA TPU 95A @BBL A1M.json" - }, - { - "name": "BETA TPU 95A @BBL H2D", - "sub_path": "filament/BETA/BETA TPU 95A @BBL H2D.json" - }, - { - "name": "BETA TPU 95A @BBL P1P", - "sub_path": "filament/BETA/BETA TPU 95A @BBL P1P.json" - }, - { - "name": "BETA TPU 95A @BBL X1C", - "sub_path": "filament/BETA/BETA TPU 95A @BBL X1C.json" - }, - { - "name": "BETA TPU 98A @BBL A1", - "sub_path": "filament/BETA/BETA TPU 98A @BBL A1.json" - }, - { - "name": "BETA TPU 98A @BBL A1M", - "sub_path": "filament/BETA/BETA TPU 98A @BBL A1M.json" - }, - { - "name": "BETA TPU 98A @BBL H2D", - "sub_path": "filament/BETA/BETA TPU 98A @BBL H2D.json" - }, - { - "name": "BETA TPU 98A @BBL P1P", - "sub_path": "filament/BETA/BETA TPU 98A @BBL P1P.json" - }, - { - "name": "BETA TPU 98A @BBL X1C", - "sub_path": "filament/BETA/BETA TPU 98A @BBL X1C.json" - }, - { - "name": "BETA TPU Matte @BBL A1", - "sub_path": "filament/BETA/BETA TPU Matte @BBL A1.json" - }, - { - "name": "BETA TPU Matte @BBL A1M", - "sub_path": "filament/BETA/BETA TPU Matte @BBL A1M.json" - }, - { - "name": "BETA TPU Matte @BBL H2D", - "sub_path": "filament/BETA/BETA TPU Matte @BBL H2D.json" - }, - { - "name": "BETA TPU Matte @BBL P1P", - "sub_path": "filament/BETA/BETA TPU Matte @BBL P1P.json" - }, - { - "name": "BETA TPU Matte @BBL X1C", - "sub_path": "filament/BETA/BETA TPU Matte @BBL X1C.json" - }, { "name": "Bambu TPU 85A @BBL A2L 0.6 nozzle", "sub_path": "filament/Bambu TPU 85A @BBL A2L 0.6 nozzle.json" @@ -10417,18 +8101,6 @@ "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" @@ -10725,558 +8397,6 @@ "name": "Generic TPU @BBL H2S", "sub_path": "filament/Generic TPU @BBL H2S.json" }, - { - "name": "AliZ PA-CF @P1-X1", - "sub_path": "filament/AliZ/AliZ PA-CF @P1-X1.json" - }, - { - "name": "AliZ PETG @P1-X1", - "sub_path": "filament/AliZ/AliZ PETG @P1-X1.json" - }, - { - "name": "AliZ PETG-CF @P1-X1", - "sub_path": "filament/AliZ/AliZ PETG-CF @P1-X1.json" - }, - { - "name": "AliZ PETG-Metal @P1-X1", - "sub_path": "filament/AliZ/AliZ PETG-Metal @P1-X1.json" - }, - { - "name": "AliZ PLA @P1-X1", - "sub_path": "filament/AliZ/AliZ PLA @P1-X1.json" - }, - { - "name": "COEX ABS @BBL X1", - "sub_path": "filament/COEX/COEX ABS @BBL X1.json" - }, - { - "name": "COEX ABS @BBL X1 0.2 nozzle", - "sub_path": "filament/COEX/COEX ABS @BBL X1 0.2 nozzle.json" - }, - { - "name": "COEX ABS @BBL X1C", - "sub_path": "filament/COEX/COEX ABS @BBL X1C.json" - }, - { - "name": "COEX ABS @BBL X1C 0.2 nozzle", - "sub_path": "filament/COEX/COEX ABS @BBL X1C 0.2 nozzle.json" - }, - { - "name": "COEX ABS PRIME @BBL X1", - "sub_path": "filament/COEX/COEX ABS PRIME @BBL X1.json" - }, - { - "name": "COEX ABS PRIME @BBL X1 0.2 nozzle", - "sub_path": "filament/COEX/COEX ABS PRIME @BBL X1 0.2 nozzle.json" - }, - { - "name": "COEX ABS PRIME @BBL X1C", - "sub_path": "filament/COEX/COEX ABS PRIME @BBL X1C.json" - }, - { - "name": "COEX ABS PRIME @BBL X1C 0.2 nozzle", - "sub_path": "filament/COEX/COEX ABS PRIME @BBL X1C 0.2 nozzle.json" - }, - { - "name": "COEX ASA PRIME @BBL X1", - "sub_path": "filament/COEX/COEX ASA PRIME @BBL X1.json" - }, - { - "name": "COEX ASA PRIME @BBL X1 0.2 nozzle", - "sub_path": "filament/COEX/COEX ASA PRIME @BBL X1 0.2 nozzle.json" - }, - { - "name": "COEX ASA PRIME @BBL X1C", - "sub_path": "filament/COEX/COEX ASA PRIME @BBL X1C.json" - }, - { - "name": "COEX ASA PRIME @BBL X1C 0.2 nozzle", - "sub_path": "filament/COEX/COEX ASA PRIME @BBL X1C 0.2 nozzle.json" - }, - { - "name": "COEX NYLEX PA6-CF @BBL X1C", - "sub_path": "filament/COEX/COEX NYLEX PA6-CF @BBL X1C.json" - }, - { - "name": "COEX NYLEX UNFILLED @BBL X1C", - "sub_path": "filament/COEX/COEX NYLEX UNFILLED @BBL X1C.json" - }, - { - "name": "COEX PCTG PRIME @BBL A1", - "sub_path": "filament/COEX/COEX PCTG PRIME @BBL A1.json" - }, - { - "name": "COEX PCTG PRIME @BBL A1 0.2 nozzle", - "sub_path": "filament/COEX/COEX PCTG PRIME @BBL A1 0.2 nozzle.json" - }, - { - "name": "COEX PCTG PRIME @BBL A1 0.8 nozzle", - "sub_path": "filament/COEX/COEX PCTG PRIME @BBL A1 0.8 nozzle.json" - }, - { - "name": "COEX PETG @BBL A1", - "sub_path": "filament/COEX/COEX PETG @BBL A1.json" - }, - { - "name": "COEX PETG @BBL A1 0.2 nozzle", - "sub_path": "filament/COEX/COEX PETG @BBL A1 0.2 nozzle.json" - }, - { - "name": "COEX PETG @BBL A1 0.8 nozzle", - "sub_path": "filament/COEX/COEX PETG @BBL A1 0.8 nozzle.json" - }, - { - "name": "COEX PLA @BBL A1", - "sub_path": "filament/COEX/COEX PLA @BBL A1.json" - }, - { - "name": "COEX PLA @BBL A1 0.2 nozzle", - "sub_path": "filament/COEX/COEX PLA @BBL A1 0.2 nozzle.json" - }, - { - "name": "COEX PLA @BBL X1", - "sub_path": "filament/COEX/COEX PLA @BBL X1.json" - }, - { - "name": "COEX PLA PRIME @BBL A1", - "sub_path": "filament/COEX/COEX PLA PRIME @BBL A1.json" - }, - { - "name": "COEX PLA PRIME @BBL A1 0.2 nozzle", - "sub_path": "filament/COEX/COEX PLA PRIME @BBL A1 0.2 nozzle.json" - }, - { - "name": "COEX PLA PRIME @BBL A1M", - "sub_path": "filament/COEX/COEX PLA PRIME @BBL A1M.json" - }, - { - "name": "COEX PLA PRIME @BBL A1M 0.2 nozzle", - "sub_path": "filament/COEX/COEX PLA PRIME @BBL A1M 0.2 nozzle.json" - }, - { - "name": "COEX PLA PRIME @BBL P1P", - "sub_path": "filament/COEX/COEX PLA PRIME @BBL P1P.json" - }, - { - "name": "COEX PLA PRIME @BBL P1P 0.2 nozzle", - "sub_path": "filament/COEX/COEX PLA PRIME @BBL P1P 0.2 nozzle.json" - }, - { - "name": "COEX PLA PRIME @BBL X1", - "sub_path": "filament/COEX/COEX PLA PRIME @BBL X1.json" - }, - { - "name": "COEX PLA PRIME @BBL X1 0.2 nozzle", - "sub_path": "filament/COEX/COEX PLA PRIME @BBL X1 0.2 nozzle.json" - }, - { - "name": "COEX PLA PRIME @BBL X1C", - "sub_path": "filament/COEX/COEX PLA PRIME @BBL X1C.json" - }, - { - "name": "COEX PLA PRIME @BBL X1C 0.2 nozzle", - "sub_path": "filament/COEX/COEX PLA PRIME @BBL X1C 0.2 nozzle.json" - }, - { - "name": "COEX PLA+Silk @BBL A1", - "sub_path": "filament/COEX/COEX PLA+Silk @BBL A1.json" - }, - { - "name": "COEX PLA+Silk @BBL A1 0.2 nozzle", - "sub_path": "filament/COEX/COEX PLA+Silk @BBL A1 0.2 nozzle.json" - }, - { - "name": "COEX PLA+Silk @BBL A1M", - "sub_path": "filament/COEX/COEX PLA+Silk @BBL A1M.json" - }, - { - "name": "COEX PLA+Silk @BBL A1M 0.2 nozzle", - "sub_path": "filament/COEX/COEX PLA+Silk @BBL A1M 0.2 nozzle.json" - }, - { - "name": "COEX PLA+Silk @BBL P1P", - "sub_path": "filament/COEX/COEX PLA+Silk @BBL P1P.json" - }, - { - "name": "COEX PLA+Silk @BBL P1P 0.2 nozzle", - "sub_path": "filament/COEX/COEX PLA+Silk @BBL P1P 0.2 nozzle.json" - }, - { - "name": "COEX PLA+Silk @BBL X1", - "sub_path": "filament/COEX/COEX PLA+Silk @BBL X1.json" - }, - { - "name": "COEX PLA+Silk @BBL X1 0.2 nozzle", - "sub_path": "filament/COEX/COEX PLA+Silk @BBL X1 0.2 nozzle.json" - }, - { - "name": "COEX PLA+Silk @BBL X1C", - "sub_path": "filament/COEX/COEX PLA+Silk @BBL X1C.json" - }, - { - "name": "COEX PLA+Silk @BBL X1C 0.2 nozzle", - "sub_path": "filament/COEX/COEX PLA+Silk @BBL X1C 0.2 nozzle.json" - }, - { - "name": "COEX TPE 30D @BBL A1", - "sub_path": "filament/COEX/COEX TPE 30D @BBL A1.json" - }, - { - "name": "COEX TPE 30D @BBL A1M", - "sub_path": "filament/COEX/COEX TPE 30D @BBL A1M.json" - }, - { - "name": "COEX TPE 30D @BBL P1P", - "sub_path": "filament/COEX/COEX TPE 30D @BBL P1P.json" - }, - { - "name": "COEX TPE 30D @BBL X1", - "sub_path": "filament/COEX/COEX TPE 30D @BBL X1.json" - }, - { - "name": "COEX TPE 30D @BBL X1C", - "sub_path": "filament/COEX/COEX TPE 30D @BBL X1C.json" - }, - { - "name": "COEX TPE 40D @BBL A1", - "sub_path": "filament/COEX/COEX TPE 40D @BBL A1.json" - }, - { - "name": "COEX TPE 40D @BBL A1 0.2 nozzle", - "sub_path": "filament/COEX/COEX TPE 40D @BBL A1 0.2 nozzle.json" - }, - { - "name": "COEX TPE 40D @BBL A1M", - "sub_path": "filament/COEX/COEX TPE 40D @BBL A1M.json" - }, - { - "name": "COEX TPE 40D @BBL A1M 0.2 nozzle", - "sub_path": "filament/COEX/COEX TPE 40D @BBL A1M 0.2 nozzle.json" - }, - { - "name": "COEX TPE 40D @BBL P1P", - "sub_path": "filament/COEX/COEX TPE 40D @BBL P1P.json" - }, - { - "name": "COEX TPE 40D @BBL P1P 0.2 nozzle", - "sub_path": "filament/COEX/COEX TPE 40D @BBL P1P 0.2 nozzle.json" - }, - { - "name": "COEX TPE 40D @BBL X1", - "sub_path": "filament/COEX/COEX TPE 40D @BBL X1.json" - }, - { - "name": "COEX TPE 40D @BBL X1 0.2 nozzle", - "sub_path": "filament/COEX/COEX TPE 40D @BBL X1 0.2 nozzle.json" - }, - { - "name": "COEX TPE 40D @BBL X1C", - "sub_path": "filament/COEX/COEX TPE 40D @BBL X1C.json" - }, - { - "name": "COEX TPE 40D @BBL X1C 0.2 nozzle", - "sub_path": "filament/COEX/COEX TPE 40D @BBL X1C 0.2 nozzle.json" - }, - { - "name": "COEX TPE 60D @BBL A1", - "sub_path": "filament/COEX/COEX TPE 60D @BBL A1.json" - }, - { - "name": "COEX TPE 60D @BBL A1 0.2 nozzle", - "sub_path": "filament/COEX/COEX TPE 60D @BBL A1 0.2 nozzle.json" - }, - { - "name": "COEX TPE 60D @BBL A1M", - "sub_path": "filament/COEX/COEX TPE 60D @BBL A1M.json" - }, - { - "name": "COEX TPE 60D @BBL A1M 0.2 nozzle", - "sub_path": "filament/COEX/COEX TPE 60D @BBL A1M 0.2 nozzle.json" - }, - { - "name": "COEX TPE 60D @BBL P1P", - "sub_path": "filament/COEX/COEX TPE 60D @BBL P1P.json" - }, - { - "name": "COEX TPE 60D @BBL P1P 0.2 nozzle", - "sub_path": "filament/COEX/COEX TPE 60D @BBL P1P 0.2 nozzle.json" - }, - { - "name": "COEX TPE 60D @BBL X1", - "sub_path": "filament/COEX/COEX TPE 60D @BBL X1.json" - }, - { - "name": "COEX TPE 60D @BBL X1 0.2 nozzle", - "sub_path": "filament/COEX/COEX TPE 60D @BBL X1 0.2 nozzle.json" - }, - { - "name": "COEX TPE 60D @BBL X1C", - "sub_path": "filament/COEX/COEX TPE 60D @BBL X1C.json" - }, - { - "name": "COEX TPE 60D @BBL X1C 0.2 nozzle", - "sub_path": "filament/COEX/COEX TPE 60D @BBL X1C 0.2 nozzle.json" - }, - { - "name": "COEX TPU 60A @BBL X1C", - "sub_path": "filament/COEX/COEX TPU 60A @BBL X1C.json" - }, - { - "name": "Overture ASA @BBL X1", - "sub_path": "filament/Overture/Overture ASA @BBL X1.json" - }, - { - "name": "Overture ASA @BBL X1 0.2 nozzle", - "sub_path": "filament/Overture/Overture ASA @BBL X1 0.2 nozzle.json" - }, - { - "name": "Overture ASA @BBL X1C", - "sub_path": "filament/Overture/Overture ASA @BBL X1C.json" - }, - { - "name": "Overture ASA @BBL X1C 0.2 nozzle", - "sub_path": "filament/Overture/Overture ASA @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Overture Air PLA @BBL A1", - "sub_path": "filament/Overture/Overture Air PLA @BBL A1.json" - }, - { - "name": "Overture Air PLA @BBL A1 0.2 nozzle", - "sub_path": "filament/Overture/Overture Air PLA @BBL A1 0.2 nozzle.json" - }, - { - "name": "Overture Air PLA @BBL A1M", - "sub_path": "filament/Overture/Overture Air PLA @BBL A1M.json" - }, - { - "name": "Overture Air PLA @BBL A1M 0.2 nozzle", - "sub_path": "filament/Overture/Overture Air PLA @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Overture Air PLA @BBL P1P", - "sub_path": "filament/Overture/Overture Air PLA @BBL P1P.json" - }, - { - "name": "Overture Air PLA @BBL P1P 0.2 nozzle", - "sub_path": "filament/Overture/Overture Air PLA @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Overture Air PLA @BBL X1", - "sub_path": "filament/Overture/Overture Air PLA @BBL X1.json" - }, - { - "name": "Overture Air PLA @BBL X1 0.2 nozzle", - "sub_path": "filament/Overture/Overture Air PLA @BBL X1 0.2 nozzle.json" - }, - { - "name": "Overture Air PLA @BBL X1C", - "sub_path": "filament/Overture/Overture Air PLA @BBL X1C.json" - }, - { - "name": "Overture Air PLA @BBL X1C 0.2 nozzle", - "sub_path": "filament/Overture/Overture Air PLA @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Overture Easy PLA @BBL A1", - "sub_path": "filament/Overture/Overture Easy PLA @BBL A1.json" - }, - { - "name": "Overture Easy PLA @BBL A1 0.2 nozzle", - "sub_path": "filament/Overture/Overture Easy PLA @BBL A1 0.2 nozzle.json" - }, - { - "name": "Overture Easy PLA @BBL A1M", - "sub_path": "filament/Overture/Overture Easy PLA @BBL A1M.json" - }, - { - "name": "Overture Easy PLA @BBL A1M 0.2 nozzle", - "sub_path": "filament/Overture/Overture Easy PLA @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Overture Easy PLA @BBL P1P", - "sub_path": "filament/Overture/Overture Easy PLA @BBL P1P.json" - }, - { - "name": "Overture Easy PLA @BBL P1P 0.2 nozzle", - "sub_path": "filament/Overture/Overture Easy PLA @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Overture Easy PLA @BBL X1", - "sub_path": "filament/Overture/Overture Easy PLA @BBL X1.json" - }, - { - "name": "Overture Easy PLA @BBL X1 0.2 nozzle", - "sub_path": "filament/Overture/Overture Easy PLA @BBL X1 0.2 nozzle.json" - }, - { - "name": "Overture Easy PLA @BBL X1C", - "sub_path": "filament/Overture/Overture Easy PLA @BBL X1C.json" - }, - { - "name": "Overture Easy PLA @BBL X1C 0.2 nozzle", - "sub_path": "filament/Overture/Overture Easy PLA @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Overture Rock PLA @BBL A1", - "sub_path": "filament/Overture/Overture Rock PLA @BBL A1.json" - }, - { - "name": "Overture Rock PLA @BBL A1 0.2 nozzle", - "sub_path": "filament/Overture/Overture Rock PLA @BBL A1 0.2 nozzle.json" - }, - { - "name": "Overture Rock PLA @BBL A1M", - "sub_path": "filament/Overture/Overture Rock PLA @BBL A1M.json" - }, - { - "name": "Overture Rock PLA @BBL A1M 0.2 nozzle", - "sub_path": "filament/Overture/Overture Rock PLA @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Overture Rock PLA @BBL P1P", - "sub_path": "filament/Overture/Overture Rock PLA @BBL P1P.json" - }, - { - "name": "Overture Rock PLA @BBL P1P 0.2 nozzle", - "sub_path": "filament/Overture/Overture Rock PLA @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Overture Rock PLA @BBL X1", - "sub_path": "filament/Overture/Overture Rock PLA @BBL X1.json" - }, - { - "name": "Overture Rock PLA @BBL X1 0.2 nozzle", - "sub_path": "filament/Overture/Overture Rock PLA @BBL X1 0.2 nozzle.json" - }, - { - "name": "Overture Rock PLA @BBL X1C", - "sub_path": "filament/Overture/Overture Rock PLA @BBL X1C.json" - }, - { - "name": "Overture Rock PLA @BBL X1C 0.2 nozzle", - "sub_path": "filament/Overture/Overture Rock PLA @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Overture Silk PLA @BBL A1", - "sub_path": "filament/Overture/Overture Silk PLA @BBL A1.json" - }, - { - "name": "Overture Silk PLA @BBL A1 0.2 nozzle", - "sub_path": "filament/Overture/Overture Silk PLA @BBL A1 0.2 nozzle.json" - }, - { - "name": "Overture Silk PLA @BBL A1M", - "sub_path": "filament/Overture/Overture Silk PLA @BBL A1M.json" - }, - { - "name": "Overture Silk PLA @BBL A1M 0.2 nozzle", - "sub_path": "filament/Overture/Overture Silk PLA @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Overture Silk PLA @BBL P1P", - "sub_path": "filament/Overture/Overture Silk PLA @BBL P1P.json" - }, - { - "name": "Overture Silk PLA @BBL P1P 0.2 nozzle", - "sub_path": "filament/Overture/Overture Silk PLA @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Overture Silk PLA @BBL X1", - "sub_path": "filament/Overture/Overture Silk PLA @BBL X1.json" - }, - { - "name": "Overture Silk PLA @BBL X1 0.2 nozzle", - "sub_path": "filament/Overture/Overture Silk PLA @BBL X1 0.2 nozzle.json" - }, - { - "name": "Overture Silk PLA @BBL X1C", - "sub_path": "filament/Overture/Overture Silk PLA @BBL X1C.json" - }, - { - "name": "Overture Silk PLA @BBL X1C 0.2 nozzle", - "sub_path": "filament/Overture/Overture Silk PLA @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Overture Super PLA+ @BBL A1", - "sub_path": "filament/Overture/Overture Super PLA+ @BBL A1.json" - }, - { - "name": "Overture Super PLA+ @BBL A1 0.2 nozzle", - "sub_path": "filament/Overture/Overture Super PLA+ @BBL A1 0.2 nozzle.json" - }, - { - "name": "Overture Super PLA+ @BBL A1M", - "sub_path": "filament/Overture/Overture Super PLA+ @BBL A1M.json" - }, - { - "name": "Overture Super PLA+ @BBL A1M 0.2 nozzle", - "sub_path": "filament/Overture/Overture Super PLA+ @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Overture Super PLA+ @BBL P1P", - "sub_path": "filament/Overture/Overture Super PLA+ @BBL P1P.json" - }, - { - "name": "Overture Super PLA+ @BBL P1P 0.2 nozzle", - "sub_path": "filament/Overture/Overture Super PLA+ @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Overture Super PLA+ @BBL X1", - "sub_path": "filament/Overture/Overture Super PLA+ @BBL X1.json" - }, - { - "name": "Overture Super PLA+ @BBL X1 0.2 nozzle", - "sub_path": "filament/Overture/Overture Super PLA+ @BBL X1 0.2 nozzle.json" - }, - { - "name": "Overture Super PLA+ @BBL X1C", - "sub_path": "filament/Overture/Overture Super PLA+ @BBL X1C.json" - }, - { - "name": "Overture Super PLA+ @BBL X1C 0.2 nozzle", - "sub_path": "filament/Overture/Overture Super PLA+ @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Overture TPU @BBL A1", - "sub_path": "filament/Overture/Overture TPU @BBL A1.json" - }, - { - "name": "Overture TPU @BBL A1 0.2 nozzle", - "sub_path": "filament/Overture/Overture TPU @BBL A1 0.2 nozzle.json" - }, - { - "name": "Overture TPU @BBL A1M", - "sub_path": "filament/Overture/Overture TPU @BBL A1M.json" - }, - { - "name": "Overture TPU @BBL A1M 0.2 nozzle", - "sub_path": "filament/Overture/Overture TPU @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Overture TPU @BBL P1P", - "sub_path": "filament/Overture/Overture TPU @BBL P1P.json" - }, - { - "name": "Overture TPU @BBL P1P 0.2 nozzle", - "sub_path": "filament/Overture/Overture TPU @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Overture TPU @BBL X1", - "sub_path": "filament/Overture/Overture TPU @BBL X1.json" - }, - { - "name": "Overture TPU @BBL X1 0.2 nozzle", - "sub_path": "filament/Overture/Overture TPU @BBL X1 0.2 nozzle.json" - }, - { - "name": "Overture TPU @BBL X1C", - "sub_path": "filament/Overture/Overture TPU @BBL X1C.json" - }, - { - "name": "Overture TPU @BBL X1C 0.2 nozzle", - "sub_path": "filament/Overture/Overture TPU @BBL X1C 0.2 nozzle.json" - }, { "name": "fdm_filament_dual_common", "sub_path": "filament/fdm_filament_dual_common.json" diff --git a/resources/profiles/BBL/filament/BETA/BETA ABS @base.json b/resources/profiles/BBL/filament/BETA/BETA ABS @base.json deleted file mode 100644 index bbed068703..0000000000 --- a/resources/profiles/BBL/filament/BETA/BETA ABS @base.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "type": "filament", - "name": "BETA ABS @base", - "inherits": "fdm_filament_abs", - "from": "system", - "filament_id": "OFjUXn67", - "instantiation": "false", - "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.", - "filament_cost": [ - "24.99" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_vendor": [ - "BETA" - ], - "impact_strength_z": [ - "7.4" - ] -} diff --git a/resources/profiles/BBL/filament/BETA/BETA HIPS @base.json b/resources/profiles/BBL/filament/BETA/BETA HIPS @base.json deleted file mode 100644 index 4d244f9fe1..0000000000 --- a/resources/profiles/BBL/filament/BETA/BETA HIPS @base.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "filament", - "name": "BETA HIPS @base", - "inherits": "fdm_filament_hips", - "from": "system", - "filament_id": "OFlmxlDG", - "instantiation": "false", - "filament_is_support": [ - "1" - ], - "filament_vendor": [ - "BETA" - ] -} diff --git a/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @base.json b/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @base.json deleted file mode 100644 index 1c140e3720..0000000000 --- a/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @base.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "type": "filament", - "name": "BETA PAHT-CF @base", - "inherits": "fdm_filament_pa", - "from": "system", - "filament_id": "OF6qw3Wb", - "instantiation": "false", - "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", - "fan_cooling_layer_time": [ - "5" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "10" - ], - "filament_cost": [ - "94.99" - ], - "filament_density": [ - "1.06" - ], - "filament_flow_ratio": [ - "0.96" - ], - "filament_type": [ - "PA-CF" - ], - "filament_vendor": [ - "BETA" - ], - "full_fan_speed_layer": [ - "2" - ], - "impact_strength_z": [ - "13.3" - ], - "overhang_fan_speed": [ - "40" - ], - "overhang_fan_threshold": [ - "0%" - ], - "temperature_vitrification": [ - "180" - ] -} diff --git a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @base.json b/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @base.json deleted file mode 100644 index fe1d3cd5b6..0000000000 --- a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @base.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "type": "filament", - "name": "BETA PEBA 90A @base", - "inherits": "fdm_filament_tpu", - "from": "system", - "filament_id": "OFI2MKy7", - "instantiation": "false", - "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.", - "filament_cost": [ - "59.99" - ], - "filament_max_volumetric_speed": [ - "2.8" - ], - "filament_vendor": [ - "BETA" - ], - "impact_strength_z": [ - "87.3" - ], - "nozzle_temperature": [ - "225" - ], - "nozzle_temperature_initial_layer": [ - "225" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "slow_down_layer_time": [ - "14" - ] -} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @base.json b/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @base.json deleted file mode 100644 index 7b93695099..0000000000 --- a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @base.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "filament", - "name": "BETA PLA High Speed @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OF3PDEw3", - "instantiation": "false", - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "slow_down_layer_time": [ - "8" - ], - "filament_vendor": [ - "BETA" - ] -} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @base.json b/resources/profiles/BBL/filament/BETA/BETA TPU 90A @base.json deleted file mode 100644 index bba256fd74..0000000000 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @base.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "type": "filament", - "name": "BETA TPU 90A @base", - "inherits": "fdm_filament_tpu", - "from": "system", - "filament_id": "OF6Yn69v", - "instantiation": "false", - "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.", - "filament_cost": [ - "59.99" - ], - "filament_max_volumetric_speed": [ - "2.8" - ], - "filament_vendor": [ - "BETA" - ], - "impact_strength_z": [ - "87.3" - ], - "nozzle_temperature": [ - "225" - ], - "nozzle_temperature_initial_layer": [ - "225" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "slow_down_layer_time": [ - "14" - ] -} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @base.json b/resources/profiles/BBL/filament/BETA/BETA TPU 95A @base.json deleted file mode 100644 index 87f7757c3f..0000000000 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @base.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "filament", - "name": "BETA TPU 95A @base", - "inherits": "fdm_filament_tpu", - "from": "system", - "filament_id": "OFK7830e", - "instantiation": "false", - "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.", - "filament_cost": [ - "41.99" - ], - "filament_density": [ - "1.22" - ], - "filament_vendor": [ - "BETA" - ], - "impact_strength_z": [ - "88.7" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ] -} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @base.json b/resources/profiles/BBL/filament/BETA/BETA TPU 98A @base.json deleted file mode 100644 index cd106a6bf6..0000000000 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @base.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "filament", - "name": "BETA TPU 98A @base", - "inherits": "fdm_filament_tpu", - "from": "system", - "filament_id": "OFzaq7Yg", - "instantiation": "false", - "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.", - "filament_cost": [ - "41.99" - ], - "filament_density": [ - "1.22" - ], - "filament_vendor": [ - "BETA" - ], - "impact_strength_z": [ - "88.7" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ] -} diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @base.json b/resources/profiles/BBL/filament/BETA/BETA TPU Matte @base.json deleted file mode 100644 index 272e9be1ed..0000000000 --- a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @base.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "type": "filament", - "name": "BETA TPU Matte @base", - "inherits": "fdm_filament_tpu", - "from": "system", - "filament_id": "OF4QZANi", - "instantiation": "false", - "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.", - "filament_cost": [ - "59.99" - ], - "filament_max_volumetric_speed": [ - "2.8" - ], - "filament_vendor": [ - "BETA" - ], - "impact_strength_z": [ - "87.3" - ], - "nozzle_temperature": [ - "225" - ], - "nozzle_temperature_initial_layer": [ - "225" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "slow_down_layer_time": [ - "14" - ] -} diff --git a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @base.json b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @base.json deleted file mode 100644 index 95a8fd47ea..0000000000 --- a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @base.json +++ /dev/null @@ -1,163 +0,0 @@ -{ - "type": "filament", - "name": "FusRock ABS-GF @base", - "inherits": "fdm_filament_common", - "from": "system", - "filament_id": "OFmn9NZL", - "instantiation": "false", - "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials(https://wiki.fusrock.com).", - "filament_extruder_variant": [ - "Direct Drive Standard" - ], - "filament_adhesiveness_category": [ - "200" - ], - "filament_type": [ - "ABS-GF" - ], - "filament_vendor": [ - "FusRock" - ], - "filament_flow_ratio": [ - "0.92" - ], - "filament_density": [ - "1.08" - ], - "filament_cost": [ - "13" - ], - "nozzle_temperature_range_low": [ - "240" - ], - "nozzle_temperature_range_high": [ - "280" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "cool_plate_temp": [ - "0" - ], - "supertack_plate_temp_initial_layer": [ - "0" - ], - "supertack_plate_temp": [ - "0" - ], - "eng_plate_temp_initial_layer": [ - "105" - ], - "eng_plate_temp": [ - "105" - ], - "hot_plate_temp_initial_layer": [ - "105" - ], - "hot_plate_temp": [ - "105" - ], - "textured_plate_temp_initial_layer": [ - "105" - ], - "textured_plate_temp": [ - "105" - ], - "nozzle_temperature_initial_layer": [ - "260" - ], - "nozzle_temperature": [ - "270" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "close_fan_the_first_x_layers": [ - "3" - ], - "fan_min_speed": [ - "10" - ], - "fan_cooling_layer_time": [ - "12" - ], - "fan_max_speed": [ - "30" - ], - "slow_down_layer_time": [ - "4" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "slow_down_for_layer_cooling": [ - "1" - ], - "slow_down_min_speed": [ - "20" - ], - "enable_overhang_bridge_fan": [ - "1" - ], - "overhang_fan_threshold": [ - "10%" - ], - "overhang_threshold_participating_cooling": [ - "100%" - ], - "overhang_fan_speed": [ - "30" - ], - "pre_start_fan_time": [ - "0" - ], - "additional_cooling_fan_speed": [ - "0" - ], - "activate_air_filtration": [ - "1" - ], - "during_print_exhaust_fan_speed": [ - "30" - ], - "complete_print_exhaust_fan_speed": [ - "10" - ], - "filament_retraction_length": [ - "0.8" - ], - "filament_z_hop": [ - "0.4" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "filament_retraction_speed": [ - "30" - ], - "filament_deretraction_speed": [ - "0" - ], - "filament_retraction_minimum_travel": [ - "2" - ], - "filament_retract_when_changing_layer": [ - "0" - ], - "filament_wipe": [ - "0" - ], - "filament_wipe_distance": [ - "2" - ], - "filament_retract_before_wipe": [ - "100%" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ], - "filament_notes": "//EN\n1.Be sure to read it carefully before using (https://wiki.fusrock.com).\n2.When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials(https://wiki.fusrock.com).\\n3.Thank you for choosing us FusRock.\n*This setting may not be able to adapt to all models. In some cases, you need to modify and adjust the parameters by yourself to improve the printing effect.\n*FusRock 3D printing filaments are intended for general-purpose printing and have been tested under standard conditions. However, the performance and safety of printed objects are affected by multiple factors, including printing parameters, model design, usage environment, and the specific application.\n*By using FusRock materials, the user acknowledges and agrees to independently evaluate whether the printed parts are suitable for their intended use, and assumes all associated risks.\n*FusRock shall not be held liable for any damage, injury, or loss that may result from the use of printed products made with our materials, including but not limited to structural failure, functional defects, or safety hazards under actual usage conditions.Before applying printed parts in any critical, functional, or commercial context, thorough testing must be conducted. Except for the certifications explicitly stated for specific FusRock materials, our products are not certified for medical, aerospace, or life-support applications.\n//CN\n1.使用前请务必仔细阅读(https://wiki.fusrock.com)。\n2.打印该耗材时,可能会出现喷嘴堵塞、拉丝、翘边以及层间附着力不足等问题。为了获得更好的打印效果,请参考此维基页面:高温 / 工程材料打印技巧(https://wiki.fusrock.com)。\n3.感谢您选择FusRock。\n*此设置不一定能够适配所有模型,存在部分情况下需要您自行修改调整参数来提升打印效果。\n*FusRock 3D打印耗材适用于通用打印用途,已在标准条件下进行测试。然而,打印成品的性能与安全性受多种因素影响,包括打印参数、模型设计、使用环境及实际用途。\n*使用FusRock材料即表示用户已知悉并同意,自行评估打印件是否适用于其具体应用,并承担由此产生的全部风险。\n*FusRock对使用本公司耗材打印的产品在实际应用中可能导致的任何损害、伤害或损失不承担任何责任,包括但不限于结构失效、功能异常或使用环境中的安全隐患。在将打印件应用于关键、功能性或商业性场景前,请务必进行充分测试。除FusRock已标明材料所获得的各项认证资质外,FusRock产品未取得医疗、航天或生命支持系统认证资质。", - "impact_strength_z": [ - "5.3" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @base.json b/resources/profiles/BBL/filament/Overture/Overture PLA Pro @base.json deleted file mode 100644 index 454c36e7b0..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "Overture PLA Pro @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFxA1p01", - "instantiation": "false", - "filament_cost": [ - "26.99" - ], - "filament_density": [ - "1.27" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_vendor": [ - "Overture" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "220" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "4" - ], - "temperature_vitrification": [ - "64" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF15 @base.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF15 @base.json deleted file mode 100644 index 310a2229d9..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF15 @base.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "type": "filament", - "name": "Fiberon PA612-CF15 @base", - "inherits": "fdm_filament_pa", - "from": "system", - "filament_id": "OFcBl0nJ", - "instantiation": "false", - "bed_type": [ - "Cool Plate" - ], - "fan_cooling_layer_time": [ - "5" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "10" - ], - "filament_cost": [ - "94.99" - ], - "filament_density": [ - "1.03" - ], - "filament_flow_ratio": [ - "0.96" - ], - "filament_type": [ - "PA-CF" - ], - "filament_vendor": [ - "Polymaker" - ], - "full_fan_speed_layer": [ - "2" - ], - "nozzle_temperature_range_low": [ - "250" - ], - "overhang_fan_speed": [ - "40" - ], - "overhang_fan_threshold": [ - "0%" - ], - "slow_down_min_speed": [ - "10" - ], - "temperature_vitrification": [ - "206.2" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @base.json b/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @base.json deleted file mode 100644 index e3e21d17a1..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "Panchroma CoPE @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFqw2PQA", - "instantiation": "false", - "filament_cost": [ - "19.99" - ], - "filament_density": [ - "1.29" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "24" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "4" - ], - "temperature_vitrification": [ - "58" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @base.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @base.json deleted file mode 100644 index 5f4c2682db..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @base.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "type": "filament", - "name": "Panchroma PLA @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFsRDvTM", - "instantiation": "false", - "filament_cost": [ - "19.99" - ], - "filament_density": [ - "1.32" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_vendor": [ - "Polymaker" - ], - "filament_wipe": [ - "0" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "4" - ], - "temperature_vitrification": [ - "58" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @base.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @base.json deleted file mode 100644 index 18382eb7a0..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "Panchroma PLA Celestial @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFRiYgMK", - "instantiation": "false", - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "4" - ], - "temperature_vitrification": [ - "61" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @base.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @base.json deleted file mode 100644 index bf84a536a4..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "Panchroma PLA Galaxy @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFFkCLBl", - "instantiation": "false", - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "4" - ], - "temperature_vitrification": [ - "61" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @base.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @base.json deleted file mode 100644 index ab3032ad57..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "Panchroma PLA Glow @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OF0gGRWk", - "instantiation": "false", - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "4" - ], - "temperature_vitrification": [ - "61" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @base.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @base.json deleted file mode 100644 index 14a805212e..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "Panchroma PLA Luminous @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OF0kCNDK", - "instantiation": "false", - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "4" - ], - "temperature_vitrification": [ - "61" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @base.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @base.json deleted file mode 100644 index 63680ba1b7..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "Panchroma PLA Marble @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFKiSMWR", - "instantiation": "false", - "filament_cost": [ - "21.99" - ], - "filament_density": [ - "1.31" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "22" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "8" - ], - "temperature_vitrification": [ - "61" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @base.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @base.json deleted file mode 100644 index 33d880ac08..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "Panchroma PLA Matte @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFrOh600", - "instantiation": "false", - "filament_cost": [ - "20.99" - ], - "filament_density": [ - "1.31" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "22" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "8" - ], - "temperature_vitrification": [ - "61" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @base.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @base.json deleted file mode 100644 index 89ce745162..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "Panchroma PLA Metallic @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFjb0wos", - "instantiation": "false", - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "4" - ], - "temperature_vitrification": [ - "61" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @base.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @base.json deleted file mode 100644 index bd8f5fc0d6..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "Panchroma PLA Neon @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFO1GEq6", - "instantiation": "false", - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "4" - ], - "temperature_vitrification": [ - "61" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @base.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @base.json deleted file mode 100644 index c8ef69cf88..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "Panchroma PLA Satin @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFPkCJKE", - "instantiation": "false", - "filament_cost": [ - "20.99" - ], - "filament_density": [ - "1.24" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "5" - ], - "temperature_vitrification": [ - "59" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @base.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @base.json deleted file mode 100644 index 94c2cb7c0b..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "Panchroma PLA Silk @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFS8lTQt", - "instantiation": "false", - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.31" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "8" - ], - "temperature_vitrification": [ - "58" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @base.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @base.json deleted file mode 100644 index 8622a109f2..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "Panchroma PLA Starlight @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFC78WGQ", - "instantiation": "false", - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "4" - ], - "temperature_vitrification": [ - "61" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @base.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @base.json deleted file mode 100644 index d0d6f6b057..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "Panchroma PLA Temp Shift @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFhASRWj", - "instantiation": "false", - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "4" - ], - "temperature_vitrification": [ - "61" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @base.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @base.json deleted file mode 100644 index ac8842d912..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "Panchroma PLA Translucent @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFCIUsWh", - "instantiation": "false", - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "4" - ], - "temperature_vitrification": [ - "61" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @base.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @base.json deleted file mode 100644 index 986b46fd5d..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "Panchroma PLA UV Shift @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OF1N1qMK", - "instantiation": "false", - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "4" - ], - "temperature_vitrification": [ - "61" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite CosPLA @base.json b/resources/profiles/BBL/filament/Polymaker/PolyLite CosPLA @base.json deleted file mode 100644 index 92739d13bb..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite CosPLA @base.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite CosPLA @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFJgijky", - "instantiation": "false", - "bed_type": [ - "Cool Plate" - ], - "cool_plate_temp": [ - "60" - ], - "cool_plate_temp_initial_layer": [ - "60" - ], - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_cost": [ - "20.99" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_vendor": [ - "Polymaker" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "nozzle_temperature_range_high": [ - "230" - ], - "overhang_fan_speed": [ - "75" - ], - "slow_down_layer_time": [ - "5" - ], - "slow_down_min_speed": [ - "5" - ], - "temperature_vitrification": [ - "59" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "filament_type": [ - "PLA" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Galaxy @base.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Galaxy @base.json deleted file mode 100644 index 90996083f1..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Galaxy @base.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PLA Galaxy @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFvyB0Bz", - "instantiation": "false", - "bed_type": [ - "Cool Plate" - ], - "cool_plate_temp": [ - "60" - ], - "cool_plate_temp_initial_layer": [ - "60" - ], - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "filament_vendor": [ - "Polymaker" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature_range_high": [ - "230" - ], - "overhang_fan_speed": [ - "75" - ], - "slow_down_layer_time": [ - "2" - ], - "slow_down_min_speed": [ - "5" - ], - "temperature_vitrification": [ - "61" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "filament_type": [ - "PLA" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Glow @base.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Glow @base.json deleted file mode 100644 index 3a70d3a83f..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Glow @base.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PLA Glow @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OF5umxxT", - "instantiation": "false", - "bed_type": [ - "Cool Plate" - ], - "cool_plate_temp": [ - "60" - ], - "cool_plate_temp_initial_layer": [ - "60" - ], - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "filament_vendor": [ - "Polymaker" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature_range_high": [ - "230" - ], - "overhang_fan_speed": [ - "75" - ], - "slow_down_layer_time": [ - "2" - ], - "slow_down_min_speed": [ - "5" - ], - "temperature_vitrification": [ - "61" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "filament_type": [ - "PLA" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Luminous @base.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Luminous @base.json deleted file mode 100644 index 14131c0348..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Luminous @base.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PLA Luminous @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFBoSWxb", - "instantiation": "false", - "bed_type": [ - "Cool Plate" - ], - "cool_plate_temp": [ - "60" - ], - "cool_plate_temp_initial_layer": [ - "60" - ], - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "filament_vendor": [ - "Polymaker" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature_range_high": [ - "230" - ], - "overhang_fan_speed": [ - "75" - ], - "slow_down_layer_time": [ - "2" - ], - "slow_down_min_speed": [ - "5" - ], - "temperature_vitrification": [ - "61" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "filament_type": [ - "PLA" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Neon @base.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Neon @base.json deleted file mode 100644 index b9fc01a700..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Neon @base.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PLA Neon @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFitS8al", - "instantiation": "false", - "bed_type": [ - "Cool Plate" - ], - "cool_plate_temp": [ - "60" - ], - "cool_plate_temp_initial_layer": [ - "60" - ], - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "filament_vendor": [ - "Polymaker" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature_range_high": [ - "230" - ], - "overhang_fan_speed": [ - "75" - ], - "slow_down_layer_time": [ - "2" - ], - "slow_down_min_speed": [ - "5" - ], - "temperature_vitrification": [ - "61" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "filament_type": [ - "PLA" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @base.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @base.json deleted file mode 100644 index 93c6cf8c9f..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PLA Pro @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFF9OKoY", - "instantiation": "false", - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.22" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "220" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "slow_down_layer_time": [ - "4" - ], - "temperature_vitrification": [ - "62" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Starlight @base.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Starlight @base.json deleted file mode 100644 index 3c8a79ed3f..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Starlight @base.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PLA Starlight @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFIxOuOu", - "instantiation": "false", - "bed_type": [ - "Cool Plate" - ], - "cool_plate_temp": [ - "60" - ], - "cool_plate_temp_initial_layer": [ - "60" - ], - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "filament_vendor": [ - "Polymaker" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature_range_high": [ - "230" - ], - "overhang_fan_speed": [ - "75" - ], - "slow_down_layer_time": [ - "2" - ], - "slow_down_min_speed": [ - "5" - ], - "temperature_vitrification": [ - "61" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "filament_type": [ - "PLA" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Translucent @base.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Translucent @base.json deleted file mode 100644 index 9a6155e283..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Translucent @base.json +++ /dev/null @@ -1,68 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PLA Translucent @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFy02QHU", - "instantiation": "false", - "bed_type": [ - "Cool Plate" - ], - "cool_plate_temp": [ - "60" - ], - "cool_plate_temp_initial_layer": [ - "60" - ], - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "filament_vendor": [ - "Polymaker" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature_range_high": [ - "230" - ], - "overhang_fan_speed": [ - "75" - ], - "slow_down_layer_time": [ - "2" - ], - "slow_down_min_speed": [ - "5" - ], - "temperature_vitrification": [ - "61" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "filament_type": [ - "PLA" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA Marble @base.json b/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA Marble @base.json deleted file mode 100644 index ea65b41ec4..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA Marble @base.json +++ /dev/null @@ -1,77 +0,0 @@ -{ - "type": "filament", - "name": "PolyTerra PLA Marble @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFxe4rXr", - "instantiation": "false", - "bed_type": [ - "Cool Plate" - ], - "cool_plate_temp": [ - "60" - ], - "cool_plate_temp_initial_layer": [ - "60" - ], - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_cost": [ - "21.99" - ], - "filament_density": [ - "1.37" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "22" - ], - "filament_vendor": [ - "Polymaker" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature_range_high": [ - "230" - ], - "overhang_fan_speed": [ - "75" - ], - "slow_down_layer_time": [ - "8" - ], - "slow_down_min_speed": [ - "5" - ], - "temperature_vitrification": [ - "61" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "filament_type": [ - "PLA" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA+ @base.json b/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA+ @base.json deleted file mode 100644 index 1d322a6c3e..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA+ @base.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "type": "filament", - "name": "PolyTerra PLA+ @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFEjbwqG", - "instantiation": "false", - "bed_type": [ - "Cool Plate" - ], - "cool_plate_temp": [ - "60" - ], - "cool_plate_temp_initial_layer": [ - "60" - ], - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_cost": [ - "20.99" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_vendor": [ - "Polymaker" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "nozzle_temperature_range_high": [ - "230" - ], - "overhang_fan_speed": [ - "75" - ], - "slow_down_layer_time": [ - "5" - ], - "slow_down_min_speed": [ - "5" - ], - "temperature_vitrification": [ - "59" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "filament_type": [ - "PLA" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @base.json b/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @base.json deleted file mode 100644 index 94ab2b2fd9..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @base.json +++ /dev/null @@ -1,47 +0,0 @@ -{ - "type": "filament", - "name": "Polymaker HT-PLA @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFPoyiFs", - "instantiation": "false", - "filament_cost": [ - "26.99" - ], - "filament_density": [ - "1.28" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "24" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "230" - ], - "nozzle_temperature_range_low": [ - "210" - ], - "slow_down_layer_time": [ - "4" - ], - "temperature_vitrification": [ - "60" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @base.json b/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @base.json deleted file mode 100644 index 585a6dd554..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "Polymaker HT-PLA-GF @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFlwmqrC", - "instantiation": "false", - "filament_cost": [ - "32.99" - ], - "filament_density": [ - "1.34" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "24" - ], - "filament_vendor": [ - "Polymaker" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "230" - ], - "nozzle_temperature_range_low": [ - "210" - ], - "slow_down_layer_time": [ - "4" - ], - "temperature_vitrification": [ - "60" - ] -} diff --git a/resources/profiles/OrcaFilamentLibrary.json b/resources/profiles/OrcaFilamentLibrary.json index fa97f3492f..7368c41633 100644 --- a/resources/profiles/OrcaFilamentLibrary.json +++ b/resources/profiles/OrcaFilamentLibrary.json @@ -1,6 +1,6 @@ { "name": "OrcaFilamentLibrary", - "version": "02.04.00.10", + "version": "02.04.00.11", "force_update": "0", "description": "Orca Filament Library", "filament_list": [ @@ -92,10 +92,18 @@ "name": "fdm_filament_tpu", "sub_path": "filament/base/fdm_filament_tpu.json" }, + { + "name": "FusRock ABS-GF @BBL base", + "sub_path": "filament/FusRock/BBL/FusRock ABS-GF @BBL base.json" + }, { "name": "FusRock ABS-GF @System", "sub_path": "filament/FusRock/FusRock ABS-GF @System.json" }, + { + "name": "BETA ABS @base", + "sub_path": "filament/BETA/BETA ABS @base.json" + }, { "name": "Bambu ABS @base", "sub_path": "filament/Bambu/Bambu ABS @base.json" @@ -140,6 +148,10 @@ "name": "FDplast ABS @base", "sub_path": "filament/FDplast/FDplast ABS @base.json" }, + { + "name": "Generic ABS @BBL base", + "sub_path": "filament/addnorth/BBL/Generic ABS @BBL base.json" + }, { "name": "Generic ABS @System", "sub_path": "filament/Generic ABS @System.json" @@ -160,6 +172,10 @@ "name": "Printalot ABS @base", "sub_path": "filament/Printalot/Printalot ABS @base.json" }, + { + "name": "BETA ASA @base", + "sub_path": "filament/BETA/BETA ASA @base.json" + }, { "name": "Bambu ASA @base", "sub_path": "filament/Bambu/Bambu ASA @base.json" @@ -224,6 +240,10 @@ "name": "Generic EVA @System", "sub_path": "filament/Generic EVA @System.json" }, + { + "name": "BETA HIPS @base", + "sub_path": "filament/BETA/BETA HIPS @base.json" + }, { "name": "FDplast HIPS @base", "sub_path": "filament/FDplast/FDplast HIPS @base.json" @@ -236,6 +256,10 @@ "name": "AliZ PA-CF @base", "sub_path": "filament/AliZ/AliZ PA-CF @base.json" }, + { + "name": "BETA PAHT-CF @base", + "sub_path": "filament/BETA/BETA PAHT-CF @base.json" + }, { "name": "Bambu PA-CF @base", "sub_path": "filament/Bambu/Bambu PA-CF @base.json" @@ -288,22 +312,46 @@ "name": "Fiberon PA12-CF @base", "sub_path": "filament/Polymaker/Fiberon PA12-CF @base.json" }, + { + "name": "Fiberon PA12-CF10 @base", + "sub_path": "filament/Polymaker/Fiberon PA12-CF10 @base.json" + }, { "name": "Fiberon PA6-CF @base", "sub_path": "filament/Polymaker/Fiberon PA6-CF @base.json" }, + { + "name": "Fiberon PA6-CF20 @base", + "sub_path": "filament/Polymaker/Fiberon PA6-CF20 @base.json" + }, { "name": "Fiberon PA6-GF @base", "sub_path": "filament/Polymaker/Fiberon PA6-GF @base.json" }, + { + "name": "Fiberon PA6-GF25 @base", + "sub_path": "filament/Polymaker/Fiberon PA6-GF25 @base.json" + }, { "name": "Fiberon PA612-CF @base", "sub_path": "filament/Polymaker/Fiberon PA612-CF @base.json" }, + { + "name": "Fiberon PA612-CF15 @base", + "sub_path": "filament/Polymaker/Fiberon PA612-CF15 @base.json" + }, + { + "name": "Generic PA @BBL base", + "sub_path": "filament/addnorth/BBL/Generic PA @BBL base.json" + }, { "name": "Generic PA @System", "sub_path": "filament/Generic PA @System.json" }, + { + "name": "Generic PA-CF @BBL base", + "sub_path": "filament/addnorth/BBL/Generic PA-CF @BBL base.json" + }, { "name": "Generic PA-CF @System", "sub_path": "filament/Generic PA-CF @System.json" @@ -328,6 +376,10 @@ "name": "Elegoo PC @base", "sub_path": "filament/Elegoo/Elegoo PC @base.json" }, + { + "name": "Generic PC @BBL base", + "sub_path": "filament/addnorth/BBL/Generic PC @BBL base.json" + }, { "name": "Generic PC @System", "sub_path": "filament/Generic PC @System.json" @@ -352,6 +404,62 @@ "name": "AliZ PETG @base", "sub_path": "filament/AliZ/AliZ PETG @base.json" }, + { + "name": "BETA PETG @base", + "sub_path": "filament/BETA/BETA PETG @base.json" + }, + { + "name": "BETA PETG Fluorescence @base", + "sub_path": "filament/BETA/BETA PETG Fluorescence @base.json" + }, + { + "name": "BETA PETG Glitter @base", + "sub_path": "filament/BETA/BETA PETG Glitter @base.json" + }, + { + "name": "BETA PETG Glow @base", + "sub_path": "filament/BETA/BETA PETG Glow @base.json" + }, + { + "name": "BETA PETG Gradient @base", + "sub_path": "filament/BETA/BETA PETG Gradient @base.json" + }, + { + "name": "BETA PETG HF @base", + "sub_path": "filament/BETA/BETA PETG HF @base.json" + }, + { + "name": "BETA PETG Heat Color Change @base", + "sub_path": "filament/BETA/BETA PETG Heat Color Change @base.json" + }, + { + "name": "BETA PETG Marble @base", + "sub_path": "filament/BETA/BETA PETG Marble @base.json" + }, + { + "name": "BETA PETG Matte @base", + "sub_path": "filament/BETA/BETA PETG Matte @base.json" + }, + { + "name": "BETA PETG Metallic @base", + "sub_path": "filament/BETA/BETA PETG Metallic @base.json" + }, + { + "name": "BETA PETG Transparent @base", + "sub_path": "filament/BETA/BETA PETG Transparent @base.json" + }, + { + "name": "BETA PETG UV Color Change @base", + "sub_path": "filament/BETA/BETA PETG UV Color Change @base.json" + }, + { + "name": "BETA PETG-CF @base", + "sub_path": "filament/BETA/BETA PETG-CF @base.json" + }, + { + "name": "BETA PETG-GF @base", + "sub_path": "filament/BETA/BETA PETG-GF @base.json" + }, { "name": "Bambu PET-CF @base", "sub_path": "filament/Bambu/Bambu PET-CF @base.json" @@ -420,6 +528,10 @@ "name": "Fiberon PET-CF @base", "sub_path": "filament/Polymaker/Fiberon PET-CF @base.json" }, + { + "name": "Fiberon PET-CF17 @base", + "sub_path": "filament/Polymaker/Fiberon PET-CF17 @base.json" + }, { "name": "Fiberon PETG-ESD @base", "sub_path": "filament/Polymaker/Fiberon PETG-ESD @base.json" @@ -428,10 +540,18 @@ "name": "Fiberon PETG-rCF @base", "sub_path": "filament/Polymaker/Fiberon PETG-rCF @base.json" }, + { + "name": "Fiberon PETG-rCF08 @base", + "sub_path": "filament/Polymaker/Fiberon PETG-rCF08 @base.json" + }, { "name": "FilAr PETG @base", "sub_path": "filament/FilAr/FilAr PETG @base.json" }, + { + "name": "Generic PETG @BBL base", + "sub_path": "filament/addnorth/BBL/Generic PETG @BBL base.json" + }, { "name": "Generic PETG @System", "sub_path": "filament/Generic PETG @System.json" @@ -480,6 +600,90 @@ "name": "AliZ PLA @base", "sub_path": "filament/AliZ/AliZ PLA @base.json" }, + { + "name": "BETA PLA Basic @base", + "sub_path": "filament/BETA/BETA PLA Basic @base.json" + }, + { + "name": "BETA PLA Chameleon @base", + "sub_path": "filament/BETA/BETA PLA Chameleon @base.json" + }, + { + "name": "BETA PLA Fluorescence @base", + "sub_path": "filament/BETA/BETA PLA Fluorescence @base.json" + }, + { + "name": "BETA PLA Glitter @base", + "sub_path": "filament/BETA/BETA PLA Glitter @base.json" + }, + { + "name": "BETA PLA Glow @base", + "sub_path": "filament/BETA/BETA PLA Glow @base.json" + }, + { + "name": "BETA PLA Gradient @base", + "sub_path": "filament/BETA/BETA PLA Gradient @base.json" + }, + { + "name": "BETA PLA Heat Color Change @base", + "sub_path": "filament/BETA/BETA PLA Heat Color Change @base.json" + }, + { + "name": "BETA PLA High Speed @base", + "sub_path": "filament/BETA/BETA PLA High Speed @base.json" + }, + { + "name": "BETA PLA High Temp @base", + "sub_path": "filament/BETA/BETA PLA High Temp @base.json" + }, + { + "name": "BETA PLA Marble @base", + "sub_path": "filament/BETA/BETA PLA Marble @base.json" + }, + { + "name": "BETA PLA Matte @base", + "sub_path": "filament/BETA/BETA PLA Matte @base.json" + }, + { + "name": "BETA PLA Metal @base", + "sub_path": "filament/BETA/BETA PLA Metal @base.json" + }, + { + "name": "BETA PLA Metallic @base", + "sub_path": "filament/BETA/BETA PLA Metallic @base.json" + }, + { + "name": "BETA PLA PRO @base", + "sub_path": "filament/BETA/BETA PLA PRO @base.json" + }, + { + "name": "BETA PLA Silk @base", + "sub_path": "filament/BETA/BETA PLA Silk @base.json" + }, + { + "name": "BETA PLA Silk+ @base", + "sub_path": "filament/BETA/BETA PLA Silk+ @base.json" + }, + { + "name": "BETA PLA Transparent @base", + "sub_path": "filament/BETA/BETA PLA Transparent @base.json" + }, + { + "name": "BETA PLA UV Color Change @base", + "sub_path": "filament/BETA/BETA PLA UV Color Change @base.json" + }, + { + "name": "BETA PLA Wood @base", + "sub_path": "filament/BETA/BETA PLA Wood @base.json" + }, + { + "name": "BETA PLA Youth @base", + "sub_path": "filament/BETA/BETA PLA Youth @base.json" + }, + { + "name": "BETA PLA-CF @base", + "sub_path": "filament/BETA/BETA PLA-CF @base.json" + }, { "name": "Bambu PLA Aero @base", "sub_path": "filament/Bambu/Bambu PLA Aero @base.json" @@ -636,10 +840,18 @@ "name": "FilAr PLA-mate @base", "sub_path": "filament/FilAr/FilAr PLA-mate @base.json" }, + { + "name": "Generic PLA @BBL base", + "sub_path": "filament/addnorth/BBL/Generic PLA @BBL base.json" + }, { "name": "Generic PLA @System", "sub_path": "filament/Generic PLA @System.json" }, + { + "name": "Generic PLA High Speed @BBL base", + "sub_path": "filament/addnorth/BBL/Generic PLA High Speed @BBL base.json" + }, { "name": "Generic PLA High Speed @System", "sub_path": "filament/Generic PLA High Speed @System.json" @@ -648,6 +860,14 @@ "name": "Generic PLA Matte @base", "sub_path": "filament/Generic PLA Matte @base.json" }, + { + "name": "Generic PLA Silk @BBL base", + "sub_path": "filament/addnorth/BBL/Generic PLA Silk @BBL base.json" + }, + { + "name": "Generic PLA-CF @BBL base", + "sub_path": "filament/addnorth/BBL/Generic PLA-CF @BBL base.json" + }, { "name": "Generic PLA-CF @System", "sub_path": "filament/Generic PLA-CF @System.json" @@ -772,18 +992,54 @@ "name": "PlastAR PLA @base", "sub_path": "filament/Printalot/PlastAR PLA @base.json" }, + { + "name": "PolyLite CosPLA @base", + "sub_path": "filament/Polymaker/PolyLite CosPLA @base.json" + }, { "name": "PolyLite PLA @base", "sub_path": "filament/Polymaker/PolyLite PLA @base.json" }, + { + "name": "PolyLite PLA Galaxy @base", + "sub_path": "filament/Polymaker/PolyLite PLA Galaxy @base.json" + }, + { + "name": "PolyLite PLA Glow @base", + "sub_path": "filament/Polymaker/PolyLite PLA Glow @base.json" + }, + { + "name": "PolyLite PLA Luminous @base", + "sub_path": "filament/Polymaker/PolyLite PLA Luminous @base.json" + }, + { + "name": "PolyLite PLA Neon @base", + "sub_path": "filament/Polymaker/PolyLite PLA Neon @base.json" + }, { "name": "PolyLite PLA Pro @base", "sub_path": "filament/Polymaker/PolyLite PLA Pro @base.json" }, + { + "name": "PolyLite PLA Starlight @base", + "sub_path": "filament/Polymaker/PolyLite PLA Starlight @base.json" + }, + { + "name": "PolyLite PLA Translucent @base", + "sub_path": "filament/Polymaker/PolyLite PLA Translucent @base.json" + }, { "name": "PolyTerra PLA @base", "sub_path": "filament/Polymaker/PolyTerra PLA @base.json" }, + { + "name": "PolyTerra PLA Marble @base", + "sub_path": "filament/Polymaker/PolyTerra PLA Marble @base.json" + }, + { + "name": "PolyTerra PLA+ @base", + "sub_path": "filament/Polymaker/PolyTerra PLA+ @base.json" + }, { "name": "Polymaker HT-PLA @base", "sub_path": "filament/Polymaker/Polymaker HT-PLA @base.json" @@ -916,6 +1172,26 @@ "name": "Generic SBS @System", "sub_path": "filament/Generic SBS @System.json" }, + { + "name": "BETA PEBA 90A @base", + "sub_path": "filament/BETA/BETA PEBA 90A @base.json" + }, + { + "name": "BETA TPU 90A @base", + "sub_path": "filament/BETA/BETA TPU 90A @base.json" + }, + { + "name": "BETA TPU 95A @base", + "sub_path": "filament/BETA/BETA TPU 95A @base.json" + }, + { + "name": "BETA TPU 98A @base", + "sub_path": "filament/BETA/BETA TPU 98A @base.json" + }, + { + "name": "BETA TPU Matte @base", + "sub_path": "filament/BETA/BETA TPU Matte @base.json" + }, { "name": "Bambu TPU 95A @base", "sub_path": "filament/Bambu/Bambu TPU 95A @base.json" @@ -968,6 +1244,10 @@ "name": "FDplast TPU @base", "sub_path": "filament/FDplast/FDplast TPU @base.json" }, + { + "name": "Generic TPU @BBL base", + "sub_path": "filament/addnorth/BBL/Generic TPU @BBL base.json" + }, { "name": "Generic TPU @System", "sub_path": "filament/Generic TPU @System.json" @@ -976,6 +1256,38 @@ "name": "Overture TPU @base", "sub_path": "filament/Overture/Overture TPU @base.json" }, + { + "name": "FusRock ABS-GF @BBL A1", + "sub_path": "filament/FusRock/BBL/FusRock ABS-GF @BBL A1.json" + }, + { + "name": "FusRock ABS-GF @BBL H2D", + "sub_path": "filament/FusRock/BBL/FusRock ABS-GF @BBL H2D.json" + }, + { + "name": "FusRock ABS-GF @BBL P1P", + "sub_path": "filament/FusRock/BBL/FusRock ABS-GF @BBL P1P.json" + }, + { + "name": "FusRock ABS-GF @BBL X1C", + "sub_path": "filament/FusRock/BBL/FusRock ABS-GF @BBL X1C.json" + }, + { + "name": "BETA ABS @BBL A1", + "sub_path": "filament/BETA/BBL/BETA ABS @BBL A1.json" + }, + { + "name": "BETA ABS @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA ABS @BBL H2D.json" + }, + { + "name": "BETA ABS @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA ABS @BBL P1P.json" + }, + { + "name": "BETA ABS @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA ABS @BBL X1C.json" + }, { "name": "Bambu ABS @System", "sub_path": "filament/Bambu/Bambu ABS @System.json" @@ -988,10 +1300,42 @@ "name": "Bambu Support for ABS @System", "sub_path": "filament/Bambu/Bambu Support for ABS @System.json" }, + { + "name": "COEX ABS @BBL X1", + "sub_path": "filament/COEX/BBL/COEX ABS @BBL X1.json" + }, + { + "name": "COEX ABS @BBL X1 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX ABS @BBL X1 0.2 nozzle.json" + }, + { + "name": "COEX ABS @BBL X1C", + "sub_path": "filament/COEX/BBL/COEX ABS @BBL X1C.json" + }, + { + "name": "COEX ABS @BBL X1C 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX ABS @BBL X1C 0.2 nozzle.json" + }, { "name": "COEX ABS @System", "sub_path": "filament/COEX/COEX ABS @System.json" }, + { + "name": "COEX ABS PRIME @BBL X1", + "sub_path": "filament/COEX/BBL/COEX ABS PRIME @BBL X1.json" + }, + { + "name": "COEX ABS PRIME @BBL X1 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX ABS PRIME @BBL X1 0.2 nozzle.json" + }, + { + "name": "COEX ABS PRIME @BBL X1C", + "sub_path": "filament/COEX/BBL/COEX ABS PRIME @BBL X1C.json" + }, + { + "name": "COEX ABS PRIME @BBL X1C 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX ABS PRIME @BBL X1C 0.2 nozzle.json" + }, { "name": "COEX ABS PRIME @System", "sub_path": "filament/COEX/COEX ABS PRIME @System.json" @@ -1016,6 +1360,10 @@ "name": "FDplast ABS @System", "sub_path": "filament/FDplast/FDplast ABS @System.json" }, + { + "name": "addnorth ABS rABS", + "sub_path": "filament/addnorth/BBL/addnorth ABS rABS.json" + }, { "name": "NIT ABS @System", "sub_path": "filament/NIT/NIT ABS @System.json" @@ -1032,6 +1380,18 @@ "name": "Printalot ABS @System", "sub_path": "filament/Printalot/Printalot ABS @System.json" }, + { + "name": "BETA ASA @BBL A1 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA ASA @BBL A1 0.4 nozzle.json" + }, + { + "name": "BETA ASA @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA ASA @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA ASA @BBL X1C 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA ASA @BBL X1C 0.4 nozzle.json" + }, { "name": "Bambu ASA @System", "sub_path": "filament/Bambu/Bambu ASA @System.json" @@ -1044,6 +1404,22 @@ "name": "Bambu ASA-CF @System", "sub_path": "filament/Bambu/Bambu ASA-CF @System.json" }, + { + "name": "COEX ASA PRIME @BBL X1", + "sub_path": "filament/COEX/BBL/COEX ASA PRIME @BBL X1.json" + }, + { + "name": "COEX ASA PRIME @BBL X1 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX ASA PRIME @BBL X1 0.2 nozzle.json" + }, + { + "name": "COEX ASA PRIME @BBL X1C", + "sub_path": "filament/COEX/BBL/COEX ASA PRIME @BBL X1C.json" + }, + { + "name": "COEX ASA PRIME @BBL X1C 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX ASA PRIME @BBL X1C 0.2 nozzle.json" + }, { "name": "COEX ASA PRIME @System", "sub_path": "filament/COEX/COEX ASA PRIME @System.json" @@ -1072,6 +1448,22 @@ "name": "Elegoo ASA-CF @base", "sub_path": "filament/Elegoo/Elegoo ASA-CF @base.json" }, + { + "name": "Overture ASA @BBL X1", + "sub_path": "filament/Overture/BBL/Overture ASA @BBL X1.json" + }, + { + "name": "Overture ASA @BBL X1 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture ASA @BBL X1 0.2 nozzle.json" + }, + { + "name": "Overture ASA @BBL X1C", + "sub_path": "filament/Overture/BBL/Overture ASA @BBL X1C.json" + }, + { + "name": "Overture ASA @BBL X1C 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture ASA @BBL X1C 0.2 nozzle.json" + }, { "name": "Overture ASA @System", "sub_path": "filament/Overture/Overture ASA @System.json" @@ -1080,14 +1472,38 @@ "name": "PolyLite ASA @System", "sub_path": "filament/Polymaker/PolyLite ASA @System.json" }, + { + "name": "BETA HIPS @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA HIPS @BBL H2D.json" + }, + { + "name": "BETA HIPS @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA HIPS @BBL X1C.json" + }, { "name": "FDplast HIPS @System", "sub_path": "filament/FDplast/FDplast HIPS @System.json" }, + { + "name": "AliZ PA-CF @P1-X1", + "sub_path": "filament/AliZ/BBL/AliZ PA-CF @P1-X1.json" + }, { "name": "AliZ PA-CF @System", "sub_path": "filament/AliZ/AliZ PA-CF @System.json" }, + { + "name": "BETA PAHT-CF @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PAHT-CF @BBL H2D.json" + }, + { + "name": "BETA PAHT-CF @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PAHT-CF @BBL P1P.json" + }, + { + "name": "BETA PAHT-CF @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PAHT-CF @BBL X1C.json" + }, { "name": "Bambu PA-CF @System", "sub_path": "filament/Bambu/Bambu PA-CF @System.json" @@ -1112,10 +1528,18 @@ "name": "Bambu Support G @System", "sub_path": "filament/Bambu/Bambu Support G @System.json" }, + { + "name": "COEX NYLEX PA6-CF @BBL X1C", + "sub_path": "filament/COEX/BBL/COEX NYLEX PA6-CF @BBL X1C.json" + }, { "name": "COEX NYLEX PA6-CF @System", "sub_path": "filament/COEX/COEX NYLEX PA6-CF @System.json" }, + { + "name": "COEX NYLEX UNFILLED @BBL X1C", + "sub_path": "filament/COEX/BBL/COEX NYLEX UNFILLED @BBL X1C.json" + }, { "name": "DREMC PA12-CF @System", "sub_path": "filament/DREMC/DREMC PA12-CF @System.json" @@ -1136,18 +1560,54 @@ "name": "Fiberon PA12-CF @System", "sub_path": "filament/Polymaker/Fiberon PA12-CF @System.json" }, + { + "name": "Fiberon PA12-CF10 @BBL X1", + "sub_path": "filament/Polymaker/BBL/Fiberon PA12-CF10 @BBL X1.json" + }, { "name": "Fiberon PA6-CF @System", "sub_path": "filament/Polymaker/Fiberon PA6-CF @System.json" }, + { + "name": "Fiberon PA6-CF20 @BBL X1", + "sub_path": "filament/Polymaker/BBL/Fiberon PA6-CF20 @BBL X1.json" + }, { "name": "Fiberon PA6-GF @System", "sub_path": "filament/Polymaker/Fiberon PA6-GF @System.json" }, + { + "name": "Fiberon PA6-GF25 @BBL X1", + "sub_path": "filament/Polymaker/BBL/Fiberon PA6-GF25 @BBL X1.json" + }, { "name": "Fiberon PA612-CF @System", "sub_path": "filament/Polymaker/Fiberon PA612-CF @System.json" }, + { + "name": "Fiberon PA612-CF15 @BBL X1", + "sub_path": "filament/Polymaker/BBL/Fiberon PA612-CF15 @BBL X1.json" + }, + { + "name": "addnorth PA Adura", + "sub_path": "filament/addnorth/BBL/addnorth PA Adura.json" + }, + { + "name": "addnorth PA Adura FDA", + "sub_path": "filament/addnorth/BBL/addnorth PA Adura FDA.json" + }, + { + "name": "addnorth PA6 Addlantis", + "sub_path": "filament/addnorth/BBL/addnorth PA6 Addlantis.json" + }, + { + "name": "addnorth PVDF Adamant S1", + "sub_path": "filament/addnorth/BBL/addnorth PVDF Adamant S1.json" + }, + { + "name": "addnorth PA-CF Adura X", + "sub_path": "filament/addnorth/BBL/addnorth PA-CF Adura X.json" + }, { "name": "INSLOGIC PA6-66 @BBL P2S", "sub_path": "filament/INSLOGIC/BBL/INSLOGIC PA6-66 @BBL P2S.json" @@ -1188,6 +1648,34 @@ "name": "Elegoo PC-FR @base", "sub_path": "filament/Elegoo/Elegoo PC-FR @base.json" }, + { + "name": "addnorth PC BLend HT LCF", + "sub_path": "filament/addnorth/BBL/addnorth PC BLend HT LCF.json" + }, + { + "name": "COEX PCTG PRIME @BBL A1", + "sub_path": "filament/COEX/BBL/COEX PCTG PRIME @BBL A1.json" + }, + { + "name": "COEX PCTG PRIME @BBL A1 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PCTG PRIME @BBL A1 0.2 nozzle.json" + }, + { + "name": "COEX PCTG PRIME @BBL A1 0.8 nozzle", + "sub_path": "filament/COEX/BBL/COEX PCTG PRIME @BBL A1 0.8 nozzle.json" + }, + { + "name": "COEX PCTG PRIME @BBL X1C", + "sub_path": "filament/COEX/BBL/COEX PCTG PRIME @BBL X1C.json" + }, + { + "name": "COEX PCTG PRIME @BBL X1C 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PCTG PRIME @BBL X1C 0.2 nozzle.json" + }, + { + "name": "COEX PCTG PRIME @BBL X1C 0.8 nozzle", + "sub_path": "filament/COEX/BBL/COEX PCTG PRIME @BBL X1C 0.8 nozzle.json" + }, { "name": "COEX PCTG PRIME @System", "sub_path": "filament/COEX/COEX PCTG PRIME @System.json" @@ -1196,6 +1684,10 @@ "name": "Generic PE-CF @System", "sub_path": "filament/Generic PE-CF @System.json" }, + { + "name": "AliZ PETG @P1-X1", + "sub_path": "filament/AliZ/BBL/AliZ PETG @P1-X1.json" + }, { "name": "AliZ PETG @System", "sub_path": "filament/AliZ/AliZ PETG @System.json" @@ -1208,6 +1700,238 @@ "name": "AliZ PETG-Metal @base", "sub_path": "filament/AliZ/AliZ PETG-Metal @base.json" }, + { + "name": "BETA PETG @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PETG @BBL A1.json" + }, + { + "name": "BETA PETG @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PETG @BBL X1C.json" + }, + { + "name": "BETA PETG Fluorescence @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PETG Fluorescence @BBL A1.json" + }, + { + "name": "BETA PETG Fluorescence @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG Fluorescence @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG Fluorescence @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG Fluorescence @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Fluorescence @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PETG Fluorescence @BBL X1C.json" + }, + { + "name": "BETA PETG Glitter @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PETG Glitter @BBL A1.json" + }, + { + "name": "BETA PETG Glitter @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG Glitter @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG Glitter @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG Glitter @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Glitter @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PETG Glitter @BBL X1C.json" + }, + { + "name": "BETA PETG Glow @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PETG Glow @BBL A1.json" + }, + { + "name": "BETA PETG Glow @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG Glow @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG Glow @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG Glow @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Glow @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PETG Glow @BBL X1C.json" + }, + { + "name": "BETA PETG Gradient @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PETG Gradient @BBL A1.json" + }, + { + "name": "BETA PETG Gradient @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG Gradient @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG Gradient @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG Gradient @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Gradient @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PETG Gradient @BBL X1C.json" + }, + { + "name": "BETA PETG HF @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PETG HF @BBL A1.json" + }, + { + "name": "BETA PETG HF @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PETG HF @BBL A1M.json" + }, + { + "name": "BETA PETG HF @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG HF @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG HF @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PETG HF @BBL X1C.json" + }, + { + "name": "BETA PETG Heat Color Change @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PETG Heat Color Change @BBL A1.json" + }, + { + "name": "BETA PETG Heat Color Change @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG Heat Color Change @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG Heat Color Change @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG Heat Color Change @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Heat Color Change @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PETG Heat Color Change @BBL X1C.json" + }, + { + "name": "BETA PETG Marble @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PETG Marble @BBL A1.json" + }, + { + "name": "BETA PETG Marble @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG Marble @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG Marble @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG Marble @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Marble @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PETG Marble @BBL X1C.json" + }, + { + "name": "BETA PETG Matte @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PETG Matte @BBL A1.json" + }, + { + "name": "BETA PETG Matte @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG Matte @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG Matte @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG Matte @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Matte @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PETG Matte @BBL X1C.json" + }, + { + "name": "BETA PETG Metallic @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PETG Metallic @BBL A1.json" + }, + { + "name": "BETA PETG Metallic @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG Metallic @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG Metallic @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG Metallic @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Metallic @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PETG Metallic @BBL X1C.json" + }, + { + "name": "BETA PETG Transparent @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PETG Transparent @BBL A1.json" + }, + { + "name": "BETA PETG Transparent @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PETG Transparent @BBL A1M.json" + }, + { + "name": "BETA PETG Transparent @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG Transparent @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG Transparent @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PETG Transparent @BBL X1C.json" + }, + { + "name": "BETA PETG UV Color Change @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PETG UV Color Change @BBL A1.json" + }, + { + "name": "BETA PETG UV Color Change @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG UV Color Change @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG UV Color Change @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG UV Color Change @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG UV Color Change @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PETG UV Color Change @BBL X1C.json" + }, + { + "name": "BETA PETG-CF @BBL A1 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG-CF @BBL A1 0.4 nozzle.json" + }, + { + "name": "BETA PETG-CF @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG-CF @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG-CF @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG-CF @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG-CF @BBL P1P 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG-CF @BBL P1P 0.4 nozzle.json" + }, + { + "name": "BETA PETG-CF @BBL X1C 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG-CF @BBL X1C 0.4 nozzle.json" + }, + { + "name": "BETA PETG-GF @BBL A1 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG-GF @BBL A1 0.4 nozzle.json" + }, + { + "name": "BETA PETG-GF @BBL A1M 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG-GF @BBL A1M 0.4 nozzle.json" + }, + { + "name": "BETA PETG-GF @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG-GF @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PETG-GF @BBL P1P 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG-GF @BBL P1P 0.4 nozzle.json" + }, + { + "name": "BETA PETG-GF @BBL X1C 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PETG-GF @BBL X1C 0.4 nozzle.json" + }, { "name": "Bambu PET-CF @System", "sub_path": "filament/Bambu/Bambu PET-CF @System.json" @@ -1228,6 +1952,30 @@ "name": "Bambu PETG-CF @System", "sub_path": "filament/Bambu/Bambu PETG-CF @System.json" }, + { + "name": "COEX PETG @BBL A1", + "sub_path": "filament/COEX/BBL/COEX PETG @BBL A1.json" + }, + { + "name": "COEX PETG @BBL A1 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PETG @BBL A1 0.2 nozzle.json" + }, + { + "name": "COEX PETG @BBL A1 0.8 nozzle", + "sub_path": "filament/COEX/BBL/COEX PETG @BBL A1 0.8 nozzle.json" + }, + { + "name": "COEX PETG @BBL X1C", + "sub_path": "filament/COEX/BBL/COEX PETG @BBL X1C.json" + }, + { + "name": "COEX PETG @BBL X1C 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PETG @BBL X1C 0.2 nozzle.json" + }, + { + "name": "COEX PETG @BBL X1C 0.8 nozzle", + "sub_path": "filament/COEX/BBL/COEX PETG @BBL X1C 0.8 nozzle.json" + }, { "name": "COEX PETG @System", "sub_path": "filament/COEX/COEX PETG @System.json" @@ -1292,6 +2040,14 @@ "name": "Fiberon PET-CF @System", "sub_path": "filament/Polymaker/Fiberon PET-CF @System.json" }, + { + "name": "Fiberon PET-CF17 @BBL X1", + "sub_path": "filament/Polymaker/BBL/Fiberon PET-CF17 @BBL X1.json" + }, + { + "name": "Fiberon PETG-ESD @BBL base", + "sub_path": "filament/Polymaker/BBL/Fiberon PETG-ESD @BBL base.json" + }, { "name": "Fiberon PETG-ESD @System", "sub_path": "filament/Polymaker/Fiberon PETG-ESD @System.json" @@ -1300,6 +2056,10 @@ "name": "Fiberon PETG-rCF @System", "sub_path": "filament/Polymaker/Fiberon PETG-rCF @System.json" }, + { + "name": "Fiberon PETG-rCF08 @BBL X1", + "sub_path": "filament/Polymaker/BBL/Fiberon PETG-rCF08 @BBL X1.json" + }, { "name": "FilAr PETG Amarillo Lima", "sub_path": "filament/FilAr/FilAr PETG Amarillo Lima.json" @@ -1356,10 +2116,38 @@ "name": "FilAr PETG Rojo Carmesi", "sub_path": "filament/FilAr/FilAr PETG Rojo Carmesi.json" }, + { + "name": "addnorth PETG Base", + "sub_path": "filament/addnorth/BBL/addnorth PETG Base.json" + }, + { + "name": "addnorth PETG ESD", + "sub_path": "filament/addnorth/BBL/addnorth PETG ESD.json" + }, + { + "name": "addnorth PETG Economy", + "sub_path": "filament/addnorth/BBL/addnorth PETG Economy.json" + }, + { + "name": "addnorth PETG Flame v0", + "sub_path": "filament/addnorth/BBL/addnorth PETG Flame v0.json" + }, + { + "name": "addnorth PETG PRO Matte", + "sub_path": "filament/addnorth/BBL/addnorth PETG PRO Matte.json" + }, + { + "name": "addnorth PETG rPETG Matte", + "sub_path": "filament/addnorth/BBL/addnorth PETG rPETG Matte.json" + }, { "name": "Generic PETG HF @System", "sub_path": "filament/Generic PETG HF @System.json" }, + { + "name": "Generic PETG-CF @BBL base", + "sub_path": "filament/addnorth/BBL/Generic PETG-CF @BBL base.json" + }, { "name": "Generic PETG-CF @System", "sub_path": "filament/Generic PETG-CF @System.json" @@ -1412,10 +2200,434 @@ "name": "eSUN PETG @System", "sub_path": "filament/eSUN/eSUN PETG @System.json" }, + { + "name": "AliZ PLA @P1-X1", + "sub_path": "filament/AliZ/BBL/AliZ PLA @P1-X1.json" + }, { "name": "AliZ PLA @System", "sub_path": "filament/AliZ/AliZ PLA @System.json" }, + { + "name": "BETA PLA Basic @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA Basic @BBL A1.json" + }, + { + "name": "BETA PLA Basic @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA Basic @BBL A1M.json" + }, + { + "name": "BETA PLA Basic @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA Basic @BBL H2D.json" + }, + { + "name": "BETA PLA Basic @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA Basic @BBL P1P.json" + }, + { + "name": "BETA PLA Basic @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA Basic @BBL X1C.json" + }, + { + "name": "BETA PLA Chameleon @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA Chameleon @BBL A1.json" + }, + { + "name": "BETA PLA Chameleon @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA Chameleon @BBL A1M.json" + }, + { + "name": "BETA PLA Chameleon @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA Chameleon @BBL H2D.json" + }, + { + "name": "BETA PLA Chameleon @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA Chameleon @BBL P1P.json" + }, + { + "name": "BETA PLA Chameleon @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA Chameleon @BBL X1C.json" + }, + { + "name": "BETA PLA Fluorescence @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA Fluorescence @BBL A1.json" + }, + { + "name": "BETA PLA Fluorescence @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA Fluorescence @BBL A1M.json" + }, + { + "name": "BETA PLA Fluorescence @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA Fluorescence @BBL H2D.json" + }, + { + "name": "BETA PLA Fluorescence @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA Fluorescence @BBL P1P.json" + }, + { + "name": "BETA PLA Fluorescence @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA Fluorescence @BBL X1C.json" + }, + { + "name": "BETA PLA Glitter @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA Glitter @BBL A1.json" + }, + { + "name": "BETA PLA Glitter @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA Glitter @BBL A1M.json" + }, + { + "name": "BETA PLA Glitter @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA Glitter @BBL H2D.json" + }, + { + "name": "BETA PLA Glitter @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA Glitter @BBL P1P.json" + }, + { + "name": "BETA PLA Glitter @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA Glitter @BBL X1C.json" + }, + { + "name": "BETA PLA Glow @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA Glow @BBL A1.json" + }, + { + "name": "BETA PLA Glow @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA Glow @BBL A1M.json" + }, + { + "name": "BETA PLA Glow @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA Glow @BBL H2D.json" + }, + { + "name": "BETA PLA Glow @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA Glow @BBL P1P.json" + }, + { + "name": "BETA PLA Glow @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA Glow @BBL X1C.json" + }, + { + "name": "BETA PLA Gradient @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA Gradient @BBL A1.json" + }, + { + "name": "BETA PLA Gradient @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA Gradient @BBL A1M.json" + }, + { + "name": "BETA PLA Gradient @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA Gradient @BBL H2D.json" + }, + { + "name": "BETA PLA Gradient @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA Gradient @BBL P1P.json" + }, + { + "name": "BETA PLA Gradient @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA Gradient @BBL X1C.json" + }, + { + "name": "BETA PLA Heat Color Change @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA Heat Color Change @BBL A1.json" + }, + { + "name": "BETA PLA Heat Color Change @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA Heat Color Change @BBL A1M.json" + }, + { + "name": "BETA PLA Heat Color Change @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA Heat Color Change @BBL H2D.json" + }, + { + "name": "BETA PLA Heat Color Change @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA Heat Color Change @BBL P1P.json" + }, + { + "name": "BETA PLA Heat Color Change @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA Heat Color Change @BBL X1C.json" + }, + { + "name": "BETA PLA High Speed @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA High Speed @BBL A1.json" + }, + { + "name": "BETA PLA High Speed @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA High Speed @BBL A1M.json" + }, + { + "name": "BETA PLA High Speed @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA High Speed @BBL H2D.json" + }, + { + "name": "BETA PLA High Speed @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA High Speed @BBL P1P.json" + }, + { + "name": "BETA PLA High Speed @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA High Speed @BBL X1C.json" + }, + { + "name": "BETA PLA High Temp @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA High Temp @BBL A1.json" + }, + { + "name": "BETA PLA High Temp @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA High Temp @BBL A1M.json" + }, + { + "name": "BETA PLA High Temp @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA High Temp @BBL H2D.json" + }, + { + "name": "BETA PLA High Temp @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA High Temp @BBL P1P.json" + }, + { + "name": "BETA PLA High Temp @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA High Temp @BBL X1C.json" + }, + { + "name": "BETA PLA Marble @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA Marble @BBL A1.json" + }, + { + "name": "BETA PLA Marble @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA Marble @BBL A1M.json" + }, + { + "name": "BETA PLA Marble @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA Marble @BBL H2D.json" + }, + { + "name": "BETA PLA Marble @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA Marble @BBL P1P.json" + }, + { + "name": "BETA PLA Marble @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA Marble @BBL X1C.json" + }, + { + "name": "BETA PLA Matte @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA Matte @BBL A1.json" + }, + { + "name": "BETA PLA Matte @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA Matte @BBL A1M.json" + }, + { + "name": "BETA PLA Matte @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA Matte @BBL H2D.json" + }, + { + "name": "BETA PLA Matte @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA Matte @BBL P1P.json" + }, + { + "name": "BETA PLA Matte @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA Matte @BBL X1C.json" + }, + { + "name": "BETA PLA Metal @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA Metal @BBL A1.json" + }, + { + "name": "BETA PLA Metal @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA Metal @BBL A1M.json" + }, + { + "name": "BETA PLA Metal @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA Metal @BBL H2D.json" + }, + { + "name": "BETA PLA Metal @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA Metal @BBL P1P.json" + }, + { + "name": "BETA PLA Metal @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA Metal @BBL X1C.json" + }, + { + "name": "BETA PLA Metallic @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA Metallic @BBL A1.json" + }, + { + "name": "BETA PLA Metallic @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA Metallic @BBL A1M.json" + }, + { + "name": "BETA PLA Metallic @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA Metallic @BBL H2D.json" + }, + { + "name": "BETA PLA Metallic @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA Metallic @BBL P1P.json" + }, + { + "name": "BETA PLA Metallic @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA Metallic @BBL X1C.json" + }, + { + "name": "BETA PLA PRO @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA PRO @BBL A1.json" + }, + { + "name": "BETA PLA PRO @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA PRO @BBL A1M.json" + }, + { + "name": "BETA PLA PRO @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA PRO @BBL H2D.json" + }, + { + "name": "BETA PLA PRO @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA PRO @BBL P1P.json" + }, + { + "name": "BETA PLA PRO @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA PRO @BBL X1C.json" + }, + { + "name": "BETA PLA Silk @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA Silk @BBL A1.json" + }, + { + "name": "BETA PLA Silk @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA Silk @BBL A1M.json" + }, + { + "name": "BETA PLA Silk @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA Silk @BBL H2D.json" + }, + { + "name": "BETA PLA Silk @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA Silk @BBL P1P.json" + }, + { + "name": "BETA PLA Silk @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA Silk @BBL X1C.json" + }, + { + "name": "BETA PLA Silk+ @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA Silk+ @BBL A1.json" + }, + { + "name": "BETA PLA Silk+ @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA Silk+ @BBL A1M.json" + }, + { + "name": "BETA PLA Silk+ @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA Silk+ @BBL H2D.json" + }, + { + "name": "BETA PLA Silk+ @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA Silk+ @BBL P1P.json" + }, + { + "name": "BETA PLA Silk+ @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA Silk+ @BBL X1C.json" + }, + { + "name": "BETA PLA Transparent @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA Transparent @BBL A1.json" + }, + { + "name": "BETA PLA Transparent @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA Transparent @BBL A1M.json" + }, + { + "name": "BETA PLA Transparent @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA Transparent @BBL H2D.json" + }, + { + "name": "BETA PLA Transparent @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA Transparent @BBL P1P.json" + }, + { + "name": "BETA PLA Transparent @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA Transparent @BBL X1C.json" + }, + { + "name": "BETA PLA UV Color Change @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA UV Color Change @BBL A1.json" + }, + { + "name": "BETA PLA UV Color Change @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA UV Color Change @BBL A1M.json" + }, + { + "name": "BETA PLA UV Color Change @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA UV Color Change @BBL H2D.json" + }, + { + "name": "BETA PLA UV Color Change @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA UV Color Change @BBL P1P.json" + }, + { + "name": "BETA PLA UV Color Change @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA UV Color Change @BBL X1C.json" + }, + { + "name": "BETA PLA Wood @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA Wood @BBL A1.json" + }, + { + "name": "BETA PLA Wood @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA Wood @BBL A1M.json" + }, + { + "name": "BETA PLA Wood @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA Wood @BBL H2D.json" + }, + { + "name": "BETA PLA Wood @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA Wood @BBL P1P.json" + }, + { + "name": "BETA PLA Wood @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA Wood @BBL X1C.json" + }, + { + "name": "BETA PLA Youth @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA Youth @BBL A1.json" + }, + { + "name": "BETA PLA Youth @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA Youth @BBL A1M.json" + }, + { + "name": "BETA PLA Youth @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PLA Youth @BBL H2D.json" + }, + { + "name": "BETA PLA Youth @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA Youth @BBL P1P.json" + }, + { + "name": "BETA PLA Youth @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA Youth @BBL X1C.json" + }, + { + "name": "BETA PLA-CF @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PLA-CF @BBL A1.json" + }, + { + "name": "BETA PLA-CF @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PLA-CF @BBL A1M.json" + }, + { + "name": "BETA PLA-CF @BBL H2D 0.4 nozzle", + "sub_path": "filament/BETA/BBL/BETA PLA-CF @BBL H2D 0.4 nozzle.json" + }, + { + "name": "BETA PLA-CF @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PLA-CF @BBL P1P.json" + }, + { + "name": "BETA PLA-CF @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PLA-CF @BBL X1C.json" + }, { "name": "Bambu PLA Aero @System", "sub_path": "filament/Bambu/Bambu PLA Aero @System.json" @@ -1488,10 +2700,74 @@ "name": "Bambu Support W @System", "sub_path": "filament/Bambu/Bambu Support W @System.json" }, + { + "name": "COEX PLA @BBL A1", + "sub_path": "filament/COEX/BBL/COEX PLA @BBL A1.json" + }, + { + "name": "COEX PLA @BBL A1 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PLA @BBL A1 0.2 nozzle.json" + }, + { + "name": "COEX PLA @BBL A1M", + "sub_path": "filament/COEX/BBL/COEX PLA @BBL A1M.json" + }, + { + "name": "COEX PLA @BBL P1P", + "sub_path": "filament/COEX/BBL/COEX PLA @BBL P1P.json" + }, + { + "name": "COEX PLA @BBL X1", + "sub_path": "filament/COEX/BBL/COEX PLA @BBL X1.json" + }, + { + "name": "COEX PLA @BBL X1C", + "sub_path": "filament/COEX/BBL/COEX PLA @BBL X1C.json" + }, { "name": "COEX PLA @System", "sub_path": "filament/COEX/COEX PLA @System.json" }, + { + "name": "COEX PLA PRIME @BBL A1", + "sub_path": "filament/COEX/BBL/COEX PLA PRIME @BBL A1.json" + }, + { + "name": "COEX PLA PRIME @BBL A1 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PLA PRIME @BBL A1 0.2 nozzle.json" + }, + { + "name": "COEX PLA PRIME @BBL A1M", + "sub_path": "filament/COEX/BBL/COEX PLA PRIME @BBL A1M.json" + }, + { + "name": "COEX PLA PRIME @BBL A1M 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PLA PRIME @BBL A1M 0.2 nozzle.json" + }, + { + "name": "COEX PLA PRIME @BBL P1P", + "sub_path": "filament/COEX/BBL/COEX PLA PRIME @BBL P1P.json" + }, + { + "name": "COEX PLA PRIME @BBL P1P 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PLA PRIME @BBL P1P 0.2 nozzle.json" + }, + { + "name": "COEX PLA PRIME @BBL X1", + "sub_path": "filament/COEX/BBL/COEX PLA PRIME @BBL X1.json" + }, + { + "name": "COEX PLA PRIME @BBL X1 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PLA PRIME @BBL X1 0.2 nozzle.json" + }, + { + "name": "COEX PLA PRIME @BBL X1C", + "sub_path": "filament/COEX/BBL/COEX PLA PRIME @BBL X1C.json" + }, + { + "name": "COEX PLA PRIME @BBL X1C 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PLA PRIME @BBL X1C 0.2 nozzle.json" + }, { "name": "COEX PLA PRIME @System", "sub_path": "filament/COEX/COEX PLA PRIME @System.json" @@ -1764,10 +3040,50 @@ "name": "FilAr PLA-mate Violeta", "sub_path": "filament/FilAr/FilAr PLA-mate Violeta.json" }, + { + "name": "addnorth PLA E-PLA", + "sub_path": "filament/addnorth/BBL/addnorth PLA E-PLA.json" + }, + { + "name": "addnorth PLA Economy", + "sub_path": "filament/addnorth/BBL/addnorth PLA Economy.json" + }, + { + "name": "addnorth PLA HT-PLA PRO Matte", + "sub_path": "filament/addnorth/BBL/addnorth PLA HT-PLA PRO Matte.json" + }, + { + "name": "addnorth PLA Textura", + "sub_path": "filament/addnorth/BBL/addnorth PLA Textura.json" + }, + { + "name": "addnorth PLA Wood", + "sub_path": "filament/addnorth/BBL/addnorth PLA Wood.json" + }, + { + "name": "addnorth PLA X-PLA", + "sub_path": "filament/addnorth/BBL/addnorth PLA X-PLA.json" + }, + { + "name": "addnorth PLA rPLA RE-ADD", + "sub_path": "filament/addnorth/BBL/addnorth PLA rPLA RE-ADD.json" + }, + { + "name": "addnorth PLA X-PLA High Speed", + "sub_path": "filament/addnorth/BBL/addnorth PLA X-PLA High Speed.json" + }, { "name": "Generic PLA Matte @System", "sub_path": "filament/Generic PLA Matte @System.json" }, + { + "name": "addnorth PLA Premium Silk", + "sub_path": "filament/addnorth/BBL/addnorth PLA Premium Silk.json" + }, + { + "name": "addnorth PLA-CF Carbon Fiber", + "sub_path": "filament/addnorth/BBL/addnorth PLA-CF Carbon Fiber.json" + }, { "name": "INSLOGIC PLA Pro @BBL P2S", "sub_path": "filament/INSLOGIC/BBL/INSLOGIC PLA Pro @BBL P2S.json" @@ -1816,14 +3132,98 @@ "name": "NIT PLA @System", "sub_path": "filament/NIT/NIT PLA @System.json" }, + { + "name": "Numakers PLA+ @BBL base", + "sub_path": "filament/Numakers/BBL/Numakers PLA+ @BBL base.json" + }, { "name": "Numakers PLA+ @System", "sub_path": "filament/Numakers/Numakers PLA+ @System.json" }, + { + "name": "Overture Air PLA @BBL A1", + "sub_path": "filament/Overture/BBL/Overture Air PLA @BBL A1.json" + }, + { + "name": "Overture Air PLA @BBL A1 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Air PLA @BBL A1 0.2 nozzle.json" + }, + { + "name": "Overture Air PLA @BBL A1M", + "sub_path": "filament/Overture/BBL/Overture Air PLA @BBL A1M.json" + }, + { + "name": "Overture Air PLA @BBL A1M 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Air PLA @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Overture Air PLA @BBL P1P", + "sub_path": "filament/Overture/BBL/Overture Air PLA @BBL P1P.json" + }, + { + "name": "Overture Air PLA @BBL P1P 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Air PLA @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Overture Air PLA @BBL X1", + "sub_path": "filament/Overture/BBL/Overture Air PLA @BBL X1.json" + }, + { + "name": "Overture Air PLA @BBL X1 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Air PLA @BBL X1 0.2 nozzle.json" + }, + { + "name": "Overture Air PLA @BBL X1C", + "sub_path": "filament/Overture/BBL/Overture Air PLA @BBL X1C.json" + }, + { + "name": "Overture Air PLA @BBL X1C 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Air PLA @BBL X1C 0.2 nozzle.json" + }, { "name": "Overture Air PLA @System", "sub_path": "filament/Overture/Overture Air PLA @System.json" }, + { + "name": "Overture Easy PLA @BBL A1", + "sub_path": "filament/Overture/BBL/Overture Easy PLA @BBL A1.json" + }, + { + "name": "Overture Easy PLA @BBL A1 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Easy PLA @BBL A1 0.2 nozzle.json" + }, + { + "name": "Overture Easy PLA @BBL A1M", + "sub_path": "filament/Overture/BBL/Overture Easy PLA @BBL A1M.json" + }, + { + "name": "Overture Easy PLA @BBL A1M 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Easy PLA @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Overture Easy PLA @BBL P1P", + "sub_path": "filament/Overture/BBL/Overture Easy PLA @BBL P1P.json" + }, + { + "name": "Overture Easy PLA @BBL P1P 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Easy PLA @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Overture Easy PLA @BBL X1", + "sub_path": "filament/Overture/BBL/Overture Easy PLA @BBL X1.json" + }, + { + "name": "Overture Easy PLA @BBL X1 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Easy PLA @BBL X1 0.2 nozzle.json" + }, + { + "name": "Overture Easy PLA @BBL X1C", + "sub_path": "filament/Overture/BBL/Overture Easy PLA @BBL X1C.json" + }, + { + "name": "Overture Easy PLA @BBL X1C 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Easy PLA @BBL X1C 0.2 nozzle.json" + }, { "name": "Overture Easy PLA @System", "sub_path": "filament/Overture/Overture Easy PLA @System.json" @@ -1836,82 +3236,270 @@ "name": "Overture PLA @System", "sub_path": "filament/Overture/Overture PLA @System.json" }, + { + "name": "Overture PLA Pro @BBL base", + "sub_path": "filament/Overture/BBL/Overture PLA Pro @BBL base.json" + }, { "name": "Overture PLA Pro @System", "sub_path": "filament/Overture/Overture PLA Pro @System.json" }, + { + "name": "Overture Rock PLA @BBL A1", + "sub_path": "filament/Overture/BBL/Overture Rock PLA @BBL A1.json" + }, + { + "name": "Overture Rock PLA @BBL A1 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Rock PLA @BBL A1 0.2 nozzle.json" + }, + { + "name": "Overture Rock PLA @BBL A1M", + "sub_path": "filament/Overture/BBL/Overture Rock PLA @BBL A1M.json" + }, + { + "name": "Overture Rock PLA @BBL A1M 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Rock PLA @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Overture Rock PLA @BBL P1P", + "sub_path": "filament/Overture/BBL/Overture Rock PLA @BBL P1P.json" + }, + { + "name": "Overture Rock PLA @BBL P1P 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Rock PLA @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Overture Rock PLA @BBL X1", + "sub_path": "filament/Overture/BBL/Overture Rock PLA @BBL X1.json" + }, + { + "name": "Overture Rock PLA @BBL X1 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Rock PLA @BBL X1 0.2 nozzle.json" + }, + { + "name": "Overture Rock PLA @BBL X1C", + "sub_path": "filament/Overture/BBL/Overture Rock PLA @BBL X1C.json" + }, + { + "name": "Overture Rock PLA @BBL X1C 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Rock PLA @BBL X1C 0.2 nozzle.json" + }, { "name": "Overture Rock PLA @System", "sub_path": "filament/Overture/Overture Rock PLA @System.json" }, + { + "name": "Overture Silk PLA @BBL A1", + "sub_path": "filament/Overture/BBL/Overture Silk PLA @BBL A1.json" + }, + { + "name": "Overture Silk PLA @BBL A1 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Silk PLA @BBL A1 0.2 nozzle.json" + }, + { + "name": "Overture Silk PLA @BBL A1M", + "sub_path": "filament/Overture/BBL/Overture Silk PLA @BBL A1M.json" + }, + { + "name": "Overture Silk PLA @BBL A1M 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Silk PLA @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Overture Silk PLA @BBL P1P", + "sub_path": "filament/Overture/BBL/Overture Silk PLA @BBL P1P.json" + }, + { + "name": "Overture Silk PLA @BBL P1P 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Silk PLA @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Overture Silk PLA @BBL X1", + "sub_path": "filament/Overture/BBL/Overture Silk PLA @BBL X1.json" + }, + { + "name": "Overture Silk PLA @BBL X1 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Silk PLA @BBL X1 0.2 nozzle.json" + }, + { + "name": "Overture Silk PLA @BBL X1C", + "sub_path": "filament/Overture/BBL/Overture Silk PLA @BBL X1C.json" + }, + { + "name": "Overture Silk PLA @BBL X1C 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Silk PLA @BBL X1C 0.2 nozzle.json" + }, { "name": "Overture Silk PLA @System", "sub_path": "filament/Overture/Overture Silk PLA @System.json" }, + { + "name": "Overture Super PLA+ @BBL A1", + "sub_path": "filament/Overture/BBL/Overture Super PLA+ @BBL A1.json" + }, + { + "name": "Overture Super PLA+ @BBL A1 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Super PLA+ @BBL A1 0.2 nozzle.json" + }, + { + "name": "Overture Super PLA+ @BBL A1M", + "sub_path": "filament/Overture/BBL/Overture Super PLA+ @BBL A1M.json" + }, + { + "name": "Overture Super PLA+ @BBL A1M 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Super PLA+ @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Overture Super PLA+ @BBL P1P", + "sub_path": "filament/Overture/BBL/Overture Super PLA+ @BBL P1P.json" + }, + { + "name": "Overture Super PLA+ @BBL P1P 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Super PLA+ @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Overture Super PLA+ @BBL X1", + "sub_path": "filament/Overture/BBL/Overture Super PLA+ @BBL X1.json" + }, + { + "name": "Overture Super PLA+ @BBL X1 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Super PLA+ @BBL X1 0.2 nozzle.json" + }, + { + "name": "Overture Super PLA+ @BBL X1C", + "sub_path": "filament/Overture/BBL/Overture Super PLA+ @BBL X1C.json" + }, + { + "name": "Overture Super PLA+ @BBL X1C 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture Super PLA+ @BBL X1C 0.2 nozzle.json" + }, { "name": "Overture Super PLA+ @System", "sub_path": "filament/Overture/Overture Super PLA+ @System.json" }, + { + "name": "Panchroma CoPE @BBL base", + "sub_path": "filament/Polymaker/BBL/Panchroma CoPE @BBL base.json" + }, { "name": "Panchroma CoPE @System", "sub_path": "filament/Polymaker/Panchroma CoPE @System.json" }, + { + "name": "Panchroma PLA @BBL base", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA @BBL base.json" + }, { "name": "Panchroma PLA @System", "sub_path": "filament/Polymaker/Panchroma PLA @System.json" }, + { + "name": "Panchroma PLA Celestial @BBL base", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Celestial @BBL base.json" + }, { "name": "Panchroma PLA Celestial @System", "sub_path": "filament/Polymaker/Panchroma PLA Celestial @System.json" }, + { + "name": "Panchroma PLA Galaxy @BBL base", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL base.json" + }, { "name": "Panchroma PLA Galaxy @System", "sub_path": "filament/Polymaker/Panchroma PLA Galaxy @System.json" }, + { + "name": "Panchroma PLA Glow @BBL base", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Glow @BBL base.json" + }, { "name": "Panchroma PLA Glow @System", "sub_path": "filament/Polymaker/Panchroma PLA Glow @System.json" }, + { + "name": "Panchroma PLA Luminous @BBL base", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Luminous @BBL base.json" + }, { "name": "Panchroma PLA Luminous @System", "sub_path": "filament/Polymaker/Panchroma PLA Luminous @System.json" }, + { + "name": "Panchroma PLA Marble @BBL base", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Marble @BBL base.json" + }, { "name": "Panchroma PLA Marble @System", "sub_path": "filament/Polymaker/Panchroma PLA Marble @System.json" }, + { + "name": "Panchroma PLA Matte @BBL base", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Matte @BBL base.json" + }, { "name": "Panchroma PLA Matte @System", "sub_path": "filament/Polymaker/Panchroma PLA Matte @System.json" }, + { + "name": "Panchroma PLA Metallic @BBL base", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Metallic @BBL base.json" + }, { "name": "Panchroma PLA Metallic @System", "sub_path": "filament/Polymaker/Panchroma PLA Metallic @System.json" }, + { + "name": "Panchroma PLA Neon @BBL base", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Neon @BBL base.json" + }, { "name": "Panchroma PLA Neon @System", "sub_path": "filament/Polymaker/Panchroma PLA Neon @System.json" }, + { + "name": "Panchroma PLA Satin @BBL base", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Satin @BBL base.json" + }, { "name": "Panchroma PLA Satin @System", "sub_path": "filament/Polymaker/Panchroma PLA Satin @System.json" }, + { + "name": "Panchroma PLA Silk @BBL base", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Silk @BBL base.json" + }, { "name": "Panchroma PLA Silk @System", "sub_path": "filament/Polymaker/Panchroma PLA Silk @System.json" }, + { + "name": "Panchroma PLA Starlight @BBL base", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Starlight @BBL base.json" + }, { "name": "Panchroma PLA Starlight @System", "sub_path": "filament/Polymaker/Panchroma PLA Starlight @System.json" }, + { + "name": "Panchroma PLA Temp Shift @BBL base", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL base.json" + }, { "name": "Panchroma PLA Temp Shift @System", "sub_path": "filament/Polymaker/Panchroma PLA Temp Shift @System.json" }, + { + "name": "Panchroma PLA Translucent @BBL base", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Translucent @BBL base.json" + }, { "name": "Panchroma PLA Translucent @System", "sub_path": "filament/Polymaker/Panchroma PLA Translucent @System.json" }, + { + "name": "Panchroma PLA UV Shift @BBL base", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL base.json" + }, { "name": "Panchroma PLA UV Shift @System", "sub_path": "filament/Polymaker/Panchroma PLA UV Shift @System.json" @@ -1920,6 +3508,22 @@ "name": "PlastAR PLA @System", "sub_path": "filament/Printalot/PlastAR PLA @System.json" }, + { + "name": "PolyLite CosPLA @BBL A1", + "sub_path": "filament/Polymaker/BBL/PolyLite CosPLA @BBL A1.json" + }, + { + "name": "PolyLite CosPLA @BBL A1M", + "sub_path": "filament/Polymaker/BBL/PolyLite CosPLA @BBL A1M.json" + }, + { + "name": "PolyLite CosPLA @BBL P1P", + "sub_path": "filament/Polymaker/BBL/PolyLite CosPLA @BBL P1P.json" + }, + { + "name": "PolyLite CosPLA @BBL X1", + "sub_path": "filament/Polymaker/BBL/PolyLite CosPLA @BBL X1.json" + }, { "name": "PolyLite Dual PLA @base", "sub_path": "filament/Polymaker/PolyLite Dual PLA @base.json" @@ -1928,10 +3532,110 @@ "name": "PolyLite PLA @System", "sub_path": "filament/Polymaker/PolyLite PLA @System.json" }, + { + "name": "PolyLite PLA Galaxy @BBL A1", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Galaxy @BBL A1.json" + }, + { + "name": "PolyLite PLA Galaxy @BBL A1M", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Galaxy @BBL A1M.json" + }, + { + "name": "PolyLite PLA Galaxy @BBL P1P", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Galaxy @BBL P1P.json" + }, + { + "name": "PolyLite PLA Galaxy @BBL X1", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Galaxy @BBL X1.json" + }, + { + "name": "PolyLite PLA Glow @BBL A1", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Glow @BBL A1.json" + }, + { + "name": "PolyLite PLA Glow @BBL A1M", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Glow @BBL A1M.json" + }, + { + "name": "PolyLite PLA Glow @BBL P1P", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Glow @BBL P1P.json" + }, + { + "name": "PolyLite PLA Glow @BBL X1", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Glow @BBL X1.json" + }, + { + "name": "PolyLite PLA Luminous @BBL A1", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Luminous @BBL A1.json" + }, + { + "name": "PolyLite PLA Luminous @BBL A1M", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Luminous @BBL A1M.json" + }, + { + "name": "PolyLite PLA Luminous @BBL P1P", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Luminous @BBL P1P.json" + }, + { + "name": "PolyLite PLA Luminous @BBL X1", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Luminous @BBL X1.json" + }, + { + "name": "PolyLite PLA Neon @BBL A1", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Neon @BBL A1.json" + }, + { + "name": "PolyLite PLA Neon @BBL A1M", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Neon @BBL A1M.json" + }, + { + "name": "PolyLite PLA Neon @BBL P1P", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Neon @BBL P1P.json" + }, + { + "name": "PolyLite PLA Neon @BBL X1", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Neon @BBL X1.json" + }, + { + "name": "PolyLite PLA Pro @BBL base", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Pro @BBL base.json" + }, { "name": "PolyLite PLA Pro @System", "sub_path": "filament/Polymaker/PolyLite PLA Pro @System.json" }, + { + "name": "PolyLite PLA Starlight @BBL A1", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Starlight @BBL A1.json" + }, + { + "name": "PolyLite PLA Starlight @BBL A1M", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Starlight @BBL A1M.json" + }, + { + "name": "PolyLite PLA Starlight @BBL P1P", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Starlight @BBL P1P.json" + }, + { + "name": "PolyLite PLA Starlight @BBL X1", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Starlight @BBL X1.json" + }, + { + "name": "PolyLite PLA Translucent @BBL A1", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Translucent @BBL A1.json" + }, + { + "name": "PolyLite PLA Translucent @BBL A1M", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Translucent @BBL A1M.json" + }, + { + "name": "PolyLite PLA Translucent @BBL P1P", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Translucent @BBL P1P.json" + }, + { + "name": "PolyLite PLA Translucent @BBL X1", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Translucent @BBL X1.json" + }, { "name": "PolyTerra Dual PLA @System", "sub_path": "filament/Polymaker/PolyTerra Dual PLA @System.json" @@ -1940,10 +3644,50 @@ "name": "PolyTerra PLA @System", "sub_path": "filament/Polymaker/PolyTerra PLA @System.json" }, + { + "name": "PolyTerra PLA Marble @BBL A1", + "sub_path": "filament/Polymaker/BBL/PolyTerra PLA Marble @BBL A1.json" + }, + { + "name": "PolyTerra PLA Marble @BBL A1M", + "sub_path": "filament/Polymaker/BBL/PolyTerra PLA Marble @BBL A1M.json" + }, + { + "name": "PolyTerra PLA Marble @BBL P1P", + "sub_path": "filament/Polymaker/BBL/PolyTerra PLA Marble @BBL P1P.json" + }, + { + "name": "PolyTerra PLA Marble @BBL X1", + "sub_path": "filament/Polymaker/BBL/PolyTerra PLA Marble @BBL X1.json" + }, + { + "name": "PolyTerra PLA+ @BBL A1", + "sub_path": "filament/Polymaker/BBL/PolyTerra PLA+ @BBL A1.json" + }, + { + "name": "PolyTerra PLA+ @BBL A1M", + "sub_path": "filament/Polymaker/BBL/PolyTerra PLA+ @BBL A1M.json" + }, + { + "name": "PolyTerra PLA+ @BBL P1P", + "sub_path": "filament/Polymaker/BBL/PolyTerra PLA+ @BBL P1P.json" + }, + { + "name": "PolyTerra PLA+ @BBL X1", + "sub_path": "filament/Polymaker/BBL/PolyTerra PLA+ @BBL X1.json" + }, + { + "name": "Polymaker HT-PLA @BBL base", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA @BBL base.json" + }, { "name": "Polymaker HT-PLA @System", "sub_path": "filament/Polymaker/Polymaker HT-PLA @System.json" }, + { + "name": "Polymaker HT-PLA-GF @BBL base", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL base.json" + }, { "name": "Polymaker HT-PLA-GF @System", "sub_path": "filament/Polymaker/Polymaker HT-PLA-GF @System.json" @@ -2048,6 +3792,106 @@ "name": "FDplast SBS @System", "sub_path": "filament/FDplast/FDplast SBS @System.json" }, + { + "name": "BETA PEBA 90A @BBL A1", + "sub_path": "filament/BETA/BBL/BETA PEBA 90A @BBL A1.json" + }, + { + "name": "BETA PEBA 90A @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA PEBA 90A @BBL A1M.json" + }, + { + "name": "BETA PEBA 90A @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA PEBA 90A @BBL H2D.json" + }, + { + "name": "BETA PEBA 90A @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA PEBA 90A @BBL P1P.json" + }, + { + "name": "BETA PEBA 90A @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA PEBA 90A @BBL X1C.json" + }, + { + "name": "BETA TPU 90A @BBL A1", + "sub_path": "filament/BETA/BBL/BETA TPU 90A @BBL A1.json" + }, + { + "name": "BETA TPU 90A @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA TPU 90A @BBL A1M.json" + }, + { + "name": "BETA TPU 90A @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA TPU 90A @BBL H2D.json" + }, + { + "name": "BETA TPU 90A @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA TPU 90A @BBL P1P.json" + }, + { + "name": "BETA TPU 90A @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA TPU 90A @BBL X1C.json" + }, + { + "name": "BETA TPU 95A @BBL A1", + "sub_path": "filament/BETA/BBL/BETA TPU 95A @BBL A1.json" + }, + { + "name": "BETA TPU 95A @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA TPU 95A @BBL A1M.json" + }, + { + "name": "BETA TPU 95A @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA TPU 95A @BBL H2D.json" + }, + { + "name": "BETA TPU 95A @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA TPU 95A @BBL P1P.json" + }, + { + "name": "BETA TPU 95A @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA TPU 95A @BBL X1C.json" + }, + { + "name": "BETA TPU 98A @BBL A1", + "sub_path": "filament/BETA/BBL/BETA TPU 98A @BBL A1.json" + }, + { + "name": "BETA TPU 98A @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA TPU 98A @BBL A1M.json" + }, + { + "name": "BETA TPU 98A @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA TPU 98A @BBL H2D.json" + }, + { + "name": "BETA TPU 98A @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA TPU 98A @BBL P1P.json" + }, + { + "name": "BETA TPU 98A @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA TPU 98A @BBL X1C.json" + }, + { + "name": "BETA TPU Matte @BBL A1", + "sub_path": "filament/BETA/BBL/BETA TPU Matte @BBL A1.json" + }, + { + "name": "BETA TPU Matte @BBL A1M", + "sub_path": "filament/BETA/BBL/BETA TPU Matte @BBL A1M.json" + }, + { + "name": "BETA TPU Matte @BBL H2D", + "sub_path": "filament/BETA/BBL/BETA TPU Matte @BBL H2D.json" + }, + { + "name": "BETA TPU Matte @BBL P1P", + "sub_path": "filament/BETA/BBL/BETA TPU Matte @BBL P1P.json" + }, + { + "name": "BETA TPU Matte @BBL X1C", + "sub_path": "filament/BETA/BBL/BETA TPU Matte @BBL X1C.json" + }, { "name": "Bambu TPU 95A @System", "sub_path": "filament/Bambu/Bambu TPU 95A @System.json" @@ -2056,18 +3900,122 @@ "name": "Bambu TPU 95A HF @System", "sub_path": "filament/Bambu/Bambu TPU 95A HF @System.json" }, + { + "name": "COEX TPE 30D @BBL A1", + "sub_path": "filament/COEX/BBL/COEX TPE 30D @BBL A1.json" + }, + { + "name": "COEX TPE 30D @BBL A1M", + "sub_path": "filament/COEX/BBL/COEX TPE 30D @BBL A1M.json" + }, + { + "name": "COEX TPE 30D @BBL P1P", + "sub_path": "filament/COEX/BBL/COEX TPE 30D @BBL P1P.json" + }, + { + "name": "COEX TPE 30D @BBL X1", + "sub_path": "filament/COEX/BBL/COEX TPE 30D @BBL X1.json" + }, + { + "name": "COEX TPE 30D @BBL X1C", + "sub_path": "filament/COEX/BBL/COEX TPE 30D @BBL X1C.json" + }, { "name": "COEX TPE 30D @System", "sub_path": "filament/COEX/COEX TPE 30D @System.json" }, + { + "name": "COEX TPE 40D @BBL A1", + "sub_path": "filament/COEX/BBL/COEX TPE 40D @BBL A1.json" + }, + { + "name": "COEX TPE 40D @BBL A1 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX TPE 40D @BBL A1 0.2 nozzle.json" + }, + { + "name": "COEX TPE 40D @BBL A1M", + "sub_path": "filament/COEX/BBL/COEX TPE 40D @BBL A1M.json" + }, + { + "name": "COEX TPE 40D @BBL A1M 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX TPE 40D @BBL A1M 0.2 nozzle.json" + }, + { + "name": "COEX TPE 40D @BBL P1P", + "sub_path": "filament/COEX/BBL/COEX TPE 40D @BBL P1P.json" + }, + { + "name": "COEX TPE 40D @BBL P1P 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX TPE 40D @BBL P1P 0.2 nozzle.json" + }, + { + "name": "COEX TPE 40D @BBL X1", + "sub_path": "filament/COEX/BBL/COEX TPE 40D @BBL X1.json" + }, + { + "name": "COEX TPE 40D @BBL X1 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX TPE 40D @BBL X1 0.2 nozzle.json" + }, + { + "name": "COEX TPE 40D @BBL X1C", + "sub_path": "filament/COEX/BBL/COEX TPE 40D @BBL X1C.json" + }, + { + "name": "COEX TPE 40D @BBL X1C 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX TPE 40D @BBL X1C 0.2 nozzle.json" + }, { "name": "COEX TPE 40D @System", "sub_path": "filament/COEX/COEX TPE 40D @System.json" }, + { + "name": "COEX TPE 60D @BBL A1", + "sub_path": "filament/COEX/BBL/COEX TPE 60D @BBL A1.json" + }, + { + "name": "COEX TPE 60D @BBL A1 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX TPE 60D @BBL A1 0.2 nozzle.json" + }, + { + "name": "COEX TPE 60D @BBL A1M", + "sub_path": "filament/COEX/BBL/COEX TPE 60D @BBL A1M.json" + }, + { + "name": "COEX TPE 60D @BBL A1M 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX TPE 60D @BBL A1M 0.2 nozzle.json" + }, + { + "name": "COEX TPE 60D @BBL P1P", + "sub_path": "filament/COEX/BBL/COEX TPE 60D @BBL P1P.json" + }, + { + "name": "COEX TPE 60D @BBL P1P 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX TPE 60D @BBL P1P 0.2 nozzle.json" + }, + { + "name": "COEX TPE 60D @BBL X1", + "sub_path": "filament/COEX/BBL/COEX TPE 60D @BBL X1.json" + }, + { + "name": "COEX TPE 60D @BBL X1 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX TPE 60D @BBL X1 0.2 nozzle.json" + }, + { + "name": "COEX TPE 60D @BBL X1C", + "sub_path": "filament/COEX/BBL/COEX TPE 60D @BBL X1C.json" + }, + { + "name": "COEX TPE 60D @BBL X1C 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX TPE 60D @BBL X1C 0.2 nozzle.json" + }, { "name": "COEX TPE 60D @System", "sub_path": "filament/COEX/COEX TPE 60D @System.json" }, + { + "name": "COEX TPU 60A @BBL X1C", + "sub_path": "filament/COEX/BBL/COEX TPU 60A @BBL X1C.json" + }, { "name": "COEX TPU 60A @System", "sub_path": "filament/COEX/COEX TPU 60A @System.json" @@ -2088,6 +4036,58 @@ "name": "FDplast TPU @System", "sub_path": "filament/FDplast/FDplast TPU @System.json" }, + { + "name": "addnorth TPU EasyFlex", + "sub_path": "filament/addnorth/BBL/addnorth TPU EasyFlex.json" + }, + { + "name": "addnorth TPU Pro Matte 85A", + "sub_path": "filament/addnorth/BBL/addnorth TPU Pro Matte 85A.json" + }, + { + "name": "addnorth TPU Pro Matte 95A", + "sub_path": "filament/addnorth/BBL/addnorth TPU Pro Matte 95A.json" + }, + { + "name": "Overture TPU @BBL A1", + "sub_path": "filament/Overture/BBL/Overture TPU @BBL A1.json" + }, + { + "name": "Overture TPU @BBL A1 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture TPU @BBL A1 0.2 nozzle.json" + }, + { + "name": "Overture TPU @BBL A1M", + "sub_path": "filament/Overture/BBL/Overture TPU @BBL A1M.json" + }, + { + "name": "Overture TPU @BBL A1M 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture TPU @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Overture TPU @BBL P1P", + "sub_path": "filament/Overture/BBL/Overture TPU @BBL P1P.json" + }, + { + "name": "Overture TPU @BBL P1P 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture TPU @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Overture TPU @BBL X1", + "sub_path": "filament/Overture/BBL/Overture TPU @BBL X1.json" + }, + { + "name": "Overture TPU @BBL X1 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture TPU @BBL X1 0.2 nozzle.json" + }, + { + "name": "Overture TPU @BBL X1C", + "sub_path": "filament/Overture/BBL/Overture TPU @BBL X1C.json" + }, + { + "name": "Overture TPU @BBL X1C 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture TPU @BBL X1C 0.2 nozzle.json" + }, { "name": "Overture TPU @System", "sub_path": "filament/Overture/Overture TPU @System.json" @@ -2100,14 +4100,46 @@ "name": "Elegoo PC-FR @System", "sub_path": "filament/Elegoo/Elegoo PC-FR @System.json" }, + { + "name": "COEX PCTG PRIME @BBL A1M 0.4 nozzle", + "sub_path": "filament/COEX/BBL/COEX PCTG PRIME @BBL A1M.json" + }, + { + "name": "COEX PCTG PRIME @BBL A1M 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PCTG PRIME @BBL A1M 0.2 nozzle.json" + }, + { + "name": "COEX PCTG PRIME @BBL A1M 0.8 nozzle", + "sub_path": "filament/COEX/BBL/COEX PCTG PRIME @BBL A1M 0.8 nozzle.json" + }, + { + "name": "AliZ PETG-CF @P1-X1", + "sub_path": "filament/AliZ/BBL/AliZ PETG-CF @P1-X1.json" + }, { "name": "AliZ PETG-CF @System", "sub_path": "filament/AliZ/AliZ PETG-CF @System.json" }, + { + "name": "AliZ PETG-Metal @P1-X1", + "sub_path": "filament/AliZ/BBL/AliZ PETG-Metal @P1-X1.json" + }, { "name": "AliZ PETG-Metal @System", "sub_path": "filament/AliZ/AliZ PETG-Metal @System.json" }, + { + "name": "COEX PETG @BBL A1M 0.4 nozzle", + "sub_path": "filament/COEX/BBL/COEX PETG @BBL A1M.json" + }, + { + "name": "COEX PETG @BBL A1M 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PETG @BBL A1M 0.2 nozzle.json" + }, + { + "name": "COEX PETG @BBL A1M 0.8 nozzle", + "sub_path": "filament/COEX/BBL/COEX PETG @BBL A1M 0.8 nozzle.json" + }, { "name": "Elegoo PET-CF @System", "sub_path": "filament/Elegoo/Elegoo PET-CF @System.json" @@ -2136,6 +4168,26 @@ "name": "Elegoo Rapid PETG @System", "sub_path": "filament/Elegoo/Elegoo Rapid PETG @System.json" }, + { + "name": "Fiberon PETG-ESD @BBL X1", + "sub_path": "filament/Polymaker/BBL/Fiberon PETG-ESD @BBL X1.json" + }, + { + "name": "addnorth PETG-CF Rigid X", + "sub_path": "filament/addnorth/BBL/addnorth PETG-CF Rigid X.json" + }, + { + "name": "COEX PLA @BBL A1M 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PLA @BBL A1M 0.2 nozzle.json" + }, + { + "name": "COEX PLA @BBL P1P 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PLA @BBL P1P 0.2 nozzle.json" + }, + { + "name": "COEX PLA @BBL X1C 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PLA @BBL X1C 0.2 nozzle.json" + }, { "name": "Elegoo PLA Basic @System", "sub_path": "filament/Elegoo/Elegoo PLA Basic @System.json" @@ -2188,10 +4240,886 @@ "name": "Elegoo Rapid PLA+ @System", "sub_path": "filament/Elegoo/Elegoo Rapid PLA+ @System.json" }, + { + "name": "Numakers PLA+ @BBL A1", + "sub_path": "filament/Numakers/BBL/Numakers PLA+ @BBL A1.json" + }, + { + "name": "Numakers PLA+ @BBL A1 0.2 nozzle", + "sub_path": "filament/Numakers/BBL/Numakers PLA+ @BBL A1 0.2 nozzle.json" + }, + { + "name": "Numakers PLA+ @BBL A1M", + "sub_path": "filament/Numakers/BBL/Numakers PLA+ @BBL A1M.json" + }, + { + "name": "Numakers PLA+ @BBL A1M 0.2 nozzle", + "sub_path": "filament/Numakers/BBL/Numakers PLA+ @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Numakers PLA+ @BBL P1P", + "sub_path": "filament/Numakers/BBL/Numakers PLA+ @BBL P1P.json" + }, + { + "name": "Numakers PLA+ @BBL P1P 0.2 nozzle", + "sub_path": "filament/Numakers/BBL/Numakers PLA+ @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Numakers PLA+ @BBL X1", + "sub_path": "filament/Numakers/BBL/Numakers PLA+ @BBL X1.json" + }, + { + "name": "Numakers PLA+ @BBL X1C", + "sub_path": "filament/Numakers/BBL/Numakers PLA+ @BBL X1C.json" + }, + { + "name": "Numakers PLA+ @BBL X1C 0.2 nozzle", + "sub_path": "filament/Numakers/BBL/Numakers PLA+ @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Overture PLA Pro @BBL A1", + "sub_path": "filament/Overture/BBL/Overture PLA Pro @BBL A1.json" + }, + { + "name": "Overture PLA Pro @BBL A1 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture PLA Pro @BBL A1 0.2 nozzle.json" + }, + { + "name": "Overture PLA Pro @BBL A1M", + "sub_path": "filament/Overture/BBL/Overture PLA Pro @BBL A1M.json" + }, + { + "name": "Overture PLA Pro @BBL A1M 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture PLA Pro @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Overture PLA Pro @BBL P1P", + "sub_path": "filament/Overture/BBL/Overture PLA Pro @BBL P1P.json" + }, + { + "name": "Overture PLA Pro @BBL P1P 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture PLA Pro @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Overture PLA Pro @BBL X1", + "sub_path": "filament/Overture/BBL/Overture PLA Pro @BBL X1.json" + }, + { + "name": "Overture PLA Pro @BBL X1 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture PLA Pro @BBL X1 0.2 nozzle.json" + }, + { + "name": "Overture PLA Pro @BBL X1C", + "sub_path": "filament/Overture/BBL/Overture PLA Pro @BBL X1C.json" + }, + { + "name": "Overture PLA Pro @BBL X1C 0.2 nozzle", + "sub_path": "filament/Overture/BBL/Overture PLA Pro @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Panchroma CoPE @BBL A1", + "sub_path": "filament/Polymaker/BBL/Panchroma CoPE @BBL A1.json" + }, + { + "name": "Panchroma CoPE @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma CoPE @BBL A1 0.2 nozzle.json" + }, + { + "name": "Panchroma CoPE @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Panchroma CoPE @BBL A1M.json" + }, + { + "name": "Panchroma CoPE @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma CoPE @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Panchroma CoPE @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Panchroma CoPE @BBL P1P.json" + }, + { + "name": "Panchroma CoPE @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma CoPE @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Panchroma CoPE @BBL X1", + "sub_path": "filament/Polymaker/BBL/Panchroma CoPE @BBL X1.json" + }, + { + "name": "Panchroma CoPE @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma CoPE @BBL X1 0.2 nozzle.json" + }, + { + "name": "Panchroma CoPE @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Panchroma CoPE @BBL X1C.json" + }, + { + "name": "Panchroma CoPE @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma CoPE @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA @BBL A1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA @BBL A1.json" + }, + { + "name": "Panchroma PLA @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA @BBL A1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA @BBL A1M.json" + }, + { + "name": "Panchroma PLA @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA @BBL P1P.json" + }, + { + "name": "Panchroma PLA @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA @BBL X1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA @BBL X1.json" + }, + { + "name": "Panchroma PLA @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA @BBL X1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA @BBL X1C.json" + }, + { + "name": "Panchroma PLA @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Celestial @BBL A1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Celestial @BBL A1.json" + }, + { + "name": "Panchroma PLA Celestial @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Celestial @BBL A1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Celestial @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Celestial @BBL A1M.json" + }, + { + "name": "Panchroma PLA Celestial @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Celestial @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Celestial @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Celestial @BBL P1P.json" + }, + { + "name": "Panchroma PLA Celestial @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Celestial @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Celestial @BBL X1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Celestial @BBL X1.json" + }, + { + "name": "Panchroma PLA Celestial @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Celestial @BBL X1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Celestial @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Celestial @BBL X1C.json" + }, + { + "name": "Panchroma PLA Celestial @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Celestial @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Galaxy @BBL A1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL A1.json" + }, + { + "name": "Panchroma PLA Galaxy @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL A1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Galaxy @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL A1M.json" + }, + { + "name": "Panchroma PLA Galaxy @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Galaxy @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL P1P.json" + }, + { + "name": "Panchroma PLA Galaxy @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Galaxy @BBL X1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL X1.json" + }, + { + "name": "Panchroma PLA Galaxy @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL X1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Galaxy @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL X1C.json" + }, + { + "name": "Panchroma PLA Galaxy @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Glow @BBL A1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Glow @BBL A1.json" + }, + { + "name": "Panchroma PLA Glow @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Glow @BBL A1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Glow @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Glow @BBL A1M.json" + }, + { + "name": "Panchroma PLA Glow @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Glow @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Glow @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Glow @BBL P1P.json" + }, + { + "name": "Panchroma PLA Glow @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Glow @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Glow @BBL X1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Glow @BBL X1.json" + }, + { + "name": "Panchroma PLA Glow @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Glow @BBL X1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Glow @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Glow @BBL X1C.json" + }, + { + "name": "Panchroma PLA Glow @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Glow @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Luminous @BBL A1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Luminous @BBL A1.json" + }, + { + "name": "Panchroma PLA Luminous @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Luminous @BBL A1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Luminous @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Luminous @BBL A1M.json" + }, + { + "name": "Panchroma PLA Luminous @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Luminous @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Luminous @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Luminous @BBL P1P.json" + }, + { + "name": "Panchroma PLA Luminous @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Luminous @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Luminous @BBL X1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Luminous @BBL X1.json" + }, + { + "name": "Panchroma PLA Luminous @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Luminous @BBL X1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Luminous @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Luminous @BBL X1C.json" + }, + { + "name": "Panchroma PLA Luminous @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Luminous @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Marble @BBL A1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Marble @BBL A1.json" + }, + { + "name": "Panchroma PLA Marble @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Marble @BBL A1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Marble @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Marble @BBL A1M.json" + }, + { + "name": "Panchroma PLA Marble @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Marble @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Marble @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Marble @BBL P1P.json" + }, + { + "name": "Panchroma PLA Marble @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Marble @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Marble @BBL X1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Marble @BBL X1.json" + }, + { + "name": "Panchroma PLA Marble @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Marble @BBL X1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Marble @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Marble @BBL X1C.json" + }, + { + "name": "Panchroma PLA Marble @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Marble @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Matte @BBL A1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Matte @BBL A1.json" + }, + { + "name": "Panchroma PLA Matte @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Matte @BBL A1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Matte @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Matte @BBL A1M.json" + }, + { + "name": "Panchroma PLA Matte @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Matte @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Matte @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Matte @BBL P1P.json" + }, + { + "name": "Panchroma PLA Matte @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Matte @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Matte @BBL X1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Matte @BBL X1.json" + }, + { + "name": "Panchroma PLA Matte @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Matte @BBL X1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Matte @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Matte @BBL X1C.json" + }, + { + "name": "Panchroma PLA Matte @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Matte @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Metallic @BBL A1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Metallic @BBL A1.json" + }, + { + "name": "Panchroma PLA Metallic @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Metallic @BBL A1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Metallic @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Metallic @BBL A1M.json" + }, + { + "name": "Panchroma PLA Metallic @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Metallic @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Metallic @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Metallic @BBL P1P.json" + }, + { + "name": "Panchroma PLA Metallic @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Metallic @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Metallic @BBL X1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Metallic @BBL X1.json" + }, + { + "name": "Panchroma PLA Metallic @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Metallic @BBL X1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Metallic @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Metallic @BBL X1C.json" + }, + { + "name": "Panchroma PLA Metallic @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Metallic @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Neon @BBL A1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Neon @BBL A1.json" + }, + { + "name": "Panchroma PLA Neon @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Neon @BBL A1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Neon @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Neon @BBL A1M.json" + }, + { + "name": "Panchroma PLA Neon @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Neon @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Neon @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Neon @BBL P1P.json" + }, + { + "name": "Panchroma PLA Neon @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Neon @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Neon @BBL X1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Neon @BBL X1.json" + }, + { + "name": "Panchroma PLA Neon @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Neon @BBL X1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Neon @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Neon @BBL X1C.json" + }, + { + "name": "Panchroma PLA Neon @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Neon @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Satin @BBL A1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Satin @BBL A1.json" + }, + { + "name": "Panchroma PLA Satin @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Satin @BBL A1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Satin @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Satin @BBL A1M.json" + }, + { + "name": "Panchroma PLA Satin @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Satin @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Satin @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Satin @BBL P1P.json" + }, + { + "name": "Panchroma PLA Satin @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Satin @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Satin @BBL X1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Satin @BBL X1.json" + }, + { + "name": "Panchroma PLA Satin @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Satin @BBL X1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Satin @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Satin @BBL X1C.json" + }, + { + "name": "Panchroma PLA Satin @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Satin @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Silk @BBL A1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Silk @BBL A1.json" + }, + { + "name": "Panchroma PLA Silk @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Silk @BBL A1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Silk @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Silk @BBL A1M.json" + }, + { + "name": "Panchroma PLA Silk @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Silk @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Silk @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Silk @BBL P1P.json" + }, + { + "name": "Panchroma PLA Silk @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Silk @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Silk @BBL X1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Silk @BBL X1.json" + }, + { + "name": "Panchroma PLA Silk @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Silk @BBL X1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Silk @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Silk @BBL X1C.json" + }, + { + "name": "Panchroma PLA Silk @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Starlight @BBL A1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Starlight @BBL A1.json" + }, + { + "name": "Panchroma PLA Starlight @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Starlight @BBL A1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Starlight @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Starlight @BBL A1M.json" + }, + { + "name": "Panchroma PLA Starlight @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Starlight @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Starlight @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Starlight @BBL P1P.json" + }, + { + "name": "Panchroma PLA Starlight @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Starlight @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Starlight @BBL X1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Starlight @BBL X1.json" + }, + { + "name": "Panchroma PLA Starlight @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Starlight @BBL X1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Starlight @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Starlight @BBL X1C.json" + }, + { + "name": "Panchroma PLA Starlight @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Starlight @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Temp Shift @BBL A1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL A1.json" + }, + { + "name": "Panchroma PLA Temp Shift @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL A1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Temp Shift @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL A1M.json" + }, + { + "name": "Panchroma PLA Temp Shift @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Temp Shift @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL P1P.json" + }, + { + "name": "Panchroma PLA Temp Shift @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Temp Shift @BBL X1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL X1.json" + }, + { + "name": "Panchroma PLA Temp Shift @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL X1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Temp Shift @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL X1C.json" + }, + { + "name": "Panchroma PLA Temp Shift @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Translucent @BBL A1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Translucent @BBL A1.json" + }, + { + "name": "Panchroma PLA Translucent @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Translucent @BBL A1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Translucent @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Translucent @BBL A1M.json" + }, + { + "name": "Panchroma PLA Translucent @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Translucent @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Translucent @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Translucent @BBL P1P.json" + }, + { + "name": "Panchroma PLA Translucent @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Translucent @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Translucent @BBL X1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Translucent @BBL X1.json" + }, + { + "name": "Panchroma PLA Translucent @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Translucent @BBL X1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA Translucent @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Translucent @BBL X1C.json" + }, + { + "name": "Panchroma PLA Translucent @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA Translucent @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA UV Shift @BBL A1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL A1.json" + }, + { + "name": "Panchroma PLA UV Shift @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL A1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA UV Shift @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL A1M.json" + }, + { + "name": "Panchroma PLA UV Shift @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA UV Shift @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL P1P.json" + }, + { + "name": "Panchroma PLA UV Shift @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA UV Shift @BBL X1", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL X1.json" + }, + { + "name": "Panchroma PLA UV Shift @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL X1 0.2 nozzle.json" + }, + { + "name": "Panchroma PLA UV Shift @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL X1C.json" + }, + { + "name": "Panchroma PLA UV Shift @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL X1C 0.2 nozzle.json" + }, { "name": "PolyLite Dual PLA @System", "sub_path": "filament/Polymaker/PolyLite Dual PLA @System.json" }, + { + "name": "PolyLite PLA Pro @BBL A1", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Pro @BBL A1.json" + }, + { + "name": "PolyLite PLA Pro @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Pro @BBL A1 0.2 nozzle.json" + }, + { + "name": "PolyLite PLA Pro @BBL A1M", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Pro @BBL A1M.json" + }, + { + "name": "PolyLite PLA Pro @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Pro @BBL A1M 0.2 nozzle.json" + }, + { + "name": "PolyLite PLA Pro @BBL P1P", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Pro @BBL P1P.json" + }, + { + "name": "PolyLite PLA Pro @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Pro @BBL P1P 0.2 nozzle.json" + }, + { + "name": "PolyLite PLA Pro @BBL X1", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Pro @BBL X1.json" + }, + { + "name": "PolyLite PLA Pro @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Pro @BBL X1 0.2 nozzle.json" + }, + { + "name": "PolyLite PLA Pro @BBL X1C", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Pro @BBL X1C.json" + }, + { + "name": "PolyLite PLA Pro @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/PolyLite PLA Pro @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Polymaker HT-PLA @BBL A1", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA @BBL A1.json" + }, + { + "name": "Polymaker HT-PLA @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA @BBL A1 0.2 nozzle.json" + }, + { + "name": "Polymaker HT-PLA @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA @BBL A1M.json" + }, + { + "name": "Polymaker HT-PLA @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Polymaker HT-PLA @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA @BBL P1P.json" + }, + { + "name": "Polymaker HT-PLA @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Polymaker HT-PLA @BBL X1", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA @BBL X1.json" + }, + { + "name": "Polymaker HT-PLA @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA @BBL X1 0.2 nozzle.json" + }, + { + "name": "Polymaker HT-PLA @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA @BBL X1C.json" + }, + { + "name": "Polymaker HT-PLA @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Polymaker HT-PLA-GF @BBL A1", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL A1.json" + }, + { + "name": "Polymaker HT-PLA-GF @BBL A1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL A1 0.2 nozzle.json" + }, + { + "name": "Polymaker HT-PLA-GF @BBL A1M", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL A1M.json" + }, + { + "name": "Polymaker HT-PLA-GF @BBL A1M 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Polymaker HT-PLA-GF @BBL P1P", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL P1P.json" + }, + { + "name": "Polymaker HT-PLA-GF @BBL P1P 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Polymaker HT-PLA-GF @BBL X1", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL X1.json" + }, + { + "name": "Polymaker HT-PLA-GF @BBL X1 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL X1 0.2 nozzle.json" + }, + { + "name": "Polymaker HT-PLA-GF @BBL X1C", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL X1C.json" + }, + { + "name": "Polymaker HT-PLA-GF @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL X1C 0.2 nozzle.json" + }, + { + "name": "COEX PLA+Silk @BBL A1", + "sub_path": "filament/COEX/BBL/COEX PLA+Silk @BBL A1.json" + }, + { + "name": "COEX PLA+Silk @BBL A1 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PLA+Silk @BBL A1 0.2 nozzle.json" + }, + { + "name": "COEX PLA+Silk @BBL A1M", + "sub_path": "filament/COEX/BBL/COEX PLA+Silk @BBL A1M.json" + }, + { + "name": "COEX PLA+Silk @BBL A1M 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PLA+Silk @BBL A1M 0.2 nozzle.json" + }, + { + "name": "COEX PLA+Silk @BBL P1P", + "sub_path": "filament/COEX/BBL/COEX PLA+Silk @BBL P1P.json" + }, + { + "name": "COEX PLA+Silk @BBL P1P 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PLA+Silk @BBL P1P 0.2 nozzle.json" + }, + { + "name": "COEX PLA+Silk @BBL X1", + "sub_path": "filament/COEX/BBL/COEX PLA+Silk @BBL X1.json" + }, + { + "name": "COEX PLA+Silk @BBL X1 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PLA+Silk @BBL X1 0.2 nozzle.json" + }, + { + "name": "COEX PLA+Silk @BBL X1C", + "sub_path": "filament/COEX/BBL/COEX PLA+Silk @BBL X1C.json" + }, + { + "name": "COEX PLA+Silk @BBL X1C 0.2 nozzle", + "sub_path": "filament/COEX/BBL/COEX PLA+Silk @BBL X1C 0.2 nozzle.json" + }, { "name": "COEX PLA+Silk @System", "sub_path": "filament/COEX/COEX PLA+Silk @System.json" diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PA-CF @P1-X1.json b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/BBL/AliZ PA-CF @P1-X1.json similarity index 91% rename from resources/profiles/BBL/filament/AliZ/AliZ PA-CF @P1-X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/AliZ/BBL/AliZ PA-CF @P1-X1.json index c94baa16f8..bc75a0717f 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PA-CF @P1-X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/BBL/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": "AliZ003_00", + "setting_id": "cN0uesF0mZf3KSkj", "instantiation": "true", "enable_pressure_advance": [ "1" diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PETG @P1-X1.json b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/BBL/AliZ PETG @P1-X1.json similarity index 91% rename from resources/profiles/BBL/filament/AliZ/AliZ PETG @P1-X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/AliZ/BBL/AliZ PETG @P1-X1.json index 9549920f5a..9976c2e168 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PETG @P1-X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/BBL/AliZ PETG @P1-X1.json @@ -3,7 +3,7 @@ "name": "AliZ PETG @P1-X1", "inherits": "AliZ PETG @base", "from": "system", - "setting_id": "AliZ001_00", + "setting_id": "cZp23cC4ong9q6dn", "instantiation": "true", "enable_pressure_advance": [ "1" diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PETG-CF @P1-X1.json b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/BBL/AliZ PETG-CF @P1-X1.json similarity index 91% rename from resources/profiles/BBL/filament/AliZ/AliZ PETG-CF @P1-X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/AliZ/BBL/AliZ PETG-CF @P1-X1.json index be611e7ee7..f7af938dfa 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PETG-CF @P1-X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/BBL/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": "AZ01-1_00", + "setting_id": "HWW5mejsB0SfEfWw", "instantiation": "true", "enable_pressure_advance": [ "1" diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PETG-Metal @P1-X1.json b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/BBL/AliZ PETG-Metal @P1-X1.json similarity index 92% rename from resources/profiles/BBL/filament/AliZ/AliZ PETG-Metal @P1-X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/AliZ/BBL/AliZ PETG-Metal @P1-X1.json index b25bfa6521..e985f6123b 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PETG-Metal @P1-X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/BBL/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": "AZ01-2_00", + "setting_id": "JqD0blE4fxaNfXqB", "instantiation": "true", "enable_pressure_advance": [ "1" diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PLA @P1-X1.json b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/BBL/AliZ PLA @P1-X1.json similarity index 91% rename from resources/profiles/BBL/filament/AliZ/AliZ PLA @P1-X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/AliZ/BBL/AliZ PLA @P1-X1.json index c60138f745..a49d64e421 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PLA @P1-X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/BBL/AliZ PLA @P1-X1.json @@ -3,7 +3,7 @@ "name": "AliZ PLA @P1-X1", "inherits": "AliZ PLA @base", "from": "system", - "setting_id": "AliZ002_00", + "setting_id": "fRELapY8YiP4qrBW", "instantiation": "true", "enable_pressure_advance": [ "1" diff --git a/resources/profiles/BBL/filament/BETA/BETA ABS @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ABS @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA ABS @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ABS @BBL A1.json index 97348b871d..efe7ba4bd6 100644 --- a/resources/profiles/BBL/filament/BETA/BETA ABS @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ABS @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA ABS @BBL A1", "inherits": "BETA ABS @base", "from": "system", - "setting_id": "BABB00_07", + "setting_id": "dUGRrmxU89pRaJ2Z", "instantiation": "true", "fan_max_speed": [ "20" diff --git a/resources/profiles/BBL/filament/BETA/BETA ABS @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ABS @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA ABS @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ABS @BBL H2D.json index d4c4fda0ba..b02dd7539c 100644 --- a/resources/profiles/BBL/filament/BETA/BETA ABS @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ABS @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA ABS @BBL H2D", "inherits": "BETA ABS @base", "from": "system", - "setting_id": "BABB00_11", + "setting_id": "oxZKTEMd8TpyoH39", "instantiation": "true", "chamber_temperatures": [ "65" diff --git a/resources/profiles/BBL/filament/BETA/BETA ABS @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ABS @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA ABS @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ABS @BBL P1P.json index c9c9bbfe4b..8210765185 100644 --- a/resources/profiles/BBL/filament/BETA/BETA ABS @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ABS @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA ABS @BBL P1P", "inherits": "BETA ABS @base", "from": "system", - "setting_id": "BABB00_03", + "setting_id": "MPYyfCKMsJZy8GaY", "instantiation": "true", "fan_max_speed": [ "20" diff --git a/resources/profiles/BBL/filament/BETA/BETA ABS @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ABS @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA ABS @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ABS @BBL X1C.json index b6682d512a..196053eb0a 100644 --- a/resources/profiles/BBL/filament/BETA/BETA ABS @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ABS @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA ABS @BBL X1C", "inherits": "BETA ABS @base", "from": "system", - "setting_id": "BABB00", + "setting_id": "vMA7EhgNDT4MwMRr", "instantiation": "true", "fan_max_speed": [ "60" diff --git a/resources/profiles/BBL/filament/BETA/BETA ASA @BBL A1 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ASA @BBL A1 0.4 nozzle.json similarity index 90% rename from resources/profiles/BBL/filament/BETA/BETA ASA @BBL A1 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ASA @BBL A1 0.4 nozzle.json index 3aaff7f087..670fa696fb 100644 --- a/resources/profiles/BBL/filament/BETA/BETA ASA @BBL A1 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ASA @BBL A1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA ASA @BBL A1 0.4 nozzle", "inherits": "BETA ASA @base", "from": "system", - "setting_id": "BASB00_09", + "setting_id": "LevRG7t9mTlEseaB", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/BBL/filament/BETA/BETA ASA @BBL H2D 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ASA @BBL H2D 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA ASA @BBL H2D 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ASA @BBL H2D 0.4 nozzle.json index 66569a778a..3f27231fd0 100644 --- a/resources/profiles/BBL/filament/BETA/BETA ASA @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ASA @BBL H2D 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA ASA @BBL H2D 0.4 nozzle", "inherits": "BETA ASA @base", "from": "system", - "setting_id": "BASB00_13", + "setting_id": "3NBkWTXmqi8eRUhi", "instantiation": "true", "chamber_temperatures": [ "65" diff --git a/resources/profiles/BBL/filament/BETA/BETA ASA @BBL X1C 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ASA @BBL X1C 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA ASA @BBL X1C 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ASA @BBL X1C 0.4 nozzle.json index 3420b95e62..3d65ee4436 100644 --- a/resources/profiles/BBL/filament/BETA/BETA ASA @BBL X1C 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA ASA @BBL X1C 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA ASA @BBL X1C 0.4 nozzle", "inherits": "BETA ASA @base", "from": "system", - "setting_id": "BASB00_02", + "setting_id": "0nWTEZkH7NKXgCib", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/BBL/filament/BETA/BETA HIPS @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA HIPS @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA HIPS @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA HIPS @BBL H2D.json index 7975343472..7bb555ede0 100644 --- a/resources/profiles/BBL/filament/BETA/BETA HIPS @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA HIPS @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA HIPS @BBL H2D", "inherits": "BETA HIPS @base", "from": "system", - "setting_id": "BHIB00_06", + "setting_id": "9nN2uWxlYH1c507A", "instantiation": "true", "filament_deretraction_speed": [ "nil", diff --git a/resources/profiles/BBL/filament/BETA/BETA HIPS @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA HIPS @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA HIPS @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA HIPS @BBL X1C.json index 7f8204ab99..1b92494eac 100644 --- a/resources/profiles/BBL/filament/BETA/BETA HIPS @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA HIPS @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA HIPS @BBL X1C", "inherits": "BETA HIPS @base", "from": "system", - "setting_id": "BHIB00_00", + "setting_id": "mTcT8sCciWyX5enc", "instantiation": "true", "filament_max_volumetric_speed": [ "8", diff --git a/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PAHT-CF @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PAHT-CF @BBL H2D.json index 283b174880..dc5df41921 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PAHT-CF @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PAHT-CF @BBL H2D", "inherits": "BETA PAHT-CF @base", "from": "system", - "setting_id": "BPAB00_01", + "setting_id": "YbYCVQd5IR0sQR8S", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PAHT-CF @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PAHT-CF @BBL P1P.json index 020684ae9d..6dc9175a2d 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PAHT-CF @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PAHT-CF @BBL P1P", "inherits": "BETA PAHT-CF @base", "from": "system", - "setting_id": "BPAB00_10", + "setting_id": "5O5fzmFrT3O1k1H0", "instantiation": "true", "filament_flow_ratio": [ "0.96", diff --git a/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PAHT-CF @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PAHT-CF @BBL X1C.json index 2d07f60dd7..6c456aa3eb 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PAHT-CF @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PAHT-CF @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PAHT-CF @BBL X1C", "inherits": "BETA PAHT-CF @base", "from": "system", - "setting_id": "BPAB00", + "setting_id": "gB5HLYTDCooFy2W5", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PEBA 90A @BBL A1.json similarity index 93% rename from resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PEBA 90A @BBL A1.json index 5d2672ea39..bef1266f14 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PEBA 90A @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PEBA 90A @BBL A1", "inherits": "BETA PEBA 90A @base", "from": "system", - "setting_id": "BPBB00_04", + "setting_id": "A57Sbar56Ah1NiU7", "instantiation": "true", "filament_density": [ "1.22" diff --git a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PEBA 90A @BBL A1M.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PEBA 90A @BBL A1M.json index 65a899ec25..feb281f605 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PEBA 90A @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PEBA 90A @BBL A1M", "inherits": "BETA PEBA 90A @base", "from": "system", - "setting_id": "BPBB00_05", + "setting_id": "OoLkWS147R0AasZc", "instantiation": "true", "filament_density": [ "1.22" diff --git a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PEBA 90A @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PEBA 90A @BBL H2D.json index 15e570c0ef..a5b0a4e46b 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PEBA 90A @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PEBA 90A @BBL H2D", "inherits": "BETA PEBA 90A @base", "from": "system", - "setting_id": "BPBB00_02", + "setting_id": "91b8WTzvOky9wAVK", "instantiation": "true", "additional_cooling_fan_speed": [ "100" diff --git a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PEBA 90A @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PEBA 90A @BBL P1P.json index d84427a067..f5cc6b7f98 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PEBA 90A @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PEBA 90A @BBL P1P", "inherits": "BETA PEBA 90A @base", "from": "system", - "setting_id": "BPBB00_01", + "setting_id": "ydudEBLRmj1WSXqB", "instantiation": "true", "filament_max_volumetric_speed": [ "2.8", diff --git a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PEBA 90A @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PEBA 90A @BBL X1C.json index 9787ec8671..74c0bdd20d 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PEBA 90A @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PEBA 90A @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PEBA 90A @BBL X1C", "inherits": "BETA PEBA 90A @base", "from": "system", - "setting_id": "BPBB00_00", + "setting_id": "F1hTal3M92tBjv2N", "instantiation": "true", "filament_max_volumetric_speed": [ "2.8", diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG @BBL A1.json index e66cac62b6..9d6fc9329d 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PETG @BBL A1", "inherits": "BETA PETG @base", "from": "system", - "setting_id": "BPGB00_06", + "setting_id": "EpYzxZwVHvLaseku", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG @BBL A1M 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG @BBL A1M 0.4 nozzle.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG @BBL A1M 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG @BBL A1M 0.4 nozzle.json index 0831aa7d3e..7cac0a9bef 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG @BBL A1M 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG @BBL A1M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG @BBL A1M 0.4 nozzle", "inherits": "BETA PETG @base", "from": "system", - "setting_id": "BPGB00_03", + "setting_id": "5V0hyhzFoDU8Tfwm", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG @BBL H2D 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG @BBL H2D 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG @BBL H2D 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG @BBL H2D 0.4 nozzle.json index 5f581768f2..c508f9041c 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG @BBL H2D 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG @BBL H2D 0.4 nozzle", "inherits": "BETA PETG @base", "from": "system", - "setting_id": "BPGB00_09", + "setting_id": "KnKvUsD4rSpQU413", "instantiation": "true", "fan_max_speed": [ "30" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG @BBL X1C.json index 5a92aaf386..5547610fcf 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PETG @BBL X1C", "inherits": "BETA PETG @base", "from": "system", - "setting_id": "BPGB00_01", + "setting_id": "uM6wHdt0N5ftZRge", "instantiation": "true", "fan_min_speed": [ "20" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Fluorescence @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Fluorescence @BBL A1.json index 4afed91de9..67e25a2c01 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Fluorescence @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PETG Fluorescence @BBL A1", "inherits": "BETA PETG Fluorescence @base", "from": "system", - "setting_id": "BPGB02_06", + "setting_id": "ZtyTtAWsZnLGsM0O", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL A1M 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Fluorescence @BBL A1M 0.4 nozzle.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL A1M 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Fluorescence @BBL A1M 0.4 nozzle.json index 3dea382bb2..a12cc74634 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL A1M 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Fluorescence @BBL A1M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG Fluorescence @BBL A1M 0.4 nozzle", "inherits": "BETA PETG Fluorescence @base", "from": "system", - "setting_id": "BPGB02_03", + "setting_id": "VUSunTT0OJa7iOSd", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL H2D 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Fluorescence @BBL H2D 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL H2D 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Fluorescence @BBL H2D 0.4 nozzle.json index 62dfb7753f..19f8879c41 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Fluorescence @BBL H2D 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG Fluorescence @BBL H2D 0.4 nozzle", "inherits": "BETA PETG Fluorescence @base", "from": "system", - "setting_id": "BPGB02_09", + "setting_id": "JHg4y0pxAOtoJSuw", "instantiation": "true", "fan_max_speed": [ "30" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Fluorescence @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Fluorescence @BBL X1C.json index 88562c9da2..353498bf5c 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Fluorescence @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PETG Fluorescence @BBL X1C", "inherits": "BETA PETG Fluorescence @base", "from": "system", - "setting_id": "BPGB02_01", + "setting_id": "pCetfFvyLLw3vS2j", "instantiation": "true", "fan_min_speed": [ "20" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glitter @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glitter @BBL A1.json index d3a13707b4..6a97df7f55 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glitter @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PETG Glitter @BBL A1", "inherits": "BETA PETG Glitter @base", "from": "system", - "setting_id": "BPGB03_06", + "setting_id": "cz5dC7OrXDlX1Ctj", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL A1M 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glitter @BBL A1M 0.4 nozzle.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL A1M 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glitter @BBL A1M 0.4 nozzle.json index 2b12feac1e..dc051ee414 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL A1M 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glitter @BBL A1M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG Glitter @BBL A1M 0.4 nozzle", "inherits": "BETA PETG Glitter @base", "from": "system", - "setting_id": "BPGB03_03", + "setting_id": "PozWnOfZ2l7HqTpx", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL H2D 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glitter @BBL H2D 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL H2D 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glitter @BBL H2D 0.4 nozzle.json index 988f09054d..7d4b3bb5d5 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glitter @BBL H2D 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG Glitter @BBL H2D 0.4 nozzle", "inherits": "BETA PETG Glitter @base", "from": "system", - "setting_id": "BPGB03_09", + "setting_id": "ijW4zvNAQ3DIK984", "instantiation": "true", "fan_max_speed": [ "30" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glitter @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glitter @BBL X1C.json index 8eb9ef276f..18c99695f4 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glitter @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PETG Glitter @BBL X1C", "inherits": "BETA PETG Glitter @base", "from": "system", - "setting_id": "BPGB03_01", + "setting_id": "UI220qldPoLY8VZN", "instantiation": "true", "fan_min_speed": [ "20" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glow @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glow @BBL A1.json index 039a6b5a77..8c4d9a584a 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glow @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PETG Glow @BBL A1", "inherits": "BETA PETG Glow @base", "from": "system", - "setting_id": "BPGB04_06", + "setting_id": "LudMQeiSJOLw0Aoy", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL A1M 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glow @BBL A1M 0.4 nozzle.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL A1M 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glow @BBL A1M 0.4 nozzle.json index 30a1290c7f..f8d7d240f3 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL A1M 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glow @BBL A1M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG Glow @BBL A1M 0.4 nozzle", "inherits": "BETA PETG Glow @base", "from": "system", - "setting_id": "BPGB04_03", + "setting_id": "cl1Rl9hgrahhhSd3", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL H2D 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glow @BBL H2D 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL H2D 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glow @BBL H2D 0.4 nozzle.json index d460a13719..9196aff31b 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glow @BBL H2D 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG Glow @BBL H2D 0.4 nozzle", "inherits": "BETA PETG Glow @base", "from": "system", - "setting_id": "BPGB04_09", + "setting_id": "3s9w3mH6M4OdbrUV", "instantiation": "true", "fan_max_speed": [ "30" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glow @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glow @BBL X1C.json index e599deed02..42a4521212 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Glow @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Glow @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PETG Glow @BBL X1C", "inherits": "BETA PETG Glow @base", "from": "system", - "setting_id": "BPGB04_01", + "setting_id": "wv5FRKdnsHaIFA7L", "instantiation": "true", "fan_min_speed": [ "20" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Gradient @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Gradient @BBL A1.json index 8c732afcf6..0a753194b6 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Gradient @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PETG Gradient @BBL A1", "inherits": "BETA PETG Gradient @base", "from": "system", - "setting_id": "BPGB05_06", + "setting_id": "L3hZggzEZUgUv0Qv", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL A1M 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Gradient @BBL A1M 0.4 nozzle.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL A1M 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Gradient @BBL A1M 0.4 nozzle.json index c7dd29444b..7d5f7fba8b 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL A1M 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Gradient @BBL A1M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG Gradient @BBL A1M 0.4 nozzle", "inherits": "BETA PETG Gradient @base", "from": "system", - "setting_id": "BPGB05_03", + "setting_id": "zsITnsNFRG7IE6sR", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL H2D 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Gradient @BBL H2D 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL H2D 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Gradient @BBL H2D 0.4 nozzle.json index 078a954fd6..b468069cb7 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Gradient @BBL H2D 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG Gradient @BBL H2D 0.4 nozzle", "inherits": "BETA PETG Gradient @base", "from": "system", - "setting_id": "BPGB05_09", + "setting_id": "GqmCuPg6baUxeoYS", "instantiation": "true", "fan_max_speed": [ "30" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Gradient @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Gradient @BBL X1C.json index 0bca3fd849..48c3f30535 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Gradient @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PETG Gradient @BBL X1C", "inherits": "BETA PETG Gradient @base", "from": "system", - "setting_id": "BPGB05_01", + "setting_id": "oYJjUiaCI4UBZ0ur", "instantiation": "true", "fan_min_speed": [ "20" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG HF @BBL A1.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG HF @BBL A1.json index 4fa56ff56c..fc7d4417e8 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG HF @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PETG HF @BBL A1", "inherits": "BETA PETG HF @base", "from": "system", - "setting_id": "BPGB06_03", + "setting_id": "T2Ea25pM2u9BM7Oa", "instantiation": "true", "fan_cooling_layer_time": [ "15" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG HF @BBL A1M.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG HF @BBL A1M.json index 4594b057e3..c162f9b829 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG HF @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PETG HF @BBL A1M", "inherits": "BETA PETG HF @base", "from": "system", - "setting_id": "BPGB06_06", + "setting_id": "nO5R86dkDle1m5Pq", "instantiation": "true", "fan_cooling_layer_time": [ "15" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL H2D 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG HF @BBL H2D 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL H2D 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG HF @BBL H2D 0.4 nozzle.json index 5af6977e37..f8bc99dd97 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG HF @BBL H2D 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG HF @BBL H2D 0.4 nozzle", "inherits": "BETA PETG HF @base", "from": "system", - "setting_id": "BPGB06_09", + "setting_id": "YOBguayM9PiwkpfT", "instantiation": "true", "counter_coef_2": [ "0.007" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG HF @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG HF @BBL X1C.json index e880bef58f..d67f8d619e 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG HF @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG HF @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PETG HF @BBL X1C", "inherits": "BETA PETG HF @base", "from": "system", - "setting_id": "BPGB06_00", + "setting_id": "EG3h0IHVO1yyVNMs", "instantiation": "true", "fan_cooling_layer_time": [ "20" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Heat Color Change @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Heat Color Change @BBL A1.json index 178a75b1cc..9ce4a5d5f4 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Heat Color Change @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PETG Heat Color Change @BBL A1", "inherits": "BETA PETG Heat Color Change @base", "from": "system", - "setting_id": "BPGB01_06", + "setting_id": "ZhHASdXFywqbRuBf", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL A1M 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Heat Color Change @BBL A1M 0.4 nozzle.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL A1M 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Heat Color Change @BBL A1M 0.4 nozzle.json index 62371b18de..aa50a522ba 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL A1M 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Heat Color Change @BBL A1M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG Heat Color Change @BBL A1M 0.4 nozzle", "inherits": "BETA PETG Heat Color Change @base", "from": "system", - "setting_id": "BPGB01_03", + "setting_id": "YiFgzCJDAOW9YSjZ", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL H2D 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Heat Color Change @BBL H2D 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL H2D 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Heat Color Change @BBL H2D 0.4 nozzle.json index e94aec5705..5f6706766a 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Heat Color Change @BBL H2D 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG Heat Color Change @BBL H2D 0.4 nozzle", "inherits": "BETA PETG Heat Color Change @base", "from": "system", - "setting_id": "BPGB01_09", + "setting_id": "DpWgpTiKdm70Xt1i", "instantiation": "true", "fan_max_speed": [ "30" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Heat Color Change @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Heat Color Change @BBL X1C.json index 9b3cec67e5..b0e0ee39ca 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Heat Color Change @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PETG Heat Color Change @BBL X1C", "inherits": "BETA PETG Heat Color Change @base", "from": "system", - "setting_id": "BPGB01_01", + "setting_id": "3lJe6ftSHQDkQZ1S", "instantiation": "true", "fan_min_speed": [ "20" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Marble @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Marble @BBL A1.json index 829f200312..1c8a6e7cf5 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Marble @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PETG Marble @BBL A1", "inherits": "BETA PETG Marble @base", "from": "system", - "setting_id": "BPGB07_06", + "setting_id": "tSCDuE4dE44PyIwb", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL A1M 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Marble @BBL A1M 0.4 nozzle.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL A1M 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Marble @BBL A1M 0.4 nozzle.json index b0cb67eb0e..0adda57b8f 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL A1M 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Marble @BBL A1M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG Marble @BBL A1M 0.4 nozzle", "inherits": "BETA PETG Marble @base", "from": "system", - "setting_id": "BPGB07_03", + "setting_id": "n6dguOo5ZleD6Ec4", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL H2D 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Marble @BBL H2D 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL H2D 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Marble @BBL H2D 0.4 nozzle.json index 2f510ad7ab..decfcb73a1 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Marble @BBL H2D 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG Marble @BBL H2D 0.4 nozzle", "inherits": "BETA PETG Marble @base", "from": "system", - "setting_id": "BPGB07_09", + "setting_id": "RxCTxdvym4iNOB5j", "instantiation": "true", "fan_max_speed": [ "30" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Marble @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Marble @BBL X1C.json index 3b38034011..49ac9206f0 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Marble @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Marble @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PETG Marble @BBL X1C", "inherits": "BETA PETG Marble @base", "from": "system", - "setting_id": "BPGB07_01", + "setting_id": "3BgsPAgilo1MgtOV", "instantiation": "true", "fan_min_speed": [ "20" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Matte @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Matte @BBL A1.json index a8062a0de5..bbac04c0b9 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Matte @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PETG Matte @BBL A1", "inherits": "BETA PETG Matte @base", "from": "system", - "setting_id": "BPGB08_06", + "setting_id": "zYkrzQk11C98R31F", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL A1M 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Matte @BBL A1M 0.4 nozzle.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL A1M 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Matte @BBL A1M 0.4 nozzle.json index 2ed2cd9930..3408e81946 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL A1M 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Matte @BBL A1M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG Matte @BBL A1M 0.4 nozzle", "inherits": "BETA PETG Matte @base", "from": "system", - "setting_id": "BPGB08_03", + "setting_id": "rzX5oP4037Ex5Chh", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL H2D 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Matte @BBL H2D 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL H2D 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Matte @BBL H2D 0.4 nozzle.json index edfdacc993..3287a32971 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Matte @BBL H2D 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG Matte @BBL H2D 0.4 nozzle", "inherits": "BETA PETG Matte @base", "from": "system", - "setting_id": "BPGB08_09", + "setting_id": "sqz8Vluq7GMd3siv", "instantiation": "true", "fan_max_speed": [ "30" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Matte @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Matte @BBL X1C.json index 763594b41d..d8f5548ba0 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Matte @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Matte @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PETG Matte @BBL X1C", "inherits": "BETA PETG Matte @base", "from": "system", - "setting_id": "BPGB08_01", + "setting_id": "NXgqYCqHeVCgFF3I", "instantiation": "true", "fan_min_speed": [ "20" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Metallic @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Metallic @BBL A1.json index 715ebc1ad1..e378cf3de1 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Metallic @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PETG Metallic @BBL A1", "inherits": "BETA PETG Metallic @base", "from": "system", - "setting_id": "BPGB09_06", + "setting_id": "1baUIJ3P8n6DcyRc", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL A1M 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Metallic @BBL A1M 0.4 nozzle.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL A1M 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Metallic @BBL A1M 0.4 nozzle.json index 85b11b2e80..6e1f1c1d30 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL A1M 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Metallic @BBL A1M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG Metallic @BBL A1M 0.4 nozzle", "inherits": "BETA PETG Metallic @base", "from": "system", - "setting_id": "BPGB09_03", + "setting_id": "LMsVDqsChBksLNqL", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL H2D 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Metallic @BBL H2D 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL H2D 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Metallic @BBL H2D 0.4 nozzle.json index c00e63bf3d..c04e4513b5 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Metallic @BBL H2D 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG Metallic @BBL H2D 0.4 nozzle", "inherits": "BETA PETG Metallic @base", "from": "system", - "setting_id": "BPGB09_09", + "setting_id": "giq8BW6qcwz91e4C", "instantiation": "true", "fan_max_speed": [ "30" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Metallic @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Metallic @BBL X1C.json index 71f0be98d3..eaa3a9dae2 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Metallic @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PETG Metallic @BBL X1C", "inherits": "BETA PETG Metallic @base", "from": "system", - "setting_id": "BPGB09_01", + "setting_id": "tZzoc2LdgWkpEiox", "instantiation": "true", "fan_min_speed": [ "20" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Transparent @BBL A1.json similarity index 92% rename from resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Transparent @BBL A1.json index 53202d68d2..e00ecd5b04 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Transparent @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PETG Transparent @BBL A1", "inherits": "BETA PETG Transparent @base", "from": "system", - "setting_id": "BPGB10_05", + "setting_id": "86loYV5S4bgO2FOx", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Transparent @BBL A1M.json similarity index 92% rename from resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Transparent @BBL A1M.json index 0419cdd3d4..a8c9ca893d 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Transparent @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PETG Transparent @BBL A1M", "inherits": "BETA PETG Transparent @base", "from": "system", - "setting_id": "BPGB10_02", + "setting_id": "c2xTYO07RC2G2xsv", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL H2D 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Transparent @BBL H2D 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL H2D 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Transparent @BBL H2D 0.4 nozzle.json index e0e2c984aa..8e95c0e543 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Transparent @BBL H2D 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG Transparent @BBL H2D 0.4 nozzle", "inherits": "BETA PETG Transparent @base", "from": "system", - "setting_id": "BPGB10_06", + "setting_id": "GkC5T0RX0meiLVKg", "instantiation": "true", "filament_deretraction_speed": [ "nil", diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Transparent @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Transparent @BBL X1C.json index 102dbce7bf..9d2e347f64 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG Transparent @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PETG Transparent @BBL X1C", "inherits": "BETA PETG Transparent @base", "from": "system", - "setting_id": "BPGB10_00", + "setting_id": "doyjzbrEn9akgjvG", "instantiation": "true", "filament_long_retractions_when_cut": [ "1", diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG UV Color Change @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG UV Color Change @BBL A1.json index fd0e5b8e0d..9f34c89591 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG UV Color Change @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PETG UV Color Change @BBL A1", "inherits": "BETA PETG UV Color Change @base", "from": "system", - "setting_id": "BPGB11_06", + "setting_id": "CeepF0rRLZ5fzBwm", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL A1M 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG UV Color Change @BBL A1M 0.4 nozzle.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL A1M 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG UV Color Change @BBL A1M 0.4 nozzle.json index 9b8d64318c..8a9f8d28d6 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL A1M 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG UV Color Change @BBL A1M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG UV Color Change @BBL A1M 0.4 nozzle", "inherits": "BETA PETG UV Color Change @base", "from": "system", - "setting_id": "BPGB11_03", + "setting_id": "Atb1esrVdoWBK97e", "instantiation": "true", "fan_max_speed": [ "50" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL H2D 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG UV Color Change @BBL H2D 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL H2D 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG UV Color Change @BBL H2D 0.4 nozzle.json index 2ff953dc88..03f0000a35 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG UV Color Change @BBL H2D 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG UV Color Change @BBL H2D 0.4 nozzle", "inherits": "BETA PETG UV Color Change @base", "from": "system", - "setting_id": "BPGB11_09", + "setting_id": "Ic0NUfwLmR0NSh5q", "instantiation": "true", "fan_max_speed": [ "30" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG UV Color Change @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG UV Color Change @BBL X1C.json index cd5be66bf3..32eaa333cf 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG UV Color Change @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PETG UV Color Change @BBL X1C", "inherits": "BETA PETG UV Color Change @base", "from": "system", - "setting_id": "BPGB11_01", + "setting_id": "BUKCpukEUmocfz3v", "instantiation": "true", "fan_min_speed": [ "20" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL A1 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-CF @BBL A1 0.4 nozzle.json similarity index 93% rename from resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL A1 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-CF @BBL A1 0.4 nozzle.json index 4e15c8fc86..c0ed516884 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL A1 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-CF @BBL A1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG-CF @BBL A1 0.4 nozzle", "inherits": "BETA PETG-CF @base", "from": "system", - "setting_id": "BPGB12_05", + "setting_id": "2ysJdw1MuW8VLmny", "instantiation": "true", "fan_cooling_layer_time": [ "30" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL A1M 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-CF @BBL A1M 0.4 nozzle.json similarity index 88% rename from resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL A1M 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-CF @BBL A1M 0.4 nozzle.json index d19e61f946..9dee306a03 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL A1M 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-CF @BBL A1M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG-CF @BBL A1M 0.4 nozzle", "inherits": "BETA PETG-CF @base", "from": "system", - "setting_id": "BPGB12_04", + "setting_id": "eZsa6noZZUahQeBp", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL H2D 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-CF @BBL H2D 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL H2D 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-CF @BBL H2D 0.4 nozzle.json index fd47d4f843..22af1e06ff 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-CF @BBL H2D 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG-CF @BBL H2D 0.4 nozzle", "inherits": "BETA PETG-CF @base", "from": "system", - "setting_id": "BPGB12_08", + "setting_id": "YRUDQs5jE1d1BGTY", "instantiation": "true", "counter_coef_2": [ "0.00565" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL P1P 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-CF @BBL P1P 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL P1P 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-CF @BBL P1P 0.4 nozzle.json index 845086dfe1..f1a7334810 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL P1P 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-CF @BBL P1P 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG-CF @BBL P1P 0.4 nozzle", "inherits": "BETA PETG-CF @base", "from": "system", - "setting_id": "BPGB12_03", + "setting_id": "i1OjgC3I96a1Trb8", "instantiation": "true", "fan_cooling_layer_time": [ "30" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL X1C 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-CF @BBL X1C 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL X1C 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-CF @BBL X1C 0.4 nozzle.json index 4c8bf18ae3..273260a31f 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @BBL X1C 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-CF @BBL X1C 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG-CF @BBL X1C 0.4 nozzle", "inherits": "BETA PETG-CF @base", "from": "system", - "setting_id": "BPGB12_02", + "setting_id": "0p4213iz0b9fbeKO", "instantiation": "true", "fan_cooling_layer_time": [ "30" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL A1 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-GF @BBL A1 0.4 nozzle.json similarity index 93% rename from resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL A1 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-GF @BBL A1 0.4 nozzle.json index 719dd3ddfe..0aac4d7f04 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL A1 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-GF @BBL A1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG-GF @BBL A1 0.4 nozzle", "inherits": "BETA PETG-GF @base", "from": "system", - "setting_id": "BPGB13_05", + "setting_id": "mUZlODC7TvISFthv", "instantiation": "true", "fan_cooling_layer_time": [ "30" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL A1M 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-GF @BBL A1M 0.4 nozzle.json similarity index 88% rename from resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL A1M 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-GF @BBL A1M 0.4 nozzle.json index f874d81f46..ed98f6337f 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL A1M 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-GF @BBL A1M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG-GF @BBL A1M 0.4 nozzle", "inherits": "BETA PETG-GF @base", "from": "system", - "setting_id": "BPGB13_04", + "setting_id": "9Rh7EvY3QZm07VNe", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL H2D 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-GF @BBL H2D 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL H2D 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-GF @BBL H2D 0.4 nozzle.json index fd093d8506..277d1915b1 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-GF @BBL H2D 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG-GF @BBL H2D 0.4 nozzle", "inherits": "BETA PETG-GF @base", "from": "system", - "setting_id": "BPGB13_08", + "setting_id": "SOA1XFfdBEV4MEJy", "instantiation": "true", "counter_coef_2": [ "0.00565" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL P1P 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-GF @BBL P1P 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL P1P 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-GF @BBL P1P 0.4 nozzle.json index f700b2149e..a94fc48630 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL P1P 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-GF @BBL P1P 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG-GF @BBL P1P 0.4 nozzle", "inherits": "BETA PETG-GF @base", "from": "system", - "setting_id": "BPGB13_03", + "setting_id": "tGtdR6vVNrTU26eI", "instantiation": "true", "fan_cooling_layer_time": [ "30" diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL X1C 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-GF @BBL X1C 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL X1C 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-GF @BBL X1C 0.4 nozzle.json index 32b0daf255..db3ecc90d9 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @BBL X1C 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PETG-GF @BBL X1C 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PETG-GF @BBL X1C 0.4 nozzle", "inherits": "BETA PETG-GF @base", "from": "system", - "setting_id": "BPGB13_02", + "setting_id": "Z6dHVj1BKTJT7305", "instantiation": "true", "fan_cooling_layer_time": [ "30" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Basic @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Basic @BBL A1.json index 3e0545627d..5dd32459b3 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Basic @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA Basic @BBL A1", "inherits": "BETA PLA Basic @base", "from": "system", - "setting_id": "BPLB00_04", + "setting_id": "e6tjM1Pa81eCsCVa", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Basic @BBL A1M.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Basic @BBL A1M.json index 074c8bbad6..78ba2bb9eb 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Basic @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA Basic @BBL A1M", "inherits": "BETA PLA Basic @base", "from": "system", - "setting_id": "BPLB00_02", + "setting_id": "Uw0Gm74RTGBUcOYK", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Basic @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Basic @BBL H2D.json index f309ce4697..97e462a487 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Basic @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA Basic @BBL H2D", "inherits": "BETA PLA Basic @base", "from": "system", - "setting_id": "BPLB00_12", + "setting_id": "LZBgJ5xFtzrt3v02", "instantiation": "true", "additional_cooling_fan_speed": [ "75" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Basic @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Basic @BBL P1P.json index a9b3b41e67..99214e744d 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Basic @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA Basic @BBL P1P", "inherits": "BETA PLA Basic @base", "from": "system", - "setting_id": "BPLB00_10", + "setting_id": "lh6niwL4m4XkSf8W", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Basic @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Basic @BBL X1C.json index 2efae39e66..c50f60f49c 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Basic @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA Basic @BBL X1C", "inherits": "BETA PLA Basic @base", "from": "system", - "setting_id": "BPLB00", + "setting_id": "D5Ac9gZkax8dSVtV", "instantiation": "true", "filament_long_retractions_when_cut": [ "1", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Chameleon @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Chameleon @BBL A1.json index da7e730707..bc2af1a623 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Chameleon @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA Chameleon @BBL A1", "inherits": "BETA PLA Chameleon @base", "from": "system", - "setting_id": "BPLB02_03", + "setting_id": "vEjSWxmmbBWpuaRq", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Chameleon @BBL A1M.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Chameleon @BBL A1M.json index 667a27517c..8d2dd918e9 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Chameleon @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA Chameleon @BBL A1M", "inherits": "BETA PLA Chameleon @base", "from": "system", - "setting_id": "BPLB02_02", + "setting_id": "TAwpOCw19HhlNsMH", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Chameleon @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Chameleon @BBL H2D.json index 61921e055e..b2bae83295 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Chameleon @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA Chameleon @BBL H2D", "inherits": "BETA PLA Chameleon @base", "from": "system", - "setting_id": "BPLB02_04", + "setting_id": "vG7kTitKJp5cBs3q", "instantiation": "true", "eng_plate_temp": [ "55" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Chameleon @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Chameleon @BBL P1P.json index 896b695cad..ea66c51982 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Chameleon @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA Chameleon @BBL P1P", "inherits": "BETA PLA Chameleon @base", "from": "system", - "setting_id": "BPLB02_10", + "setting_id": "WGrBGAllXKxuLzjs", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Chameleon @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Chameleon @BBL X1C.json index ecc1332410..e1ec162a69 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Chameleon @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA Chameleon @BBL X1C", "inherits": "BETA PLA Chameleon @base", "from": "system", - "setting_id": "BPLB02_00", + "setting_id": "EfLqGX43NXNKKbWt", "instantiation": "true", "filament_long_retractions_when_cut": [ "1", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Fluorescence @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Fluorescence @BBL A1.json index 07ccf57777..021a32a374 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Fluorescence @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA Fluorescence @BBL A1", "inherits": "BETA PLA Fluorescence @base", "from": "system", - "setting_id": "BPLB04_03", + "setting_id": "iyInqcqIjcvTJAKF", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Fluorescence @BBL A1M.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Fluorescence @BBL A1M.json index fe2a32394a..5bbfa583bc 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Fluorescence @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA Fluorescence @BBL A1M", "inherits": "BETA PLA Fluorescence @base", "from": "system", - "setting_id": "BPLB04_02", + "setting_id": "A1f81XZTI4THuOrz", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Fluorescence @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Fluorescence @BBL H2D.json index 4dfe6a3041..50390428cc 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Fluorescence @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA Fluorescence @BBL H2D", "inherits": "BETA PLA Fluorescence @base", "from": "system", - "setting_id": "BPLB04_04", + "setting_id": "gcP4tfP34Xz6A1aX", "instantiation": "true", "eng_plate_temp": [ "55" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Fluorescence @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Fluorescence @BBL P1P.json index fa085c4b5b..a786a7aa36 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Fluorescence @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA Fluorescence @BBL P1P", "inherits": "BETA PLA Fluorescence @base", "from": "system", - "setting_id": "BPLB04_10", + "setting_id": "VXtzYPTfTHywigT5", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Fluorescence @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Fluorescence @BBL X1C.json index f7930db006..ef2188514c 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Fluorescence @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA Fluorescence @BBL X1C", "inherits": "BETA PLA Fluorescence @base", "from": "system", - "setting_id": "BPLB04_00", + "setting_id": "2nZDf5vDbWMzG91Q", "instantiation": "true", "filament_long_retractions_when_cut": [ "1", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glitter @BBL A1.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glitter @BBL A1.json index a50ea558f6..271a16779c 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glitter @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA Glitter @BBL A1", "inherits": "BETA PLA Glitter @base", "from": "system", - "setting_id": "BPLB05_03", + "setting_id": "OSPJASUk0Pg4tbVq", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glitter @BBL A1M.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glitter @BBL A1M.json index e9f9995415..f9c7b13966 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glitter @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA Glitter @BBL A1M", "inherits": "BETA PLA Glitter @base", "from": "system", - "setting_id": "BPLB05_02", + "setting_id": "TwCRZOBSByKVOpWu", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glitter @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glitter @BBL H2D.json index 30a169c731..de6665e0ef 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glitter @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA Glitter @BBL H2D", "inherits": "BETA PLA Glitter @base", "from": "system", - "setting_id": "BPLB05_04", + "setting_id": "V21QsVHdIu9O5x8H", "instantiation": "true", "eng_plate_temp": [ "55" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glitter @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glitter @BBL P1P.json index 56fbd91b1f..c7cb14bea3 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glitter @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA Glitter @BBL P1P", "inherits": "BETA PLA Glitter @base", "from": "system", - "setting_id": "BPLB05_10", + "setting_id": "6j8mVocsMSyMcN7W", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glitter @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glitter @BBL X1C.json index 27ef9b6bb1..97335ee8ba 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glitter @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA Glitter @BBL X1C", "inherits": "BETA PLA Glitter @base", "from": "system", - "setting_id": "BPLB05_00", + "setting_id": "9xX3mgUo5cbNvn1G", "instantiation": "true", "filament_flow_ratio": [ "0.98", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glow @BBL A1.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glow @BBL A1.json index b3e3f5810f..bf3ee29978 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glow @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA Glow @BBL A1", "inherits": "BETA PLA Glow @base", "from": "system", - "setting_id": "BPLB06_11", + "setting_id": "5CBeJCmUFnmeran7", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glow @BBL A1M.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glow @BBL A1M.json index ce16e93ea2..99725d2707 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glow @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA Glow @BBL A1M", "inherits": "BETA PLA Glow @base", "from": "system", - "setting_id": "BPLB06_16", + "setting_id": "E9Dx6JqlKJSObUbH", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glow @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glow @BBL H2D.json index f36dad2a44..ef4fdb473b 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glow @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA Glow @BBL H2D", "inherits": "BETA PLA Glow @base", "from": "system", - "setting_id": "BPLB06_06", + "setting_id": "3V9M3nMyxMHZPw86", "instantiation": "true", "eng_plate_temp": [ "55" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glow @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glow @BBL P1P.json index 4e1abbead0..f19705f369 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glow @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA Glow @BBL P1P", "inherits": "BETA PLA Glow @base", "from": "system", - "setting_id": "BPLB06_02", + "setting_id": "iYLZEeO84vkLMKTI", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glow @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glow @BBL X1C.json index b7ed381bd3..b6d88f2cdc 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Glow @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA Glow @BBL X1C", "inherits": "BETA PLA Glow @base", "from": "system", - "setting_id": "BPLB06_00", + "setting_id": "t2r0gXudUDKwtqiq", "instantiation": "true", "filament_long_retractions_when_cut": [ "1", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Gradient @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Gradient @BBL A1.json index 93a1e0c8a7..e178d3ff99 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Gradient @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA Gradient @BBL A1", "inherits": "BETA PLA Gradient @base", "from": "system", - "setting_id": "BPLB07_03", + "setting_id": "425v7oGgeTL6iomC", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Gradient @BBL A1M.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Gradient @BBL A1M.json index a29b928941..36a9d142ad 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Gradient @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA Gradient @BBL A1M", "inherits": "BETA PLA Gradient @base", "from": "system", - "setting_id": "BPLB07_02", + "setting_id": "X8Y4YSnjlFf9mSIB", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Gradient @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Gradient @BBL H2D.json index 3657d33348..23d5f31d21 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Gradient @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA Gradient @BBL H2D", "inherits": "BETA PLA Gradient @base", "from": "system", - "setting_id": "BPLB07_04", + "setting_id": "YGTS7nibKyJKDcU4", "instantiation": "true", "eng_plate_temp": [ "55" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Gradient @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Gradient @BBL P1P.json index 38ca268766..15b6d22f5e 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Gradient @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA Gradient @BBL P1P", "inherits": "BETA PLA Gradient @base", "from": "system", - "setting_id": "BPLB07_10", + "setting_id": "qSQlI3DJHr4ILcB2", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Gradient @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Gradient @BBL X1C.json index 28167832c7..ec1845f924 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Gradient @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA Gradient @BBL X1C", "inherits": "BETA PLA Gradient @base", "from": "system", - "setting_id": "BPLB07_00", + "setting_id": "d7p2sIDTErREL4Kl", "instantiation": "true", "filament_long_retractions_when_cut": [ "1", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Heat Color Change @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Heat Color Change @BBL A1.json index f07c12540f..ca08ac0b4e 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Heat Color Change @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA Heat Color Change @BBL A1", "inherits": "BETA PLA Heat Color Change @base", "from": "system", - "setting_id": "BPLB03_03", + "setting_id": "5j48tMo1EVC3xQIy", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Heat Color Change @BBL A1M.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Heat Color Change @BBL A1M.json index 057ac94128..2a3ef9a0b4 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Heat Color Change @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA Heat Color Change @BBL A1M", "inherits": "BETA PLA Heat Color Change @base", "from": "system", - "setting_id": "BPLB03_02", + "setting_id": "revg1V2Pi8iCfrxi", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Heat Color Change @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Heat Color Change @BBL H2D.json index 7777bdb4ca..6c9d1605fb 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Heat Color Change @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA Heat Color Change @BBL H2D", "inherits": "BETA PLA Heat Color Change @base", "from": "system", - "setting_id": "BPLB03_04", + "setting_id": "4gszgdDD34i0PqNB", "instantiation": "true", "eng_plate_temp": [ "55" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Heat Color Change @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Heat Color Change @BBL P1P.json index 0b8b264d0f..b789e28638 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Heat Color Change @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA Heat Color Change @BBL P1P", "inherits": "BETA PLA Heat Color Change @base", "from": "system", - "setting_id": "BPLB03_10", + "setting_id": "nNjRbHDsEfiCaAlB", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Heat Color Change @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Heat Color Change @BBL X1C.json index 96ae68563e..ed8b6c8589 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Heat Color Change @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA Heat Color Change @BBL X1C", "inherits": "BETA PLA Heat Color Change @base", "from": "system", - "setting_id": "BPLB03_00", + "setting_id": "UxrUKGG8X65QaY8e", "instantiation": "true", "filament_long_retractions_when_cut": [ "1", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Speed @BBL A1.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Speed @BBL A1.json index 0f8dc55aec..a3fb1f92e7 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Speed @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA High Speed @BBL A1", "inherits": "BETA PLA High Speed @base", "from": "system", - "setting_id": "BPLB20_04", + "setting_id": "BGnydxe8BWKLWGUh", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Speed @BBL A1M.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Speed @BBL A1M.json index a9a989fa0b..714f84f727 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Speed @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA High Speed @BBL A1M", "inherits": "BETA PLA High Speed @base", "from": "system", - "setting_id": "BPLB20_06", + "setting_id": "c9A7frKuehrQbxga", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Speed @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Speed @BBL H2D.json index c353b206f8..01bd6e5701 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Speed @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA High Speed @BBL H2D", "inherits": "BETA PLA High Speed @base", "from": "system", - "setting_id": "BPLB20_08", + "setting_id": "n9Bq9aOUoHA2d5aj", "instantiation": "true", "eng_plate_temp": [ "55" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Speed @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Speed @BBL P1P.json index 36f42f9c42..b2f9e5ad9d 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Speed @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA High Speed @BBL P1P", "inherits": "BETA PLA High Speed @base", "from": "system", - "setting_id": "BPLB20_02", + "setting_id": "OSqz4aXmaTf5UeNx", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Speed @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Speed @BBL X1C.json index 0c6aa6b8b2..7babfd0ad0 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA High Speed @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Speed @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA High Speed @BBL X1C", "inherits": "BETA PLA High Speed @base", "from": "system", - "setting_id": "BPLB20_00", + "setting_id": "Ikl9jwlTBbGAgccp", "instantiation": "true", "filament_flow_ratio": [ "0.98", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Temp @BBL A1.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Temp @BBL A1.json index b8ccc3af16..84769a0374 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Temp @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA High Temp @BBL A1", "inherits": "BETA PLA High Temp @base", "from": "system", - "setting_id": "BPLB18_05", + "setting_id": "hiRu8jlZ2NW4LlPH", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Temp @BBL A1M.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Temp @BBL A1M.json index c7bca3f5c4..2caae4c09d 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Temp @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA High Temp @BBL A1M", "inherits": "BETA PLA High Temp @base", "from": "system", - "setting_id": "BPLB18_07", + "setting_id": "Dg4tIm8P04KTRbeo", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Temp @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Temp @BBL H2D.json index 08653bbf37..4047850988 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Temp @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA High Temp @BBL H2D", "inherits": "BETA PLA High Temp @base", "from": "system", - "setting_id": "BPLB18_09", + "setting_id": "5F1rml3AGNMD6F1g", "instantiation": "true", "additional_cooling_fan_speed": [ "75" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Temp @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Temp @BBL P1P.json index 25a0522a02..91f72cdfb0 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Temp @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA High Temp @BBL P1P", "inherits": "BETA PLA High Temp @base", "from": "system", - "setting_id": "BPLB18_03", + "setting_id": "EeBCe9mT3aa8GY6E", "instantiation": "true", "filament_flow_ratio": [ "0.98", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Temp @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Temp @BBL X1C.json index e221c28c18..f0202e0fc1 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA High Temp @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA High Temp @BBL X1C", "inherits": "BETA PLA High Temp @base", "from": "system", - "setting_id": "BPLB18_00", + "setting_id": "YuUxUrDHm5pkQJ00", "instantiation": "true", "filament_flow_ratio": [ "0.98", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Marble @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Marble @BBL A1.json index 4bff45b61d..fad6908ea2 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Marble @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA Marble @BBL A1", "inherits": "BETA PLA Marble @base", "from": "system", - "setting_id": "BPLB08_03", + "setting_id": "HUIyHrpR1NeXtq2U", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Marble @BBL A1M.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Marble @BBL A1M.json index 3ad98ecb34..631d702b60 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Marble @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA Marble @BBL A1M", "inherits": "BETA PLA Marble @base", "from": "system", - "setting_id": "BPLB08_02", + "setting_id": "tizFbLmroyCZkYwM", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Marble @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Marble @BBL H2D.json index decacdcc40..1ef7104002 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Marble @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA Marble @BBL H2D", "inherits": "BETA PLA Marble @base", "from": "system", - "setting_id": "BPLB08_04", + "setting_id": "HQiUpjhYDmRgfE58", "instantiation": "true", "eng_plate_temp": [ "55" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Marble @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Marble @BBL P1P.json index 2e7cf93c79..a198637db6 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Marble @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA Marble @BBL P1P", "inherits": "BETA PLA Marble @base", "from": "system", - "setting_id": "BPLB08_10", + "setting_id": "vL5v8bp6NzR0rDLx", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Marble @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Marble @BBL X1C.json index bfc904d686..58a42b7452 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Marble @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA Marble @BBL X1C", "inherits": "BETA PLA Marble @base", "from": "system", - "setting_id": "BPLB08_00", + "setting_id": "nNLxWZNjsSJ6hgoi", "instantiation": "true", "filament_long_retractions_when_cut": [ "1", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Matte @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Matte @BBL A1.json index 5791eaacb1..eafde54097 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Matte @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA Matte @BBL A1", "inherits": "BETA PLA Matte @base", "from": "system", - "setting_id": "BPLB09_04", + "setting_id": "FcoZYFxLOjcwqHeK", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Matte @BBL A1M.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Matte @BBL A1M.json index d2dace4b32..d35c947f36 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Matte @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA Matte @BBL A1M", "inherits": "BETA PLA Matte @base", "from": "system", - "setting_id": "BPLB09_02", + "setting_id": "ZKRYRXFXljR57zqd", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Matte @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Matte @BBL H2D.json index ef3fa05d53..bc595e11b5 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Matte @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA Matte @BBL H2D", "inherits": "BETA PLA Matte @base", "from": "system", - "setting_id": "BPLB09_05", + "setting_id": "Zw3CZVyBon930GCH", "instantiation": "true", "additional_cooling_fan_speed": [ "75" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Matte @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Matte @BBL P1P.json index 8076797fb8..6331679d0c 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Matte @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA Matte @BBL P1P", "inherits": "BETA PLA Matte @base", "from": "system", - "setting_id": "BPLB09_10", + "setting_id": "twKgWxS55toXm9pS", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Matte @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Matte @BBL X1C.json index dea5b1f08b..9214f71190 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Matte @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA Matte @BBL X1C", "inherits": "BETA PLA Matte @base", "from": "system", - "setting_id": "BPLB09", + "setting_id": "R9ZZzNBbymoFbwoD", "instantiation": "true", "filament_long_retractions_when_cut": [ "1", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metal @BBL A1.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metal @BBL A1.json index 0824f7da2a..6362a7cd3d 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metal @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA Metal @BBL A1", "inherits": "BETA PLA Metal @base", "from": "system", - "setting_id": "BPLB10_04", + "setting_id": "fXRyE1fu4AtA5AdK", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metal @BBL A1M.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metal @BBL A1M.json index 7c845e3bc0..8a60fd062a 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metal @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA Metal @BBL A1M", "inherits": "BETA PLA Metal @base", "from": "system", - "setting_id": "BPLB10_00", + "setting_id": "flbisIR5Js1cFyUe", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metal @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metal @BBL H2D.json index 7dd3a3f16d..7ff82b8ae0 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metal @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA Metal @BBL H2D", "inherits": "BETA PLA Metal @base", "from": "system", - "setting_id": "BPLB10_07", + "setting_id": "iuy4UVicjmTl5B0i", "instantiation": "true", "eng_plate_temp": [ "55" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metal @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metal @BBL P1P.json index 48eede1a01..512647c8ac 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metal @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA Metal @BBL P1P", "inherits": "BETA PLA Metal @base", "from": "system", - "setting_id": "BPLB10_10", + "setting_id": "nEkQaDE7Ps8lSN5M", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metal @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metal @BBL X1C.json index 263bf64877..342feb455d 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metal @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA Metal @BBL X1C", "inherits": "BETA PLA Metal @base", "from": "system", - "setting_id": "BPLB10", + "setting_id": "RkaFgVuA3VCXCUwR", "instantiation": "true", "filament_max_volumetric_speed": [ "21", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metallic @BBL A1.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metallic @BBL A1.json index 87c03f5dc7..18c962f034 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metallic @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA Metallic @BBL A1", "inherits": "BETA PLA Metallic @base", "from": "system", - "setting_id": "BPLB11_04", + "setting_id": "Uqkj3TepJG7iMPQG", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metallic @BBL A1M.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metallic @BBL A1M.json index 685c0be389..e0600f6ae0 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metallic @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA Metallic @BBL A1M", "inherits": "BETA PLA Metallic @base", "from": "system", - "setting_id": "BPLB11_00", + "setting_id": "LaqMwUAucC9o1Iwn", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metallic @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metallic @BBL H2D.json index 23e0eada1d..d9a181f2ba 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metallic @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA Metallic @BBL H2D", "inherits": "BETA PLA Metallic @base", "from": "system", - "setting_id": "BPLB11_07", + "setting_id": "S5UzAJasZ5CyEmfL", "instantiation": "true", "eng_plate_temp": [ "55" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metallic @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metallic @BBL P1P.json index eb1d1f6804..cdb7e0a72d 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metallic @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA Metallic @BBL P1P", "inherits": "BETA PLA Metallic @base", "from": "system", - "setting_id": "BPLB11_10", + "setting_id": "xyNibP5nFO0inDjx", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metallic @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metallic @BBL X1C.json index edc372c4c8..0387582b90 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Metallic @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA Metallic @BBL X1C", "inherits": "BETA PLA Metallic @base", "from": "system", - "setting_id": "BPLB11", + "setting_id": "vXm2F0GQvACSRrDF", "instantiation": "true", "filament_max_volumetric_speed": [ "21", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA PRO @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA PRO @BBL A1.json index c8b2a6fa6a..5366e04cf5 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA PRO @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA PRO @BBL A1", "inherits": "BETA PLA PRO @base", "from": "system", - "setting_id": "BPLB12_04", + "setting_id": "SiBlaw6JN4thc2v7", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA PRO @BBL A1M.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA PRO @BBL A1M.json index fe1de91251..215c2b6e4e 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA PRO @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA PRO @BBL A1M", "inherits": "BETA PLA PRO @base", "from": "system", - "setting_id": "BPLB12_02", + "setting_id": "3PLh2oirCzwxIYY7", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA PRO @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA PRO @BBL H2D.json index 13aaebc092..605e1e9a37 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA PRO @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA PRO @BBL H2D", "inherits": "BETA PLA PRO @base", "from": "system", - "setting_id": "BPLB12_12", + "setting_id": "Mth7IAdxkWf7pSSj", "instantiation": "true", "additional_cooling_fan_speed": [ "75" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA PRO @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA PRO @BBL P1P.json index ded38c78d8..35d88a6d9f 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA PRO @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA PRO @BBL P1P", "inherits": "BETA PLA PRO @base", "from": "system", - "setting_id": "BPLB12_10", + "setting_id": "TbpMpIJpBn6t93fw", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA PRO @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA PRO @BBL X1C.json index bb7581f809..b35f73cc70 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA PRO @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA PRO @BBL X1C", "inherits": "BETA PLA PRO @base", "from": "system", - "setting_id": "BPLB12", + "setting_id": "vGDfXmE1VEysXtAO", "instantiation": "true", "filament_long_retractions_when_cut": [ "1", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk @BBL A1.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk @BBL A1.json index 0fa19d6760..7431ae5cfb 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA Silk @BBL A1", "inherits": "BETA PLA Silk @base", "from": "system", - "setting_id": "BPLB13_05", + "setting_id": "YX4fP5hZvz8u47CE", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk @BBL A1M.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk @BBL A1M.json index eb9a1c4d17..a04e603208 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA Silk @BBL A1M", "inherits": "BETA PLA Silk @base", "from": "system", - "setting_id": "BPLB13_03", + "setting_id": "ebNsrfIGYb2cWiFZ", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk @BBL H2D.json index 513d2a4aa7..943bdfaf11 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA Silk @BBL H2D", "inherits": "BETA PLA Silk @base", "from": "system", - "setting_id": "BPLB13_16", + "setting_id": "qXuac1ixZ4VdWMyA", "instantiation": "true", "additional_cooling_fan_speed": [ "75" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk @BBL P1P.json index e8cbc2e14b..8967b90534 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA Silk @BBL P1P", "inherits": "BETA PLA Silk @base", "from": "system", - "setting_id": "BPLB13_12", + "setting_id": "AjbwkQMcmhlbU05G", "instantiation": "true", "filament_flow_ratio": [ "0.98", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk @BBL X1C.json index 8a7e3eff50..5a94b4e94b 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA Silk @BBL X1C", "inherits": "BETA PLA Silk @base", "from": "system", - "setting_id": "BPLB13_01", + "setting_id": "WfQvql8IUq5wYZy2", "instantiation": "true", "filament_flow_ratio": [ "0.98", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk+ @BBL A1.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk+ @BBL A1.json index fde75ade2b..7dd7287011 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk+ @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA Silk+ @BBL A1", "inherits": "BETA PLA Silk+ @base", "from": "system", - "setting_id": "BPLB01_05", + "setting_id": "tuARzQoSxOfqBGVB", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk+ @BBL A1M.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk+ @BBL A1M.json index 2f7caa3f45..343cef28a0 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk+ @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA Silk+ @BBL A1M", "inherits": "BETA PLA Silk+ @base", "from": "system", - "setting_id": "BPLB01_07", + "setting_id": "FYOjtlcF2X4JJTW2", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk+ @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk+ @BBL H2D.json index 244dab338f..35d9da0d5c 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk+ @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA Silk+ @BBL H2D", "inherits": "BETA PLA Silk+ @base", "from": "system", - "setting_id": "BPLB01_09", + "setting_id": "4aj9YjpmJDQoTIv7", "instantiation": "true", "additional_cooling_fan_speed": [ "75" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk+ @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk+ @BBL P1P.json index f809b6d7e9..0655808c45 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk+ @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA Silk+ @BBL P1P", "inherits": "BETA PLA Silk+ @base", "from": "system", - "setting_id": "BPLB01_03", + "setting_id": "2zazn2f141IdduiF", "instantiation": "true", "filament_flow_ratio": [ "0.98", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk+ @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk+ @BBL X1C.json index 065b493b2c..f4061a43c5 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Silk+ @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA Silk+ @BBL X1C", "inherits": "BETA PLA Silk+ @base", "from": "system", - "setting_id": "BPLB01_00", + "setting_id": "II7v6FJKAEfsHPsC", "instantiation": "true", "filament_flow_ratio": [ "0.98", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Transparent @BBL A1.json similarity index 96% rename from resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Transparent @BBL A1.json index 2a84d1f507..80c20b5305 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Transparent @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA Transparent @BBL A1", "inherits": "BETA PLA Transparent @base", "from": "system", - "setting_id": "BPLB14_06", + "setting_id": "V0vkf3I1WVUAqxoF", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Transparent @BBL A1M.json similarity index 96% rename from resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Transparent @BBL A1M.json index 94753a2b93..d573615c6e 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Transparent @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA Transparent @BBL A1M", "inherits": "BETA PLA Transparent @base", "from": "system", - "setting_id": "BPLB14_09", + "setting_id": "Byg1D2JdNLqdxm0F", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Transparent @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Transparent @BBL H2D.json index 3d11c50857..6932a2a9b1 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Transparent @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA Transparent @BBL H2D", "inherits": "BETA PLA Transparent @base", "from": "system", - "setting_id": "BPLB14_12", + "setting_id": "1l2wIbU3KDjwmUVY", "instantiation": "true", "eng_plate_temp": [ "55" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Transparent @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Transparent @BBL P1P.json index a180a2a124..3ab7af716f 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Transparent @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA Transparent @BBL P1P", "inherits": "BETA PLA Transparent @base", "from": "system", - "setting_id": "BPLB14_03", + "setting_id": "lkk8IBexAioV8IVA", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Transparent @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Transparent @BBL X1C.json index 072bb2ec9c..0c564fe5d0 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Transparent @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA Transparent @BBL X1C", "inherits": "BETA PLA Transparent @base", "from": "system", - "setting_id": "BPLB14_00", + "setting_id": "irzqsuMp63Uk5U3F", "instantiation": "true", "description": "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.", "filament_retract_before_wipe": [ diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA UV Color Change @BBL A1.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA UV Color Change @BBL A1.json index f9016e233b..1cb752641a 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA UV Color Change @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA UV Color Change @BBL A1", "inherits": "BETA PLA UV Color Change @base", "from": "system", - "setting_id": "BPLB15_11", + "setting_id": "JrWOMe0rkRqc1Ke4", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA UV Color Change @BBL A1M.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA UV Color Change @BBL A1M.json index da74968584..9f2b89b70e 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA UV Color Change @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA UV Color Change @BBL A1M", "inherits": "BETA PLA UV Color Change @base", "from": "system", - "setting_id": "BPLB15_16", + "setting_id": "7V4HEL5PUiStwzpz", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA UV Color Change @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA UV Color Change @BBL H2D.json index 5d23c31585..2e086ef2c9 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA UV Color Change @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA UV Color Change @BBL H2D", "inherits": "BETA PLA UV Color Change @base", "from": "system", - "setting_id": "BPLB15_06", + "setting_id": "oOCiCsRmcy4hRZ45", "instantiation": "true", "eng_plate_temp": [ "55" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA UV Color Change @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA UV Color Change @BBL P1P.json index 4ec6559082..15309bbca5 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA UV Color Change @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA UV Color Change @BBL P1P", "inherits": "BETA PLA UV Color Change @base", "from": "system", - "setting_id": "BPLB15_02", + "setting_id": "lxVwiIRA5WN0N2TU", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA UV Color Change @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA UV Color Change @BBL X1C.json index f990e19fbe..050907b9da 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA UV Color Change @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA UV Color Change @BBL X1C", "inherits": "BETA PLA UV Color Change @base", "from": "system", - "setting_id": "BPLB15_00", + "setting_id": "PRWqTkiWEkWOiXFA", "instantiation": "true", "filament_long_retractions_when_cut": [ "1", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Wood @BBL A1.json similarity index 96% rename from resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Wood @BBL A1.json index 59a931d95d..1782275869 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Wood @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA Wood @BBL A1", "inherits": "BETA PLA Wood @base", "from": "system", - "setting_id": "BPLB19_04", + "setting_id": "NnfeDQPSJ3lnrAw9", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Wood @BBL A1M.json similarity index 97% rename from resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Wood @BBL A1M.json index ee662f0c7b..755497f89b 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Wood @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA Wood @BBL A1M", "inherits": "BETA PLA Wood @base", "from": "system", - "setting_id": "BPLB19_05", + "setting_id": "GXigA5h84gA4KRH3", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Wood @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Wood @BBL H2D.json index 74c43f6e6b..07f19819fc 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Wood @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA Wood @BBL H2D", "inherits": "BETA PLA Wood @base", "from": "system", - "setting_id": "BPLB19_06", + "setting_id": "8KPAmWj4bJ2P4gAn", "instantiation": "true", "eng_plate_temp": [ "55" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Wood @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Wood @BBL P1P.json index eb0c56df11..62d5a28a78 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Wood @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA Wood @BBL P1P", "inherits": "BETA PLA Wood @base", "from": "system", - "setting_id": "BPLB19_03", + "setting_id": "mcsmTaMSaWs2RBvn", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Wood @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Wood @BBL X1C.json index 9ada7a13f1..e000cf0259 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Wood @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA Wood @BBL X1C", "inherits": "BETA PLA Wood @base", "from": "system", - "setting_id": "BPLB19_00", + "setting_id": "TI16gHjo52VFaAW1", "instantiation": "true", "filament_flow_ratio": [ "0.98", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Youth @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Youth @BBL A1.json index c2fa4faa80..fcfd4f3774 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Youth @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA Youth @BBL A1", "inherits": "BETA PLA Youth @base", "from": "system", - "setting_id": "BPLB16_04", + "setting_id": "jVWf9kiFpfmxFlw6", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Youth @BBL A1M.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Youth @BBL A1M.json index 799c3c13db..e8e6da828a 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Youth @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA Youth @BBL A1M", "inherits": "BETA PLA Youth @base", "from": "system", - "setting_id": "BPLB16_02", + "setting_id": "OfKH1gaVgx1adGeJ", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Youth @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Youth @BBL H2D.json index 66520b424e..4b1b4b9a50 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Youth @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA PLA Youth @BBL H2D", "inherits": "BETA PLA Youth @base", "from": "system", - "setting_id": "BPLB16_05", + "setting_id": "ZtgqauY30xyhRIB3", "instantiation": "true", "additional_cooling_fan_speed": [ "75" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Youth @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Youth @BBL P1P.json index 2afbb6da25..a40b68fbc3 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Youth @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA Youth @BBL P1P", "inherits": "BETA PLA Youth @base", "from": "system", - "setting_id": "BPLB16_10", + "setting_id": "9vXzlNUSu4TNwDJU", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Youth @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Youth @BBL X1C.json index e80eb16387..f073c1dab8 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA Youth @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA Youth @BBL X1C", "inherits": "BETA PLA Youth @base", "from": "system", - "setting_id": "BPLB16", + "setting_id": "CjlZ1vLEO5q9poBI", "instantiation": "true", "filament_long_retractions_when_cut": [ "1", diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA-CF @BBL A1.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA-CF @BBL A1.json index 8aab52aaff..9412797e04 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA-CF @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA PLA-CF @BBL A1", "inherits": "BETA PLA-CF @base", "from": "system", - "setting_id": "BPLB17_04", + "setting_id": "BrCWtHyjzY4HmH3d", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA-CF @BBL A1M.json similarity index 95% rename from resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA-CF @BBL A1M.json index 4ccfd18683..344eb03185 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA-CF @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA PLA-CF @BBL A1M", "inherits": "BETA PLA-CF @base", "from": "system", - "setting_id": "BPLB17_00", + "setting_id": "IWXiKjynDITAsjK6", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL H2D 0.4 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA-CF @BBL H2D 0.4 nozzle.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL H2D 0.4 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA-CF @BBL H2D 0.4 nozzle.json index 320aee32e5..892c56cf9f 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA-CF @BBL H2D 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "BETA PLA-CF @BBL H2D 0.4 nozzle", "inherits": "BETA PLA-CF @base", "from": "system", - "setting_id": "BPLB17_08", + "setting_id": "xwMsvH6rRcJMpVlv", "instantiation": "true", "counter_coef_2": [ "0.012" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA-CF @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA-CF @BBL P1P.json index 499a024436..d7e1cf9423 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA-CF @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA PLA-CF @BBL P1P", "inherits": "BETA PLA-CF @base", "from": "system", - "setting_id": "BPLB17_10", + "setting_id": "zLVxbFEuXKyzoI7M", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA-CF @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA-CF @BBL X1C.json index 0f123a7e5a..ae78bbd234 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA PLA-CF @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA PLA-CF @BBL X1C", "inherits": "BETA PLA-CF @base", "from": "system", - "setting_id": "BPLB17_01", + "setting_id": "OnU9q1dVgATPktPE", "instantiation": "true", "filament_long_retractions_when_cut": [ "1", diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 90A @BBL A1.json similarity index 93% rename from resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 90A @BBL A1.json index 35e3010043..82b5dcda5e 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 90A @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA TPU 90A @BBL A1", "inherits": "BETA TPU 90A @base", "from": "system", - "setting_id": "BTUB00_04", + "setting_id": "kJCrh3pbuHtgOzPo", "instantiation": "true", "filament_density": [ "1.22" diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 90A @BBL A1M.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 90A @BBL A1M.json index e4a5c32532..0ac15e9a90 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 90A @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA TPU 90A @BBL A1M", "inherits": "BETA TPU 90A @base", "from": "system", - "setting_id": "BTUB00_05", + "setting_id": "r1Upv1GORMLTOi0k", "instantiation": "true", "filament_density": [ "1.22" diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 90A @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 90A @BBL H2D.json index d37436075b..8eb8e80392 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 90A @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA TPU 90A @BBL H2D", "inherits": "BETA TPU 90A @base", "from": "system", - "setting_id": "BTUB00_02", + "setting_id": "lm5PEdmOJODAz6KJ", "instantiation": "true", "additional_cooling_fan_speed": [ "100" diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 90A @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 90A @BBL P1P.json index 2b599ce405..65070fff7b 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 90A @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA TPU 90A @BBL P1P", "inherits": "BETA TPU 90A @base", "from": "system", - "setting_id": "BTUB00_01", + "setting_id": "OourWlFV3alIJBzh", "instantiation": "true", "filament_max_volumetric_speed": [ "2.8", diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 90A @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 90A @BBL X1C.json index 00935d8509..b95218473a 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 90A @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 90A @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA TPU 90A @BBL X1C", "inherits": "BETA TPU 90A @base", "from": "system", - "setting_id": "BTUB00_00", + "setting_id": "nLIwjhps5uVtTuo4", "instantiation": "true", "filament_max_volumetric_speed": [ "2.8", diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 95A @BBL A1.json similarity index 93% rename from resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 95A @BBL A1.json index 7a7432b1c0..716d6a743b 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 95A @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA TPU 95A @BBL A1", "inherits": "BETA TPU 95A @base", "from": "system", - "setting_id": "BTUB02_01", + "setting_id": "OOPUx5d9zREy0XXN", "instantiation": "true", "filament_max_volumetric_speed": [ "3.6" diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 95A @BBL A1M.json similarity index 93% rename from resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 95A @BBL A1M.json index a6d90ba06a..12f9bf0f0b 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 95A @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA TPU 95A @BBL A1M", "inherits": "BETA TPU 95A @base", "from": "system", - "setting_id": "BTUB02_00", + "setting_id": "rNCp3fE6g2C8sd7S", "instantiation": "true", "filament_max_volumetric_speed": [ "3.6" diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 95A @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 95A @BBL H2D.json index dcce8d00cb..62cdeadad1 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 95A @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA TPU 95A @BBL H2D", "inherits": "BETA TPU 95A @base", "from": "system", - "setting_id": "BTUB02_03", + "setting_id": "k6clcTFJXTGVdmZg", "instantiation": "true", "additional_cooling_fan_speed": [ "100" diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 95A @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 95A @BBL P1P.json index a2fb288291..d16b0ae94a 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 95A @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA TPU 95A @BBL P1P", "inherits": "BETA TPU 95A @base", "from": "system", - "setting_id": "BTUB02_10", + "setting_id": "RaXgc8QZiSW0tsnD", "instantiation": "true", "filament_max_volumetric_speed": [ "3.6", diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 95A @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 95A @BBL X1C.json index e96641af54..985aca2147 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 95A @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 95A @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA TPU 95A @BBL X1C", "inherits": "BETA TPU 95A @base", "from": "system", - "setting_id": "BTUB02", + "setting_id": "ngJL0G4zca0UcpwY", "instantiation": "true", "filament_max_volumetric_speed": [ "3.6", diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 98A @BBL A1.json similarity index 93% rename from resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 98A @BBL A1.json index 2813ecc893..9ff26d32d3 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 98A @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA TPU 98A @BBL A1", "inherits": "BETA TPU 98A @base", "from": "system", - "setting_id": "BTUB03_01", + "setting_id": "uSuXXdSY9wCappR9", "instantiation": "true", "filament_max_volumetric_speed": [ "3.6" diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 98A @BBL A1M.json similarity index 93% rename from resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 98A @BBL A1M.json index baf4f84328..8506e28d8b 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 98A @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA TPU 98A @BBL A1M", "inherits": "BETA TPU 98A @base", "from": "system", - "setting_id": "BTUB03_00", + "setting_id": "KZXiOO0bAUvrntok", "instantiation": "true", "filament_max_volumetric_speed": [ "3.6" diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 98A @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 98A @BBL H2D.json index bf342fadc9..ab3c0989cb 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 98A @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA TPU 98A @BBL H2D", "inherits": "BETA TPU 98A @base", "from": "system", - "setting_id": "BTUB03_03", + "setting_id": "p0qjTRymaVctbU11", "instantiation": "true", "additional_cooling_fan_speed": [ "100" diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 98A @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 98A @BBL P1P.json index 419eb5b7c6..7ccae380cd 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 98A @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA TPU 98A @BBL P1P", "inherits": "BETA TPU 98A @base", "from": "system", - "setting_id": "BTUB03_10", + "setting_id": "dHuSF6XjQORHCc8n", "instantiation": "true", "filament_max_volumetric_speed": [ "3.6", diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 98A @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 98A @BBL X1C.json index 8df9a59fe2..c455de9c8d 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU 98A @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU 98A @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA TPU 98A @BBL X1C", "inherits": "BETA TPU 98A @base", "from": "system", - "setting_id": "BTUB03", + "setting_id": "jl1vNhZRhicI78UU", "instantiation": "true", "filament_max_volumetric_speed": [ "3.6", diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU Matte @BBL A1.json similarity index 93% rename from resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU Matte @BBL A1.json index 427e618aec..730b3e1419 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU Matte @BBL A1.json @@ -3,7 +3,7 @@ "name": "BETA TPU Matte @BBL A1", "inherits": "BETA TPU Matte @base", "from": "system", - "setting_id": "BTUB01_04", + "setting_id": "lnP769IP2TuLf36V", "instantiation": "true", "filament_density": [ "1.22" diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU Matte @BBL A1M.json similarity index 94% rename from resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU Matte @BBL A1M.json index 0ce2e0f9f3..df0f14e67f 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU Matte @BBL A1M.json @@ -3,7 +3,7 @@ "name": "BETA TPU Matte @BBL A1M", "inherits": "BETA TPU Matte @base", "from": "system", - "setting_id": "BTUB01_05", + "setting_id": "wjYECCkIeDnUZfqL", "instantiation": "true", "filament_density": [ "1.22" diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU Matte @BBL H2D.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU Matte @BBL H2D.json index 10193d7d5a..a1571446ab 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU Matte @BBL H2D.json @@ -3,7 +3,7 @@ "name": "BETA TPU Matte @BBL H2D", "inherits": "BETA TPU Matte @base", "from": "system", - "setting_id": "BTUB01_02", + "setting_id": "PeJPI88l3Ui7jZnj", "instantiation": "true", "additional_cooling_fan_speed": [ "100" diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU Matte @BBL P1P.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU Matte @BBL P1P.json index c5648fb898..a058c9b86d 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU Matte @BBL P1P.json @@ -3,7 +3,7 @@ "name": "BETA TPU Matte @BBL P1P", "inherits": "BETA TPU Matte @base", "from": "system", - "setting_id": "BTUB01_01", + "setting_id": "yyZ2UYGXe34MM1VO", "instantiation": "true", "filament_max_volumetric_speed": [ "2.8", diff --git a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU Matte @BBL X1C.json similarity index 98% rename from resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU Matte @BBL X1C.json index 046660b063..af019a9c89 100644 --- a/resources/profiles/BBL/filament/BETA/BETA TPU Matte @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BBL/BETA TPU Matte @BBL X1C.json @@ -3,7 +3,7 @@ "name": "BETA TPU Matte @BBL X1C", "inherits": "BETA TPU Matte @base", "from": "system", - "setting_id": "BTUB01_00", + "setting_id": "LmABGlfUSMLmezJw", "instantiation": "true", "filament_max_volumetric_speed": [ "2.8", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA ABS @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA ABS @base.json new file mode 100644 index 0000000000..848f3eacfc --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA ABS @base.json @@ -0,0 +1,93 @@ +{ + "type": "filament", + "name": "BETA ABS @base", + "inherits": "fdm_filament_abs", + "from": "system", + "filament_id": "OFjUXn67", + "instantiation": "false", + "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.", + "filament_cost": [ + "24.99" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "7.4" + ], + "activate_air_filtration": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "eng_plate_temp": [ + "90" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "filament_max_volumetric_speed": [ + "28.6" + ], + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "nozzle_temperature": [ + "270" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "100" + ], + "textured_plate_temp": [ + "90" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "filament_start_gcode": [ + "; Filament gcode\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "200" + ], + "filament_dev_ams_drying_time": [ + "12", + "8.0", + "12", + "8.0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "90" + ], + "filament_dev_drying_cooling_temperature": [ + "75" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "80", + "65", + "75" + ], + "filament_dev_drying_softening_temperature": [ + "80" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA ASA @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA ASA @base.json similarity index 52% rename from resources/profiles/BBL/filament/BETA/BETA ASA @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA ASA @base.json index a525f16bb1..38e260bf89 100644 --- a/resources/profiles/BBL/filament/BETA/BETA ASA @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA ASA @base.json @@ -53,5 +53,53 @@ ], "textured_plate_temp_initial_layer": [ "100" + ], + "activate_air_filtration": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "100" + ], + "filament_start_gcode": [ + "; Filament gcode\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "200" + ], + "filament_dev_ams_drying_time": [ + "12", + "8.0", + "12", + "8.0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "100" + ], + "filament_dev_drying_cooling_temperature": [ + "85" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "80", + "65", + "80" + ], + "filament_dev_drying_softening_temperature": [ + "85" ] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA HIPS @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA HIPS @base.json new file mode 100644 index 0000000000..1a228ea989 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA HIPS @base.json @@ -0,0 +1,56 @@ +{ + "type": "filament", + "name": "BETA HIPS @base", + "inherits": "fdm_filament_hips", + "from": "system", + "filament_id": "OFlmxlDG", + "instantiation": "false", + "filament_is_support": [ + "1" + ], + "filament_vendor": [ + "BETA" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_start_gcode": [ + "; Filament gcode\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "798" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "90" + ], + "filament_dev_drying_cooling_temperature": [ + "75" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "80", + "65", + "75" + ], + "filament_dev_drying_softening_temperature": [ + "80" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PAHT-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PAHT-CF @base.json new file mode 100644 index 0000000000..a0df70918d --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PAHT-CF @base.json @@ -0,0 +1,102 @@ +{ + "type": "filament", + "name": "BETA PAHT-CF @base", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "OF6qw3Wb", + "instantiation": "false", + "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "94.99" + ], + "filament_density": [ + "1.06" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_type": [ + "PA-CF" + ], + "filament_vendor": [ + "BETA" + ], + "full_fan_speed_layer": [ + "2" + ], + "impact_strength_z": [ + "13.3" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "temperature_vitrification": [ + "180" + ], + "activate_air_filtration": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_start_gcode": [ + "; Filament gcode\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "400" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_time": [ + "18" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "165" + ], + "filament_dev_drying_cooling_temperature": [ + "150" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_drying_softening_temperature": [ + "150" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PEBA 90A @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PEBA 90A @base.json new file mode 100644 index 0000000000..62a0db7d3c --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PEBA 90A @base.json @@ -0,0 +1,75 @@ +{ + "type": "filament", + "name": "BETA PEBA 90A @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "OFI2MKy7", + "instantiation": "false", + "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.", + "filament_cost": [ + "59.99" + ], + "filament_max_volumetric_speed": [ + "2.8" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "87.3" + ], + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "225" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "slow_down_layer_time": [ + "14" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "600" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_dev_chamber_drying_time": [ + "16" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "40" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG @base.json similarity index 72% rename from resources/profiles/BBL/filament/BETA/BETA PETG @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG @base.json index 07a25f9233..9acad81c21 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG @base.json @@ -92,5 +92,48 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Fluorescence @base.json similarity index 72% rename from resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Fluorescence @base.json index b79699b9fc..963100be12 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Fluorescence @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Fluorescence @base.json @@ -92,5 +92,48 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Glitter @base.json similarity index 72% rename from resources/profiles/BBL/filament/BETA/BETA PETG Glitter @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Glitter @base.json index c6b7b96de5..0137072894 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Glitter @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Glitter @base.json @@ -92,5 +92,48 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Glow @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Glow @base.json similarity index 72% rename from resources/profiles/BBL/filament/BETA/BETA PETG Glow @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Glow @base.json index 30c8cc2783..2765d13a52 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Glow @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Glow @base.json @@ -92,5 +92,48 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Gradient @base.json similarity index 72% rename from resources/profiles/BBL/filament/BETA/BETA PETG Gradient @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Gradient @base.json index cff77a0d6c..4e30a572bc 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Gradient @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Gradient @base.json @@ -92,5 +92,48 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG HF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG HF @base.json similarity index 69% rename from resources/profiles/BBL/filament/BETA/BETA PETG HF @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG HF @base.json index b7aa43b6b5..233a35897a 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG HF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG HF @base.json @@ -85,5 +85,48 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Heat Color Change @base.json similarity index 72% rename from resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Heat Color Change @base.json index 254cf9e4c1..bae2307535 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Heat Color Change @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Heat Color Change @base.json @@ -92,5 +92,48 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Marble @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Marble @base.json similarity index 72% rename from resources/profiles/BBL/filament/BETA/BETA PETG Marble @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Marble @base.json index 335a3f59b2..a8c63f5eec 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Marble @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Marble @base.json @@ -92,5 +92,48 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Matte @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Matte @base.json similarity index 72% rename from resources/profiles/BBL/filament/BETA/BETA PETG Matte @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Matte @base.json index 52a838f323..4b26213bc7 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Matte @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Matte @base.json @@ -92,5 +92,48 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Metallic @base.json similarity index 72% rename from resources/profiles/BBL/filament/BETA/BETA PETG Metallic @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Metallic @base.json index 9c276bcf4d..fad379b99b 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Metallic @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Metallic @base.json @@ -92,5 +92,48 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Transparent @base.json similarity index 70% rename from resources/profiles/BBL/filament/BETA/BETA PETG Transparent @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Transparent @base.json index 781d69af3a..63278e852e 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG Transparent @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG Transparent @base.json @@ -80,5 +80,48 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG UV Color Change @base.json similarity index 72% rename from resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG UV Color Change @base.json index 42fa3bd62b..524c425437 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG UV Color Change @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG UV Color Change @base.json @@ -92,5 +92,48 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG-CF @base.json similarity index 68% rename from resources/profiles/BBL/filament/BETA/BETA PETG-CF @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG-CF @base.json index 8e3514f0ad..cde1782bbd 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG-CF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG-CF @base.json @@ -79,5 +79,48 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG-GF @base.json similarity index 68% rename from resources/profiles/BBL/filament/BETA/BETA PETG-GF @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG-GF @base.json index d530f7a1d7..39dc650e7a 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PETG-GF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PETG-GF @base.json @@ -79,5 +79,48 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Basic @base.json similarity index 61% rename from resources/profiles/BBL/filament/BETA/BETA PLA Basic @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Basic @base.json index 429ecceda1..58375bd9c2 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Basic @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Basic @base.json @@ -44,5 +44,51 @@ "compatible_printers": [], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Chameleon @base.json similarity index 54% rename from resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Chameleon @base.json index 5054237514..c26be0fa57 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Chameleon @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Chameleon @base.json @@ -22,5 +22,51 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Fluorescence @base.json similarity index 54% rename from resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Fluorescence @base.json index d9198287aa..0e928aaf25 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Fluorescence @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Fluorescence @base.json @@ -22,5 +22,51 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Glitter @base.json similarity index 54% rename from resources/profiles/BBL/filament/BETA/BETA PLA Glitter @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Glitter @base.json index 545a34dd92..4cfe7043d4 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Glitter @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Glitter @base.json @@ -22,5 +22,51 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Glow @base.json similarity index 56% rename from resources/profiles/BBL/filament/BETA/BETA PLA Glow @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Glow @base.json index 6be0a9da33..4381b12aab 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Glow @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Glow @base.json @@ -28,5 +28,51 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Gradient @base.json similarity index 54% rename from resources/profiles/BBL/filament/BETA/BETA PLA Gradient @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Gradient @base.json index 9609ff08d3..b5cad1fec6 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Gradient @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Gradient @base.json @@ -22,5 +22,51 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Heat Color Change @base.json similarity index 54% rename from resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Heat Color Change @base.json index 958b999d91..4d60266708 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Heat Color Change @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Heat Color Change @base.json @@ -22,5 +22,51 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA High Speed @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA High Speed @base.json new file mode 100644 index 0000000000..39ec3bd0d1 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA High Speed @base.json @@ -0,0 +1,69 @@ +{ + "type": "filament", + "name": "BETA PLA High Speed @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OF3PDEw3", + "instantiation": "false", + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "slow_down_layer_time": [ + "8" + ], + "filament_vendor": [ + "BETA" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ] +} diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA High Temp @base.json similarity index 62% rename from resources/profiles/BBL/filament/BETA/BETA PLA High Temp @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA High Temp @base.json index d900b28794..539f71ed33 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA High Temp @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA High Temp @base.json @@ -35,5 +35,51 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Marble @base.json similarity index 54% rename from resources/profiles/BBL/filament/BETA/BETA PLA Marble @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Marble @base.json index a472446d9a..4c1016d11f 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Marble @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Marble @base.json @@ -22,5 +22,51 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Matte @base.json similarity index 58% rename from resources/profiles/BBL/filament/BETA/BETA PLA Matte @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Matte @base.json index 32bd79b43b..74e742ddf9 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Matte @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Matte @base.json @@ -34,5 +34,51 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Metal @base.json similarity index 59% rename from resources/profiles/BBL/filament/BETA/BETA PLA Metal @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Metal @base.json index 607e20fa4e..e2c18cb190 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Metal @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Metal @base.json @@ -26,5 +26,51 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Metallic @base.json similarity index 59% rename from resources/profiles/BBL/filament/BETA/BETA PLA Metallic @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Metallic @base.json index c03bc0a8c7..0ca2cdde44 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Metallic @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Metallic @base.json @@ -26,5 +26,51 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA PRO @base.json similarity index 61% rename from resources/profiles/BBL/filament/BETA/BETA PLA PRO @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA PRO @base.json index 6938382062..af4fc215f1 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA PRO @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA PRO @base.json @@ -44,5 +44,51 @@ "compatible_printers": [], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Silk @base.json similarity index 63% rename from resources/profiles/BBL/filament/BETA/BETA PLA Silk @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Silk @base.json index a0c61acd51..c343d78794 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Silk @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Silk @base.json @@ -41,5 +41,51 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Silk+ @base.json similarity index 62% rename from resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Silk+ @base.json index 0bedc9186a..45485dfd0b 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Silk+ @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Silk+ @base.json @@ -35,5 +35,51 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Transparent @base.json similarity index 54% rename from resources/profiles/BBL/filament/BETA/BETA PLA Transparent @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Transparent @base.json index be62c10734..12a3538c6e 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Transparent @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Transparent @base.json @@ -22,5 +22,51 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA UV Color Change @base.json similarity index 57% rename from resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA UV Color Change @base.json index d95a0d8411..dbb8a8d0c4 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA UV Color Change @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA UV Color Change @base.json @@ -28,5 +28,51 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Wood @base.json similarity index 59% rename from resources/profiles/BBL/filament/BETA/BETA PLA Wood @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Wood @base.json index c5eeae9995..fb2b544375 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Wood @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Wood @base.json @@ -34,5 +34,51 @@ ], "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Youth @base.json similarity index 58% rename from resources/profiles/BBL/filament/BETA/BETA PLA Youth @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Youth @base.json index 5fa118d566..dbc749d229 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA Youth @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA Youth @base.json @@ -34,5 +34,51 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA-CF @base.json similarity index 63% rename from resources/profiles/BBL/filament/BETA/BETA PLA-CF @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA-CF @base.json index f0f632adfa..08c441b7ac 100644 --- a/resources/profiles/BBL/filament/BETA/BETA PLA-CF @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA PLA-CF @base.json @@ -52,5 +52,51 @@ ], "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}" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" ] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA TPU 90A @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA TPU 90A @base.json new file mode 100644 index 0000000000..106ef8b7f6 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA TPU 90A @base.json @@ -0,0 +1,75 @@ +{ + "type": "filament", + "name": "BETA TPU 90A @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "OF6Yn69v", + "instantiation": "false", + "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.", + "filament_cost": [ + "59.99" + ], + "filament_max_volumetric_speed": [ + "2.8" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "87.3" + ], + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "225" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "slow_down_layer_time": [ + "14" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "600" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_dev_chamber_drying_time": [ + "16" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "40" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA TPU 95A @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA TPU 95A @base.json new file mode 100644 index 0000000000..912d748d4c --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA TPU 95A @base.json @@ -0,0 +1,72 @@ +{ + "type": "filament", + "name": "BETA TPU 95A @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "OFK7830e", + "instantiation": "false", + "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.", + "filament_cost": [ + "41.99" + ], + "filament_density": [ + "1.22" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "88.7" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "600" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_dev_chamber_drying_time": [ + "16" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "40" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA TPU 98A @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA TPU 98A @base.json new file mode 100644 index 0000000000..13192a41f0 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA TPU 98A @base.json @@ -0,0 +1,72 @@ +{ + "type": "filament", + "name": "BETA TPU 98A @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "OFzaq7Yg", + "instantiation": "false", + "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.", + "filament_cost": [ + "41.99" + ], + "filament_density": [ + "1.22" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "88.7" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "600" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_dev_chamber_drying_time": [ + "16" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "40" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA TPU Matte @base.json b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA TPU Matte @base.json new file mode 100644 index 0000000000..4b27f0abf7 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/BETA/BETA TPU Matte @base.json @@ -0,0 +1,75 @@ +{ + "type": "filament", + "name": "BETA TPU Matte @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "OF4QZANi", + "instantiation": "false", + "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.", + "filament_cost": [ + "59.99" + ], + "filament_max_volumetric_speed": [ + "2.8" + ], + "filament_vendor": [ + "BETA" + ], + "impact_strength_z": [ + "87.3" + ], + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "225" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "slow_down_layer_time": [ + "14" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "600" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_dev_chamber_drying_time": [ + "16" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "40" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ] +} diff --git a/resources/profiles/BBL/filament/COEX/COEX ABS @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS @BBL X1 0.2 nozzle.json similarity index 90% rename from resources/profiles/BBL/filament/COEX/COEX ABS @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS @BBL X1 0.2 nozzle.json index 6622dad899..0ca53101a7 100644 --- a/resources/profiles/BBL/filament/COEX/COEX ABS @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS @BBL X1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX ABS @BBL X1 0.2 nozzle", "inherits": "COEX ABS @base", "from": "system", - "setting_id": "CXABSB01_02", + "setting_id": "RG1oJ6nUUar2xjeP", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX ABS @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS @BBL X1.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX ABS @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS @BBL X1.json index 7b10388861..441ac96720 100644 --- a/resources/profiles/BBL/filament/COEX/COEX ABS @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS @BBL X1.json @@ -3,7 +3,7 @@ "name": "COEX ABS @BBL X1", "inherits": "COEX ABS @base", "from": "system", - "setting_id": "CXABSB01_03", + "setting_id": "EYfQzF9Xb2lvPs9b", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX ABS @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS @BBL X1C 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX ABS @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS @BBL X1C 0.2 nozzle.json index 095cdc7364..905c4f009f 100644 --- a/resources/profiles/BBL/filament/COEX/COEX ABS @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS @BBL X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX ABS @BBL X1C 0.2 nozzle", "inherits": "COEX ABS @base", "from": "system", - "setting_id": "CXABSB01_04", + "setting_id": "WBC8PkLBCiT1VnCz", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX ABS @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS @BBL X1C.json similarity index 94% rename from resources/profiles/BBL/filament/COEX/COEX ABS @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS @BBL X1C.json index f3b31bf01a..e5c818ddcd 100644 --- a/resources/profiles/BBL/filament/COEX/COEX ABS @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS @BBL X1C.json @@ -3,7 +3,7 @@ "name": "COEX ABS @BBL X1C", "inherits": "COEX ABS @base", "from": "system", - "setting_id": "CXABSB01_01", + "setting_id": "AwuhtCWlU5uzCk7j", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX ABS PRIME @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS PRIME @BBL X1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX ABS PRIME @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS PRIME @BBL X1 0.2 nozzle.json index 148aac0fe0..4c8947bc26 100644 --- a/resources/profiles/BBL/filament/COEX/COEX ABS PRIME @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS PRIME @BBL X1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX ABS PRIME @BBL X1 0.2 nozzle", "inherits": "COEX ABS PRIME @base", "from": "system", - "setting_id": "CXABPB09_02", + "setting_id": "nWGYzlOGc2WsoIdU", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX ABS PRIME @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS PRIME @BBL X1.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX ABS PRIME @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS PRIME @BBL X1.json index f118e9e390..74f3595357 100644 --- a/resources/profiles/BBL/filament/COEX/COEX ABS PRIME @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS PRIME @BBL X1.json @@ -3,7 +3,7 @@ "name": "COEX ABS PRIME @BBL X1", "inherits": "COEX ABS PRIME @base", "from": "system", - "setting_id": "CXABPB09_03", + "setting_id": "N5mryBHDklwUbPkx", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX ABS PRIME @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS PRIME @BBL X1C 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX ABS PRIME @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS PRIME @BBL X1C 0.2 nozzle.json index 6bfcf676fb..46363dcc07 100644 --- a/resources/profiles/BBL/filament/COEX/COEX ABS PRIME @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS PRIME @BBL X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX ABS PRIME @BBL X1C 0.2 nozzle", "inherits": "COEX ABS PRIME @base", "from": "system", - "setting_id": "CXABPB09_04", + "setting_id": "xj7D5OzJSN6e8oJW", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX ABS PRIME @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS PRIME @BBL X1C.json similarity index 94% rename from resources/profiles/BBL/filament/COEX/COEX ABS PRIME @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS PRIME @BBL X1C.json index 45144ae3fe..7a18a3c848 100644 --- a/resources/profiles/BBL/filament/COEX/COEX ABS PRIME @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ABS PRIME @BBL X1C.json @@ -3,7 +3,7 @@ "name": "COEX ABS PRIME @BBL X1C", "inherits": "COEX ABS PRIME @base", "from": "system", - "setting_id": "CXABPB09_01", + "setting_id": "k9NyXpycDZJAnFLF", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX ASA PRIME @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ASA PRIME @BBL X1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX ASA PRIME @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ASA PRIME @BBL X1 0.2 nozzle.json index e690412a58..b1e0f04377 100644 --- a/resources/profiles/BBL/filament/COEX/COEX ASA PRIME @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ASA PRIME @BBL X1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX ASA PRIME @BBL X1 0.2 nozzle", "inherits": "COEX ASA PRIME @base", "from": "system", - "setting_id": "CXASAB04_01", + "setting_id": "tuxYV5K2a9arndZ0", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX ASA PRIME @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ASA PRIME @BBL X1.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX ASA PRIME @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ASA PRIME @BBL X1.json index dcc177b1ed..a8e4357478 100644 --- a/resources/profiles/BBL/filament/COEX/COEX ASA PRIME @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ASA PRIME @BBL X1.json @@ -3,7 +3,7 @@ "name": "COEX ASA PRIME @BBL X1", "inherits": "COEX ASA PRIME @base", "from": "system", - "setting_id": "CXASAB04_02", + "setting_id": "o8hJqPQWAuJXxwxd", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX ASA PRIME @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ASA PRIME @BBL X1C 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX ASA PRIME @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ASA PRIME @BBL X1C 0.2 nozzle.json index 7067bf1b1e..d084c99750 100644 --- a/resources/profiles/BBL/filament/COEX/COEX ASA PRIME @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ASA PRIME @BBL X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX ASA PRIME @BBL X1C 0.2 nozzle", "inherits": "COEX ASA PRIME @base", "from": "system", - "setting_id": "CXASAB04_03", + "setting_id": "tjT134m6lHPjh5YH", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX ASA PRIME @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ASA PRIME @BBL X1C.json similarity index 94% rename from resources/profiles/BBL/filament/COEX/COEX ASA PRIME @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ASA PRIME @BBL X1C.json index 224a6279d6..70e90f269d 100644 --- a/resources/profiles/BBL/filament/COEX/COEX ASA PRIME @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX ASA PRIME @BBL X1C.json @@ -3,7 +3,7 @@ "name": "COEX ASA PRIME @BBL X1C", "inherits": "COEX ASA PRIME @base", "from": "system", - "setting_id": "CXASAB04_04", + "setting_id": "fPFt2sY4junWyKad", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX NYLEX PA6-CF @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX NYLEX PA6-CF @BBL X1C.json similarity index 93% rename from resources/profiles/BBL/filament/COEX/COEX NYLEX PA6-CF @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX NYLEX PA6-CF @BBL X1C.json index d050a1f5a6..f3512373f5 100644 --- a/resources/profiles/BBL/filament/COEX/COEX NYLEX PA6-CF @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX NYLEX PA6-CF @BBL X1C.json @@ -3,7 +3,7 @@ "name": "COEX NYLEX PA6-CF @BBL X1C", "inherits": "COEX NYLEX PA6-CF @base", "from": "system", - "setting_id": "CXPACB23_01", + "setting_id": "fI5xYLWT4SAU5igp", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1S 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX NYLEX UNFILLED @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX NYLEX UNFILLED @BBL X1C.json similarity index 95% rename from resources/profiles/BBL/filament/COEX/COEX NYLEX UNFILLED @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX NYLEX UNFILLED @BBL X1C.json index 082948c7ec..d59aa48ae6 100644 --- a/resources/profiles/BBL/filament/COEX/COEX NYLEX UNFILLED @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX NYLEX UNFILLED @BBL X1C.json @@ -4,7 +4,7 @@ "renamed_from": "COEX NYLEX UNFILLED @BBL X1C", "inherits": "COEX NYLEX UNFILLED @base", "from": "system", - "setting_id": "CXPAUB21_01", + "setting_id": "rN4kjoJDWnro8SAu", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1 0.2 nozzle.json similarity index 89% rename from resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1 0.2 nozzle.json index 2800d37b1c..5f4fcb6089 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PCTG PRIME @BBL A1 0.2 nozzle", "inherits": "COEX PCTG PRIME @base", "from": "system", - "setting_id": "CXPCTX09", + "setting_id": "tuTktXuFMxhD5bdZ", "instantiation": "true", "filament_flow_ratio": [ "0.94" diff --git a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1 0.8 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1 0.8 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1 0.8 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1 0.8 nozzle.json index 441aa2cd9d..0b9bae9252 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1 0.8 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PCTG PRIME @BBL A1 0.8 nozzle", "inherits": "COEX PCTG PRIME @base", "from": "system", - "setting_id": "CXPCTX08", + "setting_id": "egEOiFlnbvmEKvNk", "instantiation": "true", "fan_max_speed": [ "60" diff --git a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1.json similarity index 89% rename from resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1.json index c681c2e87e..102bcf8b74 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1.json @@ -3,7 +3,7 @@ "name": "COEX PCTG PRIME @BBL A1", "inherits": "COEX PCTG PRIME @base", "from": "system", - "setting_id": "CXPCTX07", + "setting_id": "IveIh521d1zM1sbg", "instantiation": "true", "filament_flow_ratio": [ "0.94" diff --git a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1M 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1M 0.2 nozzle.json index b7cc4c4aa5..f93c4fbad6 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1M 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PCTG PRIME @BBL A1M 0.2 nozzle", "inherits": "COEX PCTG PRIME @BBL X1C 0.2 nozzle", "from": "system", - "setting_id": "CXPCTX06", + "setting_id": "xDQWVr6jZyb8JU9q", "instantiation": "true", "filament_flow_ratio": [ "0.94" diff --git a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1M 0.8 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1M 0.8 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1M 0.8 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1M 0.8 nozzle.json index e84ab8f469..d7860ae235 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1M 0.8 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1M 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PCTG PRIME @BBL A1M 0.8 nozzle", "inherits": "COEX PCTG PRIME @BBL X1C 0.8 nozzle", "from": "system", - "setting_id": "CXPCTX05", + "setting_id": "Tf3V4GVy9idlbJWz", "instantiation": "true", "filament_flow_ratio": [ "0.94" diff --git a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1M.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1M.json index 34370de8d3..c4f1bd6e88 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL A1M.json @@ -3,7 +3,7 @@ "name": "COEX PCTG PRIME @BBL A1M 0.4 nozzle", "inherits": "COEX PCTG PRIME @BBL X1C", "from": "system", - "setting_id": "CXPCTX04", + "setting_id": "6VkUjoEkwOlOuhXW", "instantiation": "true", "filament_flow_ratio": [ "0.94" diff --git a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL X1C 0.2 nozzle.json similarity index 93% rename from resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL X1C 0.2 nozzle.json index 55a4c8af53..a754286541 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PCTG PRIME @BBL X1C 0.2 nozzle", "inherits": "COEX PCTG PRIME @base", "from": "system", - "setting_id": "CXPCTX03", + "setting_id": "OvCsASrQYGNbptJL", "instantiation": "true", "filament_max_volumetric_speed": [ "6" diff --git a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL X1C 0.8 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL X1C 0.8 nozzle.json similarity index 95% rename from resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL X1C 0.8 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL X1C 0.8 nozzle.json index 90fd488cd8..e861ff5845 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PCTG PRIME @BBL X1C 0.8 nozzle", "inherits": "COEX PCTG PRIME @base", "from": "system", - "setting_id": "CXPCTX02", + "setting_id": "m7SNC69mm4Mq16z2", "instantiation": "true", "fan_max_speed": [ "40" diff --git a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL X1C.json similarity index 93% rename from resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL X1C.json index 2a3f276d56..a55e5a7ffd 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PCTG PRIME @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PCTG PRIME @BBL X1C.json @@ -3,7 +3,7 @@ "name": "COEX PCTG PRIME @BBL X1C", "inherits": "COEX PCTG PRIME @base", "from": "system", - "setting_id": "CXPCTX01", + "setting_id": "MGJHFaQHCW5nyY7g", "instantiation": "true", "filament_max_volumetric_speed": [ "14" diff --git a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1 0.2 nozzle.json similarity index 89% rename from resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1 0.2 nozzle.json index e284f3cb97..756913dc00 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PETG @BBL A1 0.2 nozzle", "inherits": "COEX PETG @base", "from": "system", - "setting_id": "CXPETX09", + "setting_id": "eW0lME1PpSiCQ50o", "instantiation": "true", "filament_flow_ratio": [ "0.94" diff --git a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1 0.8 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1 0.8 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1 0.8 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1 0.8 nozzle.json index 1053447fff..1022e84e8e 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1 0.8 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PETG @BBL A1 0.8 nozzle", "inherits": "COEX PETG @base", "from": "system", - "setting_id": "CXPETX08", + "setting_id": "b1N9FDhZ9LDZCXbr", "instantiation": "true", "fan_max_speed": [ "60" diff --git a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1.json similarity index 88% rename from resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1.json index ded2bf0454..3ff688a34f 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1.json @@ -3,7 +3,7 @@ "name": "COEX PETG @BBL A1", "inherits": "COEX PETG @base", "from": "system", - "setting_id": "CXPETX07", + "setting_id": "QdBlIRA64gjVhmdY", "instantiation": "true", "filament_flow_ratio": [ "0.94" diff --git a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1M 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1M 0.2 nozzle.json index c403e2d70e..a3c1395672 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1M 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PETG @BBL A1M 0.2 nozzle", "inherits": "COEX PETG @BBL X1C 0.2 nozzle", "from": "system", - "setting_id": "CXPETX06", + "setting_id": "wzg15HcFnr57D3WG", "instantiation": "true", "filament_flow_ratio": [ "0.94" diff --git a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1M 0.8 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1M 0.8 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1M 0.8 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1M 0.8 nozzle.json index 300c25172f..adf18f203d 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1M 0.8 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1M 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PETG @BBL A1M 0.8 nozzle", "inherits": "COEX PETG @BBL X1C 0.8 nozzle", "from": "system", - "setting_id": "CXPETX05", + "setting_id": "QybtmiPJpTywWVRY", "instantiation": "true", "filament_flow_ratio": [ "0.94" diff --git a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1M.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1M.json index 1b36cc42a3..f1f2305f34 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL A1M.json @@ -3,7 +3,7 @@ "name": "COEX PETG @BBL A1M 0.4 nozzle", "inherits": "COEX PETG @BBL X1C", "from": "system", - "setting_id": "CXPETX04", + "setting_id": "OVVZwYafB1y5Mo0H", "instantiation": "true", "filament_flow_ratio": [ "0.94" diff --git a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL X1C 0.2 nozzle.json similarity index 93% rename from resources/profiles/BBL/filament/COEX/COEX PETG @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL X1C 0.2 nozzle.json index ad9623ef99..d3a112550f 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PETG @BBL X1C 0.2 nozzle", "inherits": "COEX PETG @base", "from": "system", - "setting_id": "CXPETX03", + "setting_id": "okr5VvLy0gPTcU2m", "instantiation": "true", "filament_max_volumetric_speed": [ "6" diff --git a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL X1C 0.8 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL X1C 0.8 nozzle.json similarity index 95% rename from resources/profiles/BBL/filament/COEX/COEX PETG @BBL X1C 0.8 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL X1C 0.8 nozzle.json index ebc5c1f82c..36e1ed91c6 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PETG @BBL X1C 0.8 nozzle", "inherits": "COEX PETG @base", "from": "system", - "setting_id": "CXPETX02", + "setting_id": "scNT4RccECXf88MU", "instantiation": "true", "fan_max_speed": [ "40" diff --git a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL X1C.json similarity index 93% rename from resources/profiles/BBL/filament/COEX/COEX PETG @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL X1C.json index b06f93d281..0163ecd21e 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PETG @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PETG @BBL X1C.json @@ -3,7 +3,7 @@ "name": "COEX PETG @BBL X1C", "inherits": "COEX PETG @base", "from": "system", - "setting_id": "CXPETX01", + "setting_id": "sDI541ggJ5DoXcdP", "instantiation": "true", "filament_max_volumetric_speed": [ "14" diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL A1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX PLA @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL A1 0.2 nozzle.json index 95408fd0bd..7faacef1bf 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL A1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PLA @BBL A1 0.2 nozzle", "inherits": "COEX PLA @base", "from": "system", - "setting_id": "CXPLAX09", + "setting_id": "VDPt22q9NQHPLwep", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL A1.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX PLA @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL A1.json index 395ea8350b..8a266b1a1f 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL A1.json @@ -3,7 +3,7 @@ "name": "COEX PLA @BBL A1", "inherits": "COEX PLA @base", "from": "system", - "setting_id": "CXPLAX08", + "setting_id": "jFDQnqGZVHlRjjlK", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL A1M 0.2 nozzle.json similarity index 87% rename from resources/profiles/BBL/filament/COEX/COEX PLA @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL A1M 0.2 nozzle.json index 6fd31fe8e2..755cba92e0 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL A1M 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PLA @BBL A1M 0.2 nozzle", "inherits": "COEX PLA @BBL A1M", "from": "system", - "setting_id": "CXPLAX07", + "setting_id": "dbJukwYNClAE3Y4W", "instantiation": "true", "filament_max_volumetric_speed": [ "6" diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL A1M.json similarity index 94% rename from resources/profiles/BBL/filament/COEX/COEX PLA @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL A1M.json index 8853919a29..d888cbb20b 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL A1M.json @@ -3,7 +3,7 @@ "name": "COEX PLA @BBL A1M", "inherits": "COEX PLA @base", "from": "system", - "setting_id": "CXPLAX06", + "setting_id": "QkZVOGGnNC3U0A7m", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL P1P 0.2 nozzle.json similarity index 87% rename from resources/profiles/BBL/filament/COEX/COEX PLA @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL P1P 0.2 nozzle.json index 3b9362f347..5853e66179 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL P1P 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PLA @BBL P1P 0.2 nozzle", "inherits": "COEX PLA @BBL P1P", "from": "system", - "setting_id": "CXPLAX05", + "setting_id": "87nvDFQRevtSiubX", "instantiation": "true", "filament_max_volumetric_speed": [ "6" diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL P1P.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX PLA @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL P1P.json index c39c501104..7407f01112 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL P1P.json @@ -3,7 +3,7 @@ "name": "COEX PLA @BBL P1P", "inherits": "COEX PLA @base", "from": "system", - "setting_id": "CXPLAX04", + "setting_id": "Ja95cvzeSeqSAKsq", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL X1.json similarity index 88% rename from resources/profiles/BBL/filament/COEX/COEX PLA @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL X1.json index 2590b208c5..ded86a4938 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL X1.json @@ -3,7 +3,7 @@ "name": "COEX PLA @BBL X1", "inherits": "COEX PLA @base", "from": "system", - "setting_id": "CXPLAX03", + "setting_id": "5D7sxBEXD7eta7V3", "instantiation": "true", "slow_down_layer_time": [ "10" diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL X1C 0.2 nozzle.json similarity index 90% rename from resources/profiles/BBL/filament/COEX/COEX PLA @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL X1C 0.2 nozzle.json index eb0684a05d..7b36a15acd 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PLA @BBL X1C 0.2 nozzle", "inherits": "COEX PLA @BBL X1C", "from": "system", - "setting_id": "CXPLAX02", + "setting_id": "BvByjahhcY0Moihz", "instantiation": "true", "filament_max_volumetric_speed": [ "1.6" diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL X1C.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX PLA @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL X1C.json index e4fb5fcc4f..c6d08bdf3d 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA @BBL X1C.json @@ -3,7 +3,7 @@ "name": "COEX PLA @BBL X1C", "inherits": "COEX PLA @base", "from": "system", - "setting_id": "CXPLAX01", + "setting_id": "e4zp2O3cFAcbqoFi", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL A1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL A1 0.2 nozzle.json index 6028dcdd90..565f01f48c 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL A1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PLA PRIME @BBL A1 0.2 nozzle", "inherits": "COEX PLA PRIME @base", "from": "system", - "setting_id": "CXPLPX10", + "setting_id": "Vys3UqyWFT69wMH6", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL A1.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL A1.json index 8d18bccfd4..5c482f19fb 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL A1.json @@ -3,7 +3,7 @@ "name": "COEX PLA PRIME @BBL A1", "inherits": "COEX PLA PRIME @base", "from": "system", - "setting_id": "CXPLPX09", + "setting_id": "g1yJbSmJv4RDWLUa", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL A1M 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL A1M 0.2 nozzle.json index 940966a5b3..5383c52bf0 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL A1M 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PLA PRIME @BBL A1M 0.2 nozzle", "inherits": "COEX PLA PRIME @base", "from": "system", - "setting_id": "CXPLPX08", + "setting_id": "5mzTIa5FF81O5BDZ", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL A1M.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL A1M.json index e80f790fd9..81c5d63c2c 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL A1M.json @@ -3,7 +3,7 @@ "name": "COEX PLA PRIME @BBL A1M", "inherits": "COEX PLA PRIME @base", "from": "system", - "setting_id": "CXPLPX07", + "setting_id": "dhsmZHXKzMNn0FtL", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL P1P 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL P1P 0.2 nozzle.json index c027b287cd..87270136c6 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL P1P 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PLA PRIME @BBL P1P 0.2 nozzle", "inherits": "COEX PLA PRIME @base", "from": "system", - "setting_id": "CXPLPX06", + "setting_id": "z9CUoW9SUMr840v9", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL P1P.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL P1P.json index d0dd387bb1..5efa9671f2 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL P1P.json @@ -3,7 +3,7 @@ "name": "COEX PLA PRIME @BBL P1P", "inherits": "COEX PLA PRIME @base", "from": "system", - "setting_id": "CXPLPX05", + "setting_id": "Y0N972snI2iVBaMY", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL X1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL X1 0.2 nozzle.json index 62831e8052..ba76a4fd64 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL X1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PLA PRIME @BBL X1 0.2 nozzle", "inherits": "COEX PLA PRIME @base", "from": "system", - "setting_id": "CXPLPX04", + "setting_id": "msqmewkUzhFUnXCt", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL X1.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL X1.json index 028ff4b670..e396cea21e 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL X1.json @@ -3,7 +3,7 @@ "name": "COEX PLA PRIME @BBL X1", "inherits": "COEX PLA PRIME @base", "from": "system", - "setting_id": "CXPLPX03", + "setting_id": "KFI0vPD4fV1IXcM7", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL X1C 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL X1C 0.2 nozzle.json index 7974b443de..5055ec3346 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PLA PRIME @BBL X1C 0.2 nozzle", "inherits": "COEX PLA PRIME @base", "from": "system", - "setting_id": "CXPLPX02", + "setting_id": "IiYPW1KPNf3ZJJrJ", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL X1C.json similarity index 94% rename from resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL X1C.json index 331caa6f06..baf0e668ca 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA PRIME @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA PRIME @BBL X1C.json @@ -3,7 +3,7 @@ "name": "COEX PLA PRIME @BBL X1C", "inherits": "COEX PLA PRIME @base", "from": "system", - "setting_id": "CXPLPX01", + "setting_id": "VOBMEynoZVDn7WPc", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL A1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL A1 0.2 nozzle.json index 21da9b46b6..1f5af9e8e5 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL A1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PLA+Silk @BBL A1 0.2 nozzle", "inherits": "COEX PLA+Silk @base", "from": "system", - "setting_id": "CXPLSX10", + "setting_id": "2UyZUycIPMP0PUup", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL A1.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL A1.json index e609d02f66..b762ca9617 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL A1.json @@ -3,7 +3,7 @@ "name": "COEX PLA+Silk @BBL A1", "inherits": "COEX PLA+Silk @base", "from": "system", - "setting_id": "CXPLSX09", + "setting_id": "XxZ5veyuN2CgIJ5x", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL A1M 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL A1M 0.2 nozzle.json index 95f8fb9e59..348d2a305e 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL A1M 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PLA+Silk @BBL A1M 0.2 nozzle", "inherits": "COEX PLA+Silk @base", "from": "system", - "setting_id": "CXPLSX08", + "setting_id": "6Vc8BkXxDP7T8Coo", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL A1M.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL A1M.json index f2ce3cdce0..8589ba64b2 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL A1M.json @@ -3,7 +3,7 @@ "name": "COEX PLA+Silk @BBL A1M", "inherits": "COEX PLA+Silk @base", "from": "system", - "setting_id": "CXPLSX07", + "setting_id": "eu0boRMOVOgQrl3Y", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL P1P 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL P1P 0.2 nozzle.json index 902323e79e..e948f0bb05 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL P1P 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PLA+Silk @BBL P1P 0.2 nozzle", "inherits": "COEX PLA+Silk @base", "from": "system", - "setting_id": "CXPLSX06", + "setting_id": "OUxQCADBha44cBsA", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL P1P.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL P1P.json index 0d390cb258..99759f5ddd 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL P1P.json @@ -3,7 +3,7 @@ "name": "COEX PLA+Silk @BBL P1P", "inherits": "COEX PLA+Silk @base", "from": "system", - "setting_id": "CXPLSX05", + "setting_id": "hk0y7xqoLTA3tNUo", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL X1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL X1 0.2 nozzle.json index a2fd486eca..7f61bf7be2 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL X1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PLA+Silk @BBL X1 0.2 nozzle", "inherits": "COEX PLA+Silk @base", "from": "system", - "setting_id": "CXPLSX04", + "setting_id": "ns9Gncke9yUgUmex", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL X1.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL X1.json index 7048da3321..23d856488d 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL X1.json @@ -3,7 +3,7 @@ "name": "COEX PLA+Silk @BBL X1", "inherits": "COEX PLA+Silk @base", "from": "system", - "setting_id": "CXPLSX03", + "setting_id": "0QI62GCE2YGCb7rI", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL X1C 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL X1C 0.2 nozzle.json index 43e1c0f75a..1fe80d582d 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX PLA+Silk @BBL X1C 0.2 nozzle", "inherits": "COEX PLA+Silk @base", "from": "system", - "setting_id": "CXPLSX02", + "setting_id": "H5u3IWbfcVMSmXoY", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL X1C.json similarity index 94% rename from resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL X1C.json index 581970defd..85cc1e8c76 100644 --- a/resources/profiles/BBL/filament/COEX/COEX PLA+Silk @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX PLA+Silk @BBL X1C.json @@ -3,7 +3,7 @@ "name": "COEX PLA+Silk @BBL X1C", "inherits": "COEX PLA+Silk @base", "from": "system", - "setting_id": "CXPLSX01", + "setting_id": "8nvO7iSj7Kr21VYS", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 30D @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 30D @BBL A1.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX TPE 30D @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 30D @BBL A1.json index eaa218b86f..57792d2139 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 30D @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 30D @BBL A1.json @@ -3,7 +3,7 @@ "name": "COEX TPE 30D @BBL A1", "inherits": "COEX TPE 30D @base", "from": "system", - "setting_id": "CX30DX09", + "setting_id": "oSB30vX697zFBQus", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 30D @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 30D @BBL A1M.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX TPE 30D @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 30D @BBL A1M.json index cebfe28dea..d00a90d06a 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 30D @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 30D @BBL A1M.json @@ -3,7 +3,7 @@ "name": "COEX TPE 30D @BBL A1M", "inherits": "COEX TPE 30D @base", "from": "system", - "setting_id": "CX30DX07", + "setting_id": "DAkMitwruFDPSbRg", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 30D @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 30D @BBL P1P.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX TPE 30D @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 30D @BBL P1P.json index 321ff2b715..f7ee71643f 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 30D @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 30D @BBL P1P.json @@ -3,7 +3,7 @@ "name": "COEX TPE 30D @BBL P1P", "inherits": "COEX TPE 30D @base", "from": "system", - "setting_id": "CX30DX05", + "setting_id": "fM4NLTU5iPByCRuc", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 30D @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 30D @BBL X1.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX TPE 30D @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 30D @BBL X1.json index f9a4e3efb8..75db97ea70 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 30D @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 30D @BBL X1.json @@ -3,7 +3,7 @@ "name": "COEX TPE 30D @BBL X1", "inherits": "COEX TPE 30D @base", "from": "system", - "setting_id": "CX30DX03", + "setting_id": "sAU5cu8EPBihEP3m", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 30D @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 30D @BBL X1C.json similarity index 94% rename from resources/profiles/BBL/filament/COEX/COEX TPE 30D @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 30D @BBL X1C.json index 562df95753..d2dc636f7d 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 30D @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 30D @BBL X1C.json @@ -3,7 +3,7 @@ "name": "COEX TPE 30D @BBL X1C", "inherits": "COEX TPE 30D @base", "from": "system", - "setting_id": "CX30DX01", + "setting_id": "YD3gdeJlVLobA19c", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL A1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL A1 0.2 nozzle.json index c2a4b814df..17f180ac4c 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL A1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX TPE 40D @BBL A1 0.2 nozzle", "inherits": "COEX TPE 40D @base", "from": "system", - "setting_id": "CX40DX10", + "setting_id": "5kmtoD76pdg0QjC6", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL A1.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL A1.json index 63bb69cfe1..63351b26f1 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL A1.json @@ -3,7 +3,7 @@ "name": "COEX TPE 40D @BBL A1", "inherits": "COEX TPE 40D @base", "from": "system", - "setting_id": "CX40DX09", + "setting_id": "vIBFZpAkGHevYJ4e", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL A1M 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL A1M 0.2 nozzle.json index 5a822a1dba..36224d8ed4 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL A1M 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX TPE 40D @BBL A1M 0.2 nozzle", "inherits": "COEX TPE 40D @base", "from": "system", - "setting_id": "CX40DX08", + "setting_id": "kcfjEjxaRqsxGAQW", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL A1M.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL A1M.json index 1948af44c4..cadb053df3 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL A1M.json @@ -3,7 +3,7 @@ "name": "COEX TPE 40D @BBL A1M", "inherits": "COEX TPE 40D @base", "from": "system", - "setting_id": "CX40DX07", + "setting_id": "IzNE1SAjAwkoqxIE", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL P1P 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL P1P 0.2 nozzle.json index 9d67b69e19..36defa8e23 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL P1P 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX TPE 40D @BBL P1P 0.2 nozzle", "inherits": "COEX TPE 40D @base", "from": "system", - "setting_id": "CX40DX06", + "setting_id": "oOlkk48h49OuvTZn", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL P1P.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL P1P.json index 81a519bfc8..31a5a2fe95 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL P1P.json @@ -3,7 +3,7 @@ "name": "COEX TPE 40D @BBL P1P", "inherits": "COEX TPE 40D @base", "from": "system", - "setting_id": "CX40DX05", + "setting_id": "218zr889pSXjWLAP", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL X1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL X1 0.2 nozzle.json index 6bcf9675e6..c9ee50ed81 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL X1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX TPE 40D @BBL X1 0.2 nozzle", "inherits": "COEX TPE 40D @base", "from": "system", - "setting_id": "CX40DX04", + "setting_id": "jbVhungUNiUfz8XR", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL X1.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL X1.json index 158229e332..4b78b22348 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL X1.json @@ -3,7 +3,7 @@ "name": "COEX TPE 40D @BBL X1", "inherits": "COEX TPE 40D @base", "from": "system", - "setting_id": "CX40DX03", + "setting_id": "iivGVcN67LySNauF", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL X1C 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL X1C 0.2 nozzle.json index 4e1d4b8264..2ba81969e2 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX TPE 40D @BBL X1C 0.2 nozzle", "inherits": "COEX TPE 40D @base", "from": "system", - "setting_id": "CX40DX02", + "setting_id": "khZfUC4r9MBSv1DR", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL X1C.json similarity index 94% rename from resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL X1C.json index 5ab4e9ea18..e24c6481b1 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 40D @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 40D @BBL X1C.json @@ -3,7 +3,7 @@ "name": "COEX TPE 40D @BBL X1C", "inherits": "COEX TPE 40D @base", "from": "system", - "setting_id": "CX40DX01", + "setting_id": "L9Dosu0C19pn86o4", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL A1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL A1 0.2 nozzle.json index 8812114a16..65ae57aefc 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL A1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX TPE 60D @BBL A1 0.2 nozzle", "inherits": "COEX TPE 60D @base", "from": "system", - "setting_id": "CX60DX10", + "setting_id": "fZGjPDEF9pAAPT3b", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL A1.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL A1.json index e3653c8a13..9d94bd2a90 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL A1.json @@ -3,7 +3,7 @@ "name": "COEX TPE 60D @BBL A1", "inherits": "COEX TPE 60D @base", "from": "system", - "setting_id": "CX60DX09", + "setting_id": "HQvwpstkDqMUiUv4", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL A1M 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL A1M 0.2 nozzle.json index 90c1fec615..bd27b9eb5e 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL A1M 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX TPE 60D @BBL A1M 0.2 nozzle", "inherits": "COEX TPE 60D @base", "from": "system", - "setting_id": "CX60DX08", + "setting_id": "PXeGlTps8xPbMGyl", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL A1M.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL A1M.json index ca90c77cad..9b63d7fcaa 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL A1M.json @@ -3,7 +3,7 @@ "name": "COEX TPE 60D @BBL A1M", "inherits": "COEX TPE 60D @base", "from": "system", - "setting_id": "CX60DX07", + "setting_id": "YjSBLf6gS4qED472", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL P1P 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL P1P 0.2 nozzle.json index 8f6c0a8d69..35540825cf 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL P1P 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX TPE 60D @BBL P1P 0.2 nozzle", "inherits": "COEX TPE 60D @base", "from": "system", - "setting_id": "CX60DX06", + "setting_id": "KCOov85CN9IGBY9i", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL P1P.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL P1P.json index 745f10e97a..e89acac314 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL P1P.json @@ -3,7 +3,7 @@ "name": "COEX TPE 60D @BBL P1P", "inherits": "COEX TPE 60D @base", "from": "system", - "setting_id": "CX60DX05", + "setting_id": "Sy5TZ37aHkRJLp0Q", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL X1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL X1 0.2 nozzle.json index 94f9002881..6d1f6a5ea6 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL X1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX TPE 60D @BBL X1 0.2 nozzle", "inherits": "COEX TPE 60D @base", "from": "system", - "setting_id": "CX60DX04", + "setting_id": "YoM9DLlAdYgEk4PZ", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL X1.json similarity index 91% rename from resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL X1.json index eb7afe6bfa..f39c9d3de4 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL X1.json @@ -3,7 +3,7 @@ "name": "COEX TPE 60D @BBL X1", "inherits": "COEX TPE 60D @base", "from": "system", - "setting_id": "CX60DX03", + "setting_id": "9eXbTxjk34q8jj3y", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL X1C 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL X1C 0.2 nozzle.json index 604792b29c..1882d80114 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "COEX TPE 60D @BBL X1C 0.2 nozzle", "inherits": "COEX TPE 60D @base", "from": "system", - "setting_id": "CX60DX02", + "setting_id": "WUhtYzsVYMxdcNIO", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL X1C.json similarity index 94% rename from resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL X1C.json index 99b2b9a765..6589562d7a 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPE 60D @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPE 60D @BBL X1C.json @@ -3,7 +3,7 @@ "name": "COEX TPE 60D @BBL X1C", "inherits": "COEX TPE 60D @base", "from": "system", - "setting_id": "CX60DX01", + "setting_id": "YjRgNYgjXV16sqZC", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/COEX/COEX TPU 60A @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPU 60A @BBL X1C.json similarity index 94% rename from resources/profiles/BBL/filament/COEX/COEX TPU 60A @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPU 60A @BBL X1C.json index 19fa44de17..d5d63ffbcf 100644 --- a/resources/profiles/BBL/filament/COEX/COEX TPU 60A @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/BBL/COEX TPU 60A @BBL X1C.json @@ -3,7 +3,7 @@ "name": "COEX TPU 60A @BBL X1C", "inherits": "COEX TPU 60A @base", "from": "system", - "setting_id": "CX60AX01", + "setting_id": "Kgwghfh0bJD5r1cK", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/BBL/FusRock ABS-GF @BBL A1.json similarity index 93% rename from resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/FusRock/BBL/FusRock ABS-GF @BBL A1.json index 2fac503182..c283b9aafb 100644 --- a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/BBL/FusRock ABS-GF @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "FusRock ABS-GF @BBL A1", - "inherits": "FusRock ABS-GF @base", + "inherits": "FusRock ABS-GF @BBL base", "from": "system", - "setting_id": "GFSR00_01", + "setting_id": "AWilJGD4uphvinK0", "instantiation": "true", "filament_notes": "//EN\n1.Be sure to read it carefully before using (https://wiki.fusrock.com).\n2.When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials(https://wiki.fusrock.com).\\n3.Thank you for choosing FusRock. \n//CN\n1.使用前请务必仔细阅读(https://wiki.fusrock.com)。\n2.打印该耗材时,可能会出现喷嘴堵塞、拉丝、翘边以及层间附着力不足等问题。为了获得更好的打印效果,请参考此维基页面:高温 / 工程材料打印技巧(https://wiki.fusrock.com)。\n3.感谢您选择FusRock。", "filament_long_retractions_when_cut": [ diff --git a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL H2D.json b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/BBL/FusRock ABS-GF @BBL H2D.json similarity index 95% rename from resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL H2D.json rename to resources/profiles/OrcaFilamentLibrary/filament/FusRock/BBL/FusRock ABS-GF @BBL H2D.json index be3bdb2c40..e3bf5dfd28 100644 --- a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL H2D.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/BBL/FusRock ABS-GF @BBL H2D.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "FusRock ABS-GF @BBL H2D", - "inherits": "FusRock ABS-GF @base", + "inherits": "FusRock ABS-GF @BBL base", "from": "system", - "setting_id": "GFSR00_03", + "setting_id": "N3PSDaJIkJdhGssG", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/BBL/FusRock ABS-GF @BBL P1P.json similarity index 81% rename from resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/FusRock/BBL/FusRock ABS-GF @BBL P1P.json index a15ebcb69c..2480c3c7be 100644 --- a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/BBL/FusRock ABS-GF @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "FusRock ABS-GF @BBL P1P", - "inherits": "FusRock ABS-GF @base", + "inherits": "FusRock ABS-GF @BBL base", "from": "system", - "setting_id": "GFSR00_04", + "setting_id": "mhwJGDVOG3AYawSy", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/BBL/FusRock ABS-GF @BBL X1C.json similarity index 89% rename from resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/FusRock/BBL/FusRock ABS-GF @BBL X1C.json index 40d26ba410..0dc4a90e65 100644 --- a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/BBL/FusRock ABS-GF @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "FusRock ABS-GF @BBL X1C", - "inherits": "FusRock ABS-GF @base", + "inherits": "FusRock ABS-GF @BBL base", "from": "system", - "setting_id": "GFSR00_05", + "setting_id": "Gb22zRgoijThX2e8", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FusRock/BBL/FusRock ABS-GF @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/BBL/FusRock ABS-GF @BBL base.json new file mode 100644 index 0000000000..fda844dce3 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/BBL/FusRock ABS-GF @BBL base.json @@ -0,0 +1,19 @@ +{ + "type": "filament", + "name": "FusRock ABS-GF @BBL base", + "inherits": "FusRock ABS-GF @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_start_gcode": [ + "; Filament gcode\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL A1 0.2 nozzle.json similarity index 88% rename from resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL A1 0.2 nozzle.json index 7dbd2a0536..4e7717f3bc 100644 --- a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Numakers PLA+ @BBL A1 0.2 nozzle", - "inherits": "Numakers PLA+ @base", + "inherits": "Numakers PLA+ @BBL base", "from": "system", - "setting_id": "GFNMKS04_00", + "setting_id": "Ii1WcXMeEaYffOlt", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL A1.json similarity index 88% rename from resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL A1.json index eeda187bdb..c5d9d9c5bb 100644 --- a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Numakers PLA+ @BBL A1", - "inherits": "Numakers PLA+ @base", + "inherits": "Numakers PLA+ @BBL base", "from": "system", - "setting_id": "GFNMKS04", + "setting_id": "qR2dbJvfmbQBJDzR", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL A1M 0.2 nozzle.json similarity index 89% rename from resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL A1M 0.2 nozzle.json index 072a706142..5a9fcb5ad7 100644 --- a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Numakers PLA+ @BBL A1M 0.2 nozzle", - "inherits": "Numakers PLA+ @base", + "inherits": "Numakers PLA+ @BBL base", "from": "system", - "setting_id": "GFNMKS05_00", + "setting_id": "zvDRrswBnEy5zN80", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL A1M.json similarity index 88% rename from resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL A1M.json index 3e67330378..8b9acfc457 100644 --- a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Numakers PLA+ @BBL A1M", - "inherits": "Numakers PLA+ @base", + "inherits": "Numakers PLA+ @BBL base", "from": "system", - "setting_id": "GFNMKS05", + "setting_id": "mvL3CcSQzWhHmcug", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL P1P 0.2 nozzle.json similarity index 95% rename from resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL P1P 0.2 nozzle.json index d5582669b0..f2c1c78883 100644 --- a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Numakers PLA+ @BBL P1P 0.2 nozzle", - "inherits": "Numakers PLA+ @base", + "inherits": "Numakers PLA+ @BBL base", "from": "system", - "setting_id": "GFNMKS03_00", + "setting_id": "bm0Cd4BbrflodAnD", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL P1P.json similarity index 95% rename from resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL P1P.json index 42cddbeed8..a9e5da69b6 100644 --- a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Numakers PLA+ @BBL P1P", - "inherits": "Numakers PLA+ @base", + "inherits": "Numakers PLA+ @BBL base", "from": "system", - "setting_id": "GFNMKS03", + "setting_id": "E0GTBXYDb5d2jRH4", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL X1.json similarity index 95% rename from resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL X1.json index de788faca1..30c1bb19cf 100644 --- a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Numakers PLA+ @BBL X1", - "inherits": "Numakers PLA+ @base", + "inherits": "Numakers PLA+ @BBL base", "from": "system", - "setting_id": "GFNMKS02", + "setting_id": "sY9tzmFIrFQKJyFw", "instantiation": "true", "filament_deretraction_speed": [ "nil", diff --git a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL X1C 0.2 nozzle.json similarity index 96% rename from resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL X1C 0.2 nozzle.json index 01d6929053..0b00b5fd71 100644 --- a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Numakers PLA+ @BBL X1C 0.2 nozzle", - "inherits": "Numakers PLA+ @base", + "inherits": "Numakers PLA+ @BBL base", "from": "system", - "setting_id": "GFNMKS00_00", + "setting_id": "5pXee8UkJCi9ptVA", "instantiation": "true", "filament_max_volumetric_speed": [ "2", diff --git a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL X1C.json similarity index 96% rename from resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL X1C.json index d368e739b9..6aa8b0b279 100644 --- a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Numakers PLA+ @BBL X1C", - "inherits": "Numakers PLA+ @base", + "inherits": "Numakers PLA+ @BBL base", "from": "system", - "setting_id": "GFNMKS00", + "setting_id": "CPPonepBAXeRtRIN", "instantiation": "true", "filament_deretraction_speed": [ "nil", diff --git a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL base.json similarity index 51% rename from resources/profiles/BBL/filament/Numakers/Numakers PLA+ @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL base.json index b77157064b..0c42dd97d9 100644 --- a/resources/profiles/BBL/filament/Numakers/Numakers PLA+ @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/BBL/Numakers PLA+ @BBL base.json @@ -1,65 +1,65 @@ { "type": "filament", - "name": "Numakers PLA+ @base", - "inherits": "fdm_filament_pla", + "name": "Numakers PLA+ @BBL base", + "inherits": "Numakers PLA+ @base", "from": "system", - "filament_id": "OFqGRZyH", "instantiation": "false", - "filament_cost": [ - "20.99" + "close_additional_fan_first_x_layers": [ + "3" ], - "filament_density": [ - "1.24" - ], - "filament_flow_ratio": [ - "0.99" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_vendor": [ - "Numakers" - ], - "nozzle_temperature": [ - "225" - ], - "nozzle_temperature_initial_layer": [ - "225" - ], - "nozzle_temperature_range_high": [ - "255" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "filament_scarf_seam_type": [ - "none" - ], - "filament_scarf_height": [ - "10%" - ], - "filament_scarf_gap": [ - "0%" - ], - "filament_scarf_length": [ - "10" + "filament_adhesiveness_category": [ + "100" ], "filament_change_length": [ "5" ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "18" + ], "filament_prime_volume": [ "30" ], - "temperature_vitrification": [ - "55" - ], "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}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" ] } diff --git a/resources/profiles/BBL/filament/Overture/Overture ASA @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture ASA @BBL X1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture ASA @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture ASA @BBL X1 0.2 nozzle.json index 92a040235f..998c4c2958 100644 --- a/resources/profiles/BBL/filament/Overture/Overture ASA @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture ASA @BBL X1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ASA @BBL X1 0.2 nozzle", "inherits": "Overture ASA @base", "from": "system", - "setting_id": "GFOT009_07", + "setting_id": "jh7mvQEqtBbMHbbR", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture ASA @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture ASA @BBL X1.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture ASA @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture ASA @BBL X1.json index 7a376a21dd..06d940632c 100644 --- a/resources/profiles/BBL/filament/Overture/Overture ASA @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture ASA @BBL X1.json @@ -3,7 +3,7 @@ "name": "Overture ASA @BBL X1", "inherits": "Overture ASA @base", "from": "system", - "setting_id": "GFOT009_06", + "setting_id": "cRfT6znwV5A6Shfo", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture ASA @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture ASA @BBL X1C 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture ASA @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture ASA @BBL X1C 0.2 nozzle.json index 7fcb646a6f..04ceab67a6 100644 --- a/resources/profiles/BBL/filament/Overture/Overture ASA @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture ASA @BBL X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ASA @BBL X1C 0.2 nozzle", "inherits": "Overture ASA @base", "from": "system", - "setting_id": "GFOT009_09", + "setting_id": "AtFqTBLGJVqukhdU", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture ASA @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture ASA @BBL X1C.json similarity index 94% rename from resources/profiles/BBL/filament/Overture/Overture ASA @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture ASA @BBL X1C.json index 721caa685f..9f080e5b90 100644 --- a/resources/profiles/BBL/filament/Overture/Overture ASA @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture ASA @BBL X1C.json @@ -3,7 +3,7 @@ "name": "Overture ASA @BBL X1C", "inherits": "Overture ASA @base", "from": "system", - "setting_id": "GFOT009_08", + "setting_id": "xGrk4eFUHPepuKY3", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL A1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL A1 0.2 nozzle.json index ae882af557..c63f9b6992 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL A1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Air PLA @BBL A1 0.2 nozzle", "inherits": "Overture Air PLA @base", "from": "system", - "setting_id": "GFOT006_01", + "setting_id": "hd5p80tAvLBtbLOz", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL A1.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL A1.json index 7f14c21871..ce543127f7 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL A1.json @@ -3,7 +3,7 @@ "name": "Overture Air PLA @BBL A1", "inherits": "Overture Air PLA @base", "from": "system", - "setting_id": "GFOT006_00", + "setting_id": "rC3OqieoVV0VVT49", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL A1M 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL A1M 0.2 nozzle.json index f0861d37c3..ff348d47d3 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL A1M 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Air PLA @BBL A1M 0.2 nozzle", "inherits": "Overture Air PLA @base", "from": "system", - "setting_id": "GFOT006_03", + "setting_id": "nehgqHdfo3H5PRWD", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL A1M.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL A1M.json index 51649a3185..30d73664d4 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL A1M.json @@ -3,7 +3,7 @@ "name": "Overture Air PLA @BBL A1M", "inherits": "Overture Air PLA @base", "from": "system", - "setting_id": "GFOT006_02", + "setting_id": "gek0LVJsLSpW2ouh", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL P1P 0.2 nozzle.json similarity index 90% rename from resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL P1P 0.2 nozzle.json index a0d9068fe4..923ab78071 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL P1P 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Air PLA @BBL P1P 0.2 nozzle", "inherits": "Overture Air PLA @base", "from": "system", - "setting_id": "GFOT006_05", + "setting_id": "epbY8jIIyn2noQd9", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL P1P.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL P1P.json index 6780f2121a..f216f29bbf 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL P1P.json @@ -3,7 +3,7 @@ "name": "Overture Air PLA @BBL P1P", "inherits": "Overture Air PLA @base", "from": "system", - "setting_id": "GFOT006_04", + "setting_id": "aaOFmzBat4Zx6HtZ", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL X1 0.2 nozzle.json similarity index 90% rename from resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL X1 0.2 nozzle.json index ba350275a1..b13bb033d6 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL X1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Air PLA @BBL X1 0.2 nozzle", "inherits": "Overture Air PLA @base", "from": "system", - "setting_id": "GFOT006_07", + "setting_id": "cUFI1juBlncOcQf1", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL X1.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL X1.json index bd9ecff79b..ca8b4304bc 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL X1.json @@ -3,7 +3,7 @@ "name": "Overture Air PLA @BBL X1", "inherits": "Overture Air PLA @base", "from": "system", - "setting_id": "GFOT006_06", + "setting_id": "nYva3KRuxYikRQic", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL X1C 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL X1C 0.2 nozzle.json index 85b85b9d4a..afa578c2f3 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Air PLA @BBL X1C 0.2 nozzle", "inherits": "Overture Air PLA @base", "from": "system", - "setting_id": "GFOT006_09", + "setting_id": "LQ99qVFxsjYsXJlK", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL X1C.json similarity index 94% rename from resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL X1C.json index f499cbc99f..66c97952f8 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Air PLA @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Air PLA @BBL X1C.json @@ -3,7 +3,7 @@ "name": "Overture Air PLA @BBL X1C", "inherits": "Overture Air PLA @base", "from": "system", - "setting_id": "GFOT006_08", + "setting_id": "t9G4iW1zQGXDVa1j", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL A1 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL A1 0.2 nozzle.json index ed140c5597..cbd95782ae 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL A1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Easy PLA @BBL A1 0.2 nozzle", "inherits": "Overture Easy PLA @base", "from": "system", - "setting_id": "GFOT003_01", + "setting_id": "GyvGTwqYkGYjEFJk", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL A1.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL A1.json index ac2df417ca..84bc7f06f5 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL A1.json @@ -3,7 +3,7 @@ "name": "Overture Easy PLA @BBL A1", "inherits": "Overture Easy PLA @base", "from": "system", - "setting_id": "GFOT003_00", + "setting_id": "eBLeXUH3S3XbITJe", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL A1M 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL A1M 0.2 nozzle.json index 168d69a765..98b5074879 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL A1M 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Easy PLA @BBL A1M 0.2 nozzle", "inherits": "Overture Easy PLA @base", "from": "system", - "setting_id": "GFOT003_03", + "setting_id": "OVU5pNwnZzjfGYmA", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL A1M.json similarity index 93% rename from resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL A1M.json index 5636c618e2..3ddca5f725 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL A1M.json @@ -3,7 +3,7 @@ "name": "Overture Easy PLA @BBL A1M", "inherits": "Overture Easy PLA @base", "from": "system", - "setting_id": "GFOT003_02", + "setting_id": "4tkz4o4Gy9Rg9pDn", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL P1P 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL P1P 0.2 nozzle.json index 2cfe573d05..1b0f98d600 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL P1P 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Easy PLA @BBL P1P 0.2 nozzle", "inherits": "Overture Easy PLA @base", "from": "system", - "setting_id": "GFOT003_05", + "setting_id": "7NxD1OVmlxvWkmMF", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL P1P.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL P1P.json index 6f40c9c10a..1c3deabdb2 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL P1P.json @@ -3,7 +3,7 @@ "name": "Overture Easy PLA @BBL P1P", "inherits": "Overture Easy PLA @base", "from": "system", - "setting_id": "GFOT003_04", + "setting_id": "f0DPSVoUn0Q4sWDh", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL X1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL X1 0.2 nozzle.json index 5b21800908..affea525be 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL X1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Easy PLA @BBL X1 0.2 nozzle", "inherits": "Overture Easy PLA @base", "from": "system", - "setting_id": "GFOT003_07", + "setting_id": "YSplJrX00oFk88io", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL X1.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL X1.json index bec755226a..026a114216 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL X1.json @@ -3,7 +3,7 @@ "name": "Overture Easy PLA @BBL X1", "inherits": "Overture Easy PLA @base", "from": "system", - "setting_id": "GFOT003_06", + "setting_id": "lzlcNvejwGBbieeC", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL X1C 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL X1C 0.2 nozzle.json index 75c0f762c1..9582e8f2b1 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Easy PLA @BBL X1C 0.2 nozzle", "inherits": "Overture Easy PLA @base", "from": "system", - "setting_id": "GFOT003_09", + "setting_id": "RSBIHAgBtOG3hB9J", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL X1C.json similarity index 94% rename from resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL X1C.json index a7e163b13d..90297c1aee 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Easy PLA @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Easy PLA @BBL X1C.json @@ -3,7 +3,7 @@ "name": "Overture Easy PLA @BBL X1C", "inherits": "Overture Easy PLA @base", "from": "system", - "setting_id": "GFOT003_08", + "setting_id": "FNdjKfYe8qGoyL01", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL A1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL A1 0.2 nozzle.json index 4ef6fd92eb..a0c643d5a8 100644 --- a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Overture PLA Pro @BBL A1 0.2 nozzle", - "inherits": "Overture PLA Pro @base", + "inherits": "Overture PLA Pro @BBL base", "from": "system", - "setting_id": "GFOT001_01", + "setting_id": "CNG8j1OyXdsHgayH", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL A1.json similarity index 83% rename from resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL A1.json index 0ba3ff4f77..e35ad0464c 100644 --- a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Overture PLA Pro @BBL A1", - "inherits": "Overture PLA Pro @base", + "inherits": "Overture PLA Pro @BBL base", "from": "system", - "setting_id": "GFOT001_00", + "setting_id": "f1psVRwfXnf2RBYX", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL A1M 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL A1M 0.2 nozzle.json index a96050f3fe..acad992f0e 100644 --- a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Overture PLA Pro @BBL A1M 0.2 nozzle", - "inherits": "Overture PLA Pro @base", + "inherits": "Overture PLA Pro @BBL base", "from": "system", - "setting_id": "GFOT001_03", + "setting_id": "Czjg8dECgTCk9rmy", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL A1M.json similarity index 84% rename from resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL A1M.json index ba717d8b4b..551a2f34f9 100644 --- a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Overture PLA Pro @BBL A1M", - "inherits": "Overture PLA Pro @base", + "inherits": "Overture PLA Pro @BBL base", "from": "system", - "setting_id": "GFOT001_02", + "setting_id": "awqS4tjR4dYkSEkt", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL P1P 0.2 nozzle.json similarity index 80% rename from resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL P1P 0.2 nozzle.json index d1409ad106..f5f7414508 100644 --- a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Overture PLA Pro @BBL P1P 0.2 nozzle", - "inherits": "Overture PLA Pro @base", + "inherits": "Overture PLA Pro @BBL base", "from": "system", - "setting_id": "GFOT001_05", + "setting_id": "cj0T92bD6kKlQCOi", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL P1P.json similarity index 82% rename from resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL P1P.json index a4074f45de..70f64ce4ba 100644 --- a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Overture PLA Pro @BBL P1P", - "inherits": "Overture PLA Pro @base", + "inherits": "Overture PLA Pro @BBL base", "from": "system", - "setting_id": "GFOT001_04", + "setting_id": "dolDErUUhjBKdxrv", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL X1 0.2 nozzle.json similarity index 80% rename from resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL X1 0.2 nozzle.json index 59cf0ab335..338c4f32ae 100644 --- a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Overture PLA Pro @BBL X1 0.2 nozzle", - "inherits": "Overture PLA Pro @base", + "inherits": "Overture PLA Pro @BBL base", "from": "system", - "setting_id": "GFOT001_07", + "setting_id": "J2HhpnKJq31D1dbL", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL X1.json similarity index 82% rename from resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL X1.json index fc6d7800c7..a6afdb2af4 100644 --- a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Overture PLA Pro @BBL X1", - "inherits": "Overture PLA Pro @base", + "inherits": "Overture PLA Pro @BBL base", "from": "system", - "setting_id": "GFOT001_06", + "setting_id": "kcqyWA5VYsx7sCbu", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL X1C 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL X1C 0.2 nozzle.json index 82399a8d10..20f757c895 100644 --- a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Overture PLA Pro @BBL X1C 0.2 nozzle", - "inherits": "Overture PLA Pro @base", + "inherits": "Overture PLA Pro @BBL base", "from": "system", - "setting_id": "GFOT001_09", + "setting_id": "pVINOtBlNRnosjC1", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL X1C.json similarity index 88% rename from resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL X1C.json index f9248c24c2..1f2ddcca38 100644 --- a/resources/profiles/BBL/filament/Overture/Overture PLA Pro @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Overture PLA Pro @BBL X1C", - "inherits": "Overture PLA Pro @base", + "inherits": "Overture PLA Pro @BBL base", "from": "system", - "setting_id": "GFOT001_08", + "setting_id": "yJ0rLSZDqfrxPimR", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL base.json new file mode 100644 index 0000000000..095c74ea7b --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture PLA Pro @BBL base.json @@ -0,0 +1,56 @@ +{ + "type": "filament", + "name": "Overture PLA Pro @BBL base", + "inherits": "Overture PLA Pro @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL A1 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL A1 0.2 nozzle.json index dda00766d7..9a9604bb55 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL A1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Rock PLA @BBL A1 0.2 nozzle", "inherits": "Overture Rock PLA @base", "from": "system", - "setting_id": "GFOT004_01", + "setting_id": "E0qnin9rxon6Jyq7", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL A1.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL A1.json index f7f71c6f6e..1027e13de5 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL A1.json @@ -3,7 +3,7 @@ "name": "Overture Rock PLA @BBL A1", "inherits": "Overture Rock PLA @base", "from": "system", - "setting_id": "GFOT004_00", + "setting_id": "PQ9XuAMnKD9y3vgp", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL A1M 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL A1M 0.2 nozzle.json index 070f15b76d..bee6747184 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL A1M 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Rock PLA @BBL A1M 0.2 nozzle", "inherits": "Overture Rock PLA @base", "from": "system", - "setting_id": "GFOT004_03", + "setting_id": "q3FXD5WrKqNhaLGu", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL A1M.json similarity index 93% rename from resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL A1M.json index b8ce5fb710..c56c221876 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL A1M.json @@ -3,7 +3,7 @@ "name": "Overture Rock PLA @BBL A1M", "inherits": "Overture Rock PLA @base", "from": "system", - "setting_id": "GFOT004_02", + "setting_id": "4uJnRSvdNM68meEz", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL P1P 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL P1P 0.2 nozzle.json index a299d81e60..26584a4de9 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL P1P 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Rock PLA @BBL P1P 0.2 nozzle", "inherits": "Overture Rock PLA @base", "from": "system", - "setting_id": "GFOT004_05", + "setting_id": "E4iqlOBK45gpYklp", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL P1P.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL P1P.json index 07354aac11..4b58af1898 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL P1P.json @@ -3,7 +3,7 @@ "name": "Overture Rock PLA @BBL P1P", "inherits": "Overture Rock PLA @base", "from": "system", - "setting_id": "GFOT004_04", + "setting_id": "UIb9tBtZiKaRNopy", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL X1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL X1 0.2 nozzle.json index af0d62edf5..6e0e502c08 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL X1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Rock PLA @BBL X1 0.2 nozzle", "inherits": "Overture Rock PLA @base", "from": "system", - "setting_id": "GFOT004_07", + "setting_id": "q4astJFFLi6KbOJl", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL X1.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL X1.json index 036771d5d0..0829e13b6a 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL X1.json @@ -3,7 +3,7 @@ "name": "Overture Rock PLA @BBL X1", "inherits": "Overture Rock PLA @base", "from": "system", - "setting_id": "GFOT004_06", + "setting_id": "PhBMG4I8ITdLQ8oV", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL X1C 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL X1C 0.2 nozzle.json index aa330205cc..b958f28bb2 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Rock PLA @BBL X1C 0.2 nozzle", "inherits": "Overture Rock PLA @base", "from": "system", - "setting_id": "GFOT004_09", + "setting_id": "HnQhvIXWKZFGVNoY", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL X1C.json similarity index 94% rename from resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL X1C.json index e25071605f..84e0c9c95c 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Rock PLA @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Rock PLA @BBL X1C.json @@ -3,7 +3,7 @@ "name": "Overture Rock PLA @BBL X1C", "inherits": "Overture Rock PLA @base", "from": "system", - "setting_id": "GFOT004_08", + "setting_id": "KsUAem6nMlwcev3c", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL A1 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL A1 0.2 nozzle.json index 1c93195c36..053c01830b 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL A1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Silk PLA @BBL A1 0.2 nozzle", "inherits": "Overture Silk PLA @base", "from": "system", - "setting_id": "GFOT002_01", + "setting_id": "UQsPs9GFLPdYgnMp", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL A1.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL A1.json index 6dfdc93163..17fdb143b1 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL A1.json @@ -3,7 +3,7 @@ "name": "Overture Silk PLA @BBL A1", "inherits": "Overture Silk PLA @base", "from": "system", - "setting_id": "GFOT002_00", + "setting_id": "i0iDLQw8NKSQF3Pe", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL A1M 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL A1M 0.2 nozzle.json index 2666d7f316..6cee47ecae 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL A1M 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Silk PLA @BBL A1M 0.2 nozzle", "inherits": "Overture Silk PLA @base", "from": "system", - "setting_id": "GFOT002_03", + "setting_id": "ugplOmuNqqnsPvfO", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL A1M.json similarity index 93% rename from resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL A1M.json index d625d1453c..7a0ed2f205 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL A1M.json @@ -3,7 +3,7 @@ "name": "Overture Silk PLA @BBL A1M", "inherits": "Overture Silk PLA @base", "from": "system", - "setting_id": "GFOT002_02", + "setting_id": "AMHxNiY2PM8Hell8", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL P1P 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL P1P 0.2 nozzle.json index c855b5d607..098a33d064 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL P1P 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Silk PLA @BBL P1P 0.2 nozzle", "inherits": "Overture Silk PLA @base", "from": "system", - "setting_id": "GFOT002_05", + "setting_id": "4roLiX33h7u51gl7", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL P1P.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL P1P.json index c744db5570..179b9caa25 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL P1P.json @@ -3,7 +3,7 @@ "name": "Overture Silk PLA @BBL P1P", "inherits": "Overture Silk PLA @base", "from": "system", - "setting_id": "GFOT002_04", + "setting_id": "Qecq5EdIXGd6JRKj", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL X1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL X1 0.2 nozzle.json index 2f1630fa6c..a4aefdaf23 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL X1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Silk PLA @BBL X1 0.2 nozzle", "inherits": "Overture Silk PLA @base", "from": "system", - "setting_id": "GFOT002_07", + "setting_id": "Kyi1iZqSagQAzgeD", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL X1.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL X1.json index 673407ee17..fc66735eb5 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL X1.json @@ -3,7 +3,7 @@ "name": "Overture Silk PLA @BBL X1", "inherits": "Overture Silk PLA @base", "from": "system", - "setting_id": "GFOT002_06", + "setting_id": "dCmwz1TxVv1k4nrj", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL X1C 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL X1C 0.2 nozzle.json index e5ef452f46..033c200681 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Silk PLA @BBL X1C 0.2 nozzle", "inherits": "Overture Silk PLA @base", "from": "system", - "setting_id": "GFOT002_09", + "setting_id": "wZZy64Zqs8K4jP9J", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL X1C.json similarity index 94% rename from resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL X1C.json index 419c96e79f..3efefaf2fc 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Silk PLA @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Silk PLA @BBL X1C.json @@ -3,7 +3,7 @@ "name": "Overture Silk PLA @BBL X1C", "inherits": "Overture Silk PLA @base", "from": "system", - "setting_id": "GFOT002_08", + "setting_id": "tIykohBzOGcn12G4", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL A1 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL A1 0.2 nozzle.json index 4ddcd5b2e2..07a2549567 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL A1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Super PLA+ @BBL A1 0.2 nozzle", "inherits": "Overture Super PLA+ @base", "from": "system", - "setting_id": "GFOT005_01", + "setting_id": "WGfgpz40PV9Ru7Zt", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL A1.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL A1.json index 9ce608984d..59e0030198 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL A1.json @@ -3,7 +3,7 @@ "name": "Overture Super PLA+ @BBL A1", "inherits": "Overture Super PLA+ @base", "from": "system", - "setting_id": "GFOT005_00", + "setting_id": "f0PblNsW9q7iGZxH", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL A1M 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL A1M 0.2 nozzle.json index 709fe09c58..a90597f317 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL A1M 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Super PLA+ @BBL A1M 0.2 nozzle", "inherits": "Overture Super PLA+ @base", "from": "system", - "setting_id": "GFOT005_03", + "setting_id": "kV0ZlvVhOwzTcc9u", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL A1M.json similarity index 93% rename from resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL A1M.json index 0e45b6901b..9dd8261e1e 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL A1M.json @@ -3,7 +3,7 @@ "name": "Overture Super PLA+ @BBL A1M", "inherits": "Overture Super PLA+ @base", "from": "system", - "setting_id": "GFOT005_02", + "setting_id": "4D70u7cXRWqDdbEN", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL P1P 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL P1P 0.2 nozzle.json index 0e425bdac8..451593ab27 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL P1P 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Super PLA+ @BBL P1P 0.2 nozzle", "inherits": "Overture Super PLA+ @base", "from": "system", - "setting_id": "GFOT005_05", + "setting_id": "rdS6sZ5bnMnNVI38", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL P1P.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL P1P.json index 92554e2dd7..e72b63ac39 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL P1P.json @@ -3,7 +3,7 @@ "name": "Overture Super PLA+ @BBL P1P", "inherits": "Overture Super PLA+ @base", "from": "system", - "setting_id": "GFOT005_04", + "setting_id": "Lm4gFcVAQrwCbQpJ", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL X1 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL X1 0.2 nozzle.json index 70e034c186..e86479ca76 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL X1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Super PLA+ @BBL X1 0.2 nozzle", "inherits": "Overture Super PLA+ @base", "from": "system", - "setting_id": "GFOT005_07", + "setting_id": "rjQvmZrLs2JgPa5G", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL X1.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL X1.json index b6c52b1ea8..e0b5a34861 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL X1.json @@ -3,7 +3,7 @@ "name": "Overture Super PLA+ @BBL X1", "inherits": "Overture Super PLA+ @base", "from": "system", - "setting_id": "GFOT005_06", + "setting_id": "oGCZ4MSkwNzAvPbk", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL X1C 0.2 nozzle.json similarity index 93% rename from resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL X1C 0.2 nozzle.json index 51b2c733ee..df71a69633 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture Super PLA+ @BBL X1C 0.2 nozzle", "inherits": "Overture Super PLA+ @base", "from": "system", - "setting_id": "GFOT005_09", + "setting_id": "J9fImqGnYoSpSs9W", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL X1C.json similarity index 94% rename from resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL X1C.json index b6982e47a0..d82b6bec09 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Super PLA+ @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture Super PLA+ @BBL X1C.json @@ -3,7 +3,7 @@ "name": "Overture Super PLA+ @BBL X1C", "inherits": "Overture Super PLA+ @base", "from": "system", - "setting_id": "GFOT005_08", + "setting_id": "Pg160F3SwSEQePIv", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL A1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture TPU @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL A1 0.2 nozzle.json index 0f6a00d64a..bd24bde2ba 100644 --- a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL A1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture TPU @BBL A1 0.2 nozzle", "inherits": "Overture TPU @base", "from": "system", - "setting_id": "GFOT008_01", + "setting_id": "Joam1aSO8dvTmJhx", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL A1.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture TPU @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL A1.json index d9b354d6bc..cbd7a4a46f 100644 --- a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL A1.json @@ -3,7 +3,7 @@ "name": "Overture TPU @BBL A1", "inherits": "Overture TPU @base", "from": "system", - "setting_id": "GFOT008_00", + "setting_id": "6ff8qgjKmzyaMfEs", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL A1M 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture TPU @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL A1M 0.2 nozzle.json index 43f9df80a9..37b08df2a8 100644 --- a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL A1M 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture TPU @BBL A1M 0.2 nozzle", "inherits": "Overture TPU @base", "from": "system", - "setting_id": "GFOT008_03", + "setting_id": "ivfbVD3bPoUyvP0s", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL A1M.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture TPU @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL A1M.json index 55be8761be..884583f481 100644 --- a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL A1M.json @@ -3,7 +3,7 @@ "name": "Overture TPU @BBL A1M", "inherits": "Overture TPU @base", "from": "system", - "setting_id": "GFOT008_02", + "setting_id": "XGXmvtOIxwC6QU6p", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL P1P 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture TPU @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL P1P 0.2 nozzle.json index 8f906df48d..5f67e51cb1 100644 --- a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL P1P 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture TPU @BBL P1P 0.2 nozzle", "inherits": "Overture TPU @base", "from": "system", - "setting_id": "GFOT008_05", + "setting_id": "Eov2TNCnSl1cmOWA", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL P1P.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture TPU @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL P1P.json index 9d25d70806..984b4c351c 100644 --- a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL P1P.json @@ -3,7 +3,7 @@ "name": "Overture TPU @BBL P1P", "inherits": "Overture TPU @base", "from": "system", - "setting_id": "GFOT008_04", + "setting_id": "ZqdxAsj5MYTV6Fyn", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL X1 0.2 nozzle.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture TPU @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL X1 0.2 nozzle.json index 1f50237b49..a60623e77d 100644 --- a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL X1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture TPU @BBL X1 0.2 nozzle", "inherits": "Overture TPU @base", "from": "system", - "setting_id": "GFOT008_07", + "setting_id": "YuUN1xxe8zInAObb", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL X1.json similarity index 91% rename from resources/profiles/BBL/filament/Overture/Overture TPU @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL X1.json index 0e676f6fbf..7358d45849 100644 --- a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL X1.json @@ -3,7 +3,7 @@ "name": "Overture TPU @BBL X1", "inherits": "Overture TPU @base", "from": "system", - "setting_id": "GFOT008_06", + "setting_id": "PURuOPM03EAwfxRq", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL X1C 0.2 nozzle.json similarity index 92% rename from resources/profiles/BBL/filament/Overture/Overture TPU @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL X1C 0.2 nozzle.json index 0fbae23716..88658fc933 100644 --- a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture TPU @BBL X1C 0.2 nozzle", "inherits": "Overture TPU @base", "from": "system", - "setting_id": "GFOT008_09", + "setting_id": "PXWDk0asjkBa2I9g", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL X1C.json similarity index 94% rename from resources/profiles/BBL/filament/Overture/Overture TPU @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL X1C.json index 68dcbaa3fd..e8beca31f9 100644 --- a/resources/profiles/BBL/filament/Overture/Overture TPU @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/BBL/Overture TPU @BBL X1C.json @@ -3,7 +3,7 @@ "name": "Overture TPU @BBL X1C", "inherits": "Overture TPU @base", "from": "system", - "setting_id": "GFOT008_08", + "setting_id": "JkPJzKrOYYS3RsnL", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF10 @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PA12-CF10 @BBL X1.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF10 @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PA12-CF10 @BBL X1.json index 225e12d539..520c97c01d 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF10 @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PA12-CF10 @BBL X1.json @@ -3,7 +3,7 @@ "name": "Fiberon PA12-CF10 @BBL X1", "inherits": "Fiberon PA12-CF10 @base", "from": "system", - "setting_id": "GFSL56_00", + "setting_id": "iK97kha1pRV62Yhj", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF20 @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PA6-CF20 @BBL X1.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF20 @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PA6-CF20 @BBL X1.json index ce552a17e6..6d2dc16779 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF20 @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PA6-CF20 @BBL X1.json @@ -3,7 +3,7 @@ "name": "Fiberon PA6-CF20 @BBL X1", "inherits": "Fiberon PA6-CF20 @base", "from": "system", - "setting_id": "GFSL57_00", + "setting_id": "oXBzN409HuCA9c3X", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF25 @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PA6-GF25 @BBL X1.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF25 @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PA6-GF25 @BBL X1.json index 7c03b332b7..c61073f36e 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF25 @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PA6-GF25 @BBL X1.json @@ -3,7 +3,7 @@ "name": "Fiberon PA6-GF25 @BBL X1", "inherits": "Fiberon PA6-GF25 @base", "from": "system", - "setting_id": "GFSL58_00", + "setting_id": "tv24rlJLXAHNYOrf", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF15 @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PA612-CF15 @BBL X1.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF15 @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PA612-CF15 @BBL X1.json index a33b87e835..fe7e671ffa 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF15 @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PA612-CF15 @BBL X1.json @@ -3,7 +3,7 @@ "name": "Fiberon PA612-CF15 @BBL X1", "inherits": "Fiberon PA612-CF15 @base", "from": "system", - "setting_id": "GFSL59_00", + "setting_id": "zsBPiVizpWSR58Ri", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF17 @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PET-CF17 @BBL X1.json similarity index 96% rename from resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF17 @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PET-CF17 @BBL X1.json index 4661fc9dfc..dc84326688 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF17 @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PET-CF17 @BBL X1.json @@ -3,7 +3,7 @@ "name": "Fiberon PET-CF17 @BBL X1", "inherits": "Fiberon PET-CF17 @base", "from": "system", - "setting_id": "GFSL60_00", + "setting_id": "6Roq8NKQujI03Xzb", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PETG-ESD @BBL X1.json similarity index 85% rename from resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PETG-ESD @BBL X1.json index 6d72159532..99fcec0536 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PETG-ESD @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Fiberon PETG-ESD @BBL X1", - "inherits": "Fiberon PETG-ESD @base", + "inherits": "Fiberon PETG-ESD @BBL base", "from": "system", - "setting_id": "GFSL06_01", + "setting_id": "C2HT9Y3AUpOQ1hXy", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PETG-ESD @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PETG-ESD @BBL base.json new file mode 100644 index 0000000000..26367622de --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PETG-ESD @BBL base.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "Fiberon PETG-ESD @BBL base", + "inherits": "Fiberon PETG-ESD @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "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}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF08 @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PETG-rCF08 @BBL X1.json similarity index 98% rename from resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF08 @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PETG-rCF08 @BBL X1.json index 264472679c..12fc28a3b3 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF08 @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Fiberon PETG-rCF08 @BBL X1.json @@ -3,7 +3,7 @@ "name": "Fiberon PETG-rCF08 @BBL X1", "inherits": "Fiberon PETG-rCF08 @base", "from": "system", - "setting_id": "GFSL61_00", + "setting_id": "jh9tJUTbisPNdlgS", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL A1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL A1 0.2 nozzle.json index 17723658e1..1942059805 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma CoPE @BBL A1 0.2 nozzle", - "inherits": "Panchroma CoPE @base", + "inherits": "Panchroma CoPE @BBL base", "from": "system", - "setting_id": "GFSPM016_01", + "setting_id": "qD6JA9FtX9LlQRjY", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL A1.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL A1.json index ec927bbc52..3949502dbe 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma CoPE @BBL A1", - "inherits": "Panchroma CoPE @base", + "inherits": "Panchroma CoPE @BBL base", "from": "system", - "setting_id": "GFSPM016_00", + "setting_id": "Lhxp7wzWfMqiUYsW", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL A1M 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL A1M 0.2 nozzle.json index 6c28307dde..9a9476b5d7 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma CoPE @BBL A1M 0.2 nozzle", - "inherits": "Panchroma CoPE @base", + "inherits": "Panchroma CoPE @BBL base", "from": "system", - "setting_id": "GFSPM016_03", + "setting_id": "XIfGqJMiptV6ZgHl", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL A1M.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL A1M.json index 4857f27375..442de47db5 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma CoPE @BBL A1M", - "inherits": "Panchroma CoPE @base", + "inherits": "Panchroma CoPE @BBL base", "from": "system", - "setting_id": "GFSPM016_02", + "setting_id": "Xovp5RS0Bd9x4zbN", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL P1P 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL P1P 0.2 nozzle.json index 902853fe07..5ad5ae0080 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma CoPE @BBL P1P 0.2 nozzle", - "inherits": "Panchroma CoPE @base", + "inherits": "Panchroma CoPE @BBL base", "from": "system", - "setting_id": "GFSPM016_05", + "setting_id": "pWCjS7hx9zYIDvqg", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL P1P.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL P1P.json index a33f7058de..d569c17314 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma CoPE @BBL P1P", - "inherits": "Panchroma CoPE @base", + "inherits": "Panchroma CoPE @BBL base", "from": "system", - "setting_id": "GFSPM016_04", + "setting_id": "1hUd7X4ZLN1fmoxj", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL X1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL X1 0.2 nozzle.json index fdc4ef045c..e25ca2b2aa 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma CoPE @BBL X1 0.2 nozzle", - "inherits": "Panchroma CoPE @base", + "inherits": "Panchroma CoPE @BBL base", "from": "system", - "setting_id": "GFSPM016_07", + "setting_id": "Ebl5q2HobL5n5kr0", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL X1.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL X1.json index 2251c3a170..7da192d7d2 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma CoPE @BBL X1", - "inherits": "Panchroma CoPE @base", + "inherits": "Panchroma CoPE @BBL base", "from": "system", - "setting_id": "GFSPM016_06", + "setting_id": "ybkf8gjoxusiAQph", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL X1C 0.2 nozzle.json similarity index 84% rename from resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL X1C 0.2 nozzle.json index 5294ca84e4..e6a47c969b 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma CoPE @BBL X1C 0.2 nozzle", - "inherits": "Panchroma CoPE @base", + "inherits": "Panchroma CoPE @BBL base", "from": "system", - "setting_id": "GFSPM016_09", + "setting_id": "N5ZsMGwX81KaREg0", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL X1C.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL X1C.json index 300be9e919..5c50a8898a 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma CoPE @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma CoPE @BBL X1C", - "inherits": "Panchroma CoPE @base", + "inherits": "Panchroma CoPE @BBL base", "from": "system", - "setting_id": "GFSPM016_08", + "setting_id": "bhe6owE7ZvcZR33I", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL base.json new file mode 100644 index 0000000000..8c0f134090 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma CoPE @BBL base.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "Panchroma CoPE @BBL base", + "inherits": "Panchroma CoPE @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "24" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL A1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL A1 0.2 nozzle.json index afd1a28716..960b50781c 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA @BBL A1 0.2 nozzle", - "inherits": "Panchroma PLA @base", + "inherits": "Panchroma PLA @BBL base", "from": "system", - "setting_id": "GFSPM001_01", + "setting_id": "EcAyHYYBbwh0W7cv", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL A1.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL A1.json index 8460996ce9..10dfee2329 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA @BBL A1", - "inherits": "Panchroma PLA @base", + "inherits": "Panchroma PLA @BBL base", "from": "system", - "setting_id": "GFSPM001_00", + "setting_id": "o66PtkUZsIhPbkHO", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL A1M 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL A1M 0.2 nozzle.json index 6dca0b3e8e..dacd19208d 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA @BBL A1M 0.2 nozzle", - "inherits": "Panchroma PLA @base", + "inherits": "Panchroma PLA @BBL base", "from": "system", - "setting_id": "GFSPM001_03", + "setting_id": "JNSUp4LzTjep3XoO", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL A1M.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL A1M.json index c592bdd1da..71cb670085 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA @BBL A1M", - "inherits": "Panchroma PLA @base", + "inherits": "Panchroma PLA @BBL base", "from": "system", - "setting_id": "GFSPM001_02", + "setting_id": "jW21lAphUo0cMqsl", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL P1P 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL P1P 0.2 nozzle.json index 35f8d181b0..4ce3915b98 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA @BBL P1P 0.2 nozzle", - "inherits": "Panchroma PLA @base", + "inherits": "Panchroma PLA @BBL base", "from": "system", - "setting_id": "GFSPM001_05", + "setting_id": "Du0ZWcJNqd8W18Wh", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL P1P.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL P1P.json index 4f802b2f28..9bd4136dcb 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA @BBL P1P", - "inherits": "Panchroma PLA @base", + "inherits": "Panchroma PLA @BBL base", "from": "system", - "setting_id": "GFSPM001_04", + "setting_id": "u3UE6zNIEtdcpJab", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL X1 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL X1 0.2 nozzle.json index 8ac58e3363..9d9cb008b2 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA @BBL X1 0.2 nozzle", - "inherits": "Panchroma PLA @base", + "inherits": "Panchroma PLA @BBL base", "from": "system", - "setting_id": "GFSPM001_07", + "setting_id": "9zGwmuNOrUdT3WNZ", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL X1.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL X1.json index 836f8c4cc7..caf04702a5 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA @BBL X1", - "inherits": "Panchroma PLA @base", + "inherits": "Panchroma PLA @BBL base", "from": "system", - "setting_id": "GFSPM001_06", + "setting_id": "409xnlGe1IzrXIPC", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL X1C 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL X1C 0.2 nozzle.json index 25152f4be0..47977b6bc9 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA @BBL X1C 0.2 nozzle", - "inherits": "Panchroma PLA @base", + "inherits": "Panchroma PLA @BBL base", "from": "system", - "setting_id": "GFSPM001_09", + "setting_id": "SGPzwN6RFKai400f", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL X1C.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL X1C.json index 542d61a645..4907976e1d 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA @BBL X1C", - "inherits": "Panchroma PLA @base", + "inherits": "Panchroma PLA @BBL base", "from": "system", - "setting_id": "GFSPM001_08", + "setting_id": "RXeUIZvz0rlPHaqX", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL base.json new file mode 100644 index 0000000000..678d137b88 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA @BBL base.json @@ -0,0 +1,65 @@ +{ + "type": "filament", + "name": "Panchroma PLA @BBL base", + "inherits": "Panchroma PLA @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_wipe": [ + "0" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL A1 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL A1 0.2 nozzle.json index f968b7e6d7..db7cecd782 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Celestial @BBL A1 0.2 nozzle", - "inherits": "Panchroma PLA Celestial @base", + "inherits": "Panchroma PLA Celestial @BBL base", "from": "system", - "setting_id": "GFSPM008_01", + "setting_id": "rIAWIanchOslJupB", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL A1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL A1.json index 6a34b19049..a2c80dd6ea 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Celestial @BBL A1", - "inherits": "Panchroma PLA Celestial @base", + "inherits": "Panchroma PLA Celestial @BBL base", "from": "system", - "setting_id": "GFSPM008_00", + "setting_id": "HDgCi6UfHZdjXDzr", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL A1M 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL A1M 0.2 nozzle.json index 546a9f5218..2ade265aab 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Celestial @BBL A1M 0.2 nozzle", - "inherits": "Panchroma PLA Celestial @base", + "inherits": "Panchroma PLA Celestial @BBL base", "from": "system", - "setting_id": "GFSPM008_03", + "setting_id": "7VaribjbKdvyTwD4", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL A1M.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL A1M.json index 74aa730a03..93730978e9 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Celestial @BBL A1M", - "inherits": "Panchroma PLA Celestial @base", + "inherits": "Panchroma PLA Celestial @BBL base", "from": "system", - "setting_id": "GFSPM008_02", + "setting_id": "8ah5CAsPw9MmdkS1", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL P1P 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL P1P 0.2 nozzle.json index 1770bfc6fc..4407c9a3ab 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Celestial @BBL P1P 0.2 nozzle", - "inherits": "Panchroma PLA Celestial @base", + "inherits": "Panchroma PLA Celestial @BBL base", "from": "system", - "setting_id": "GFSPM008_05", + "setting_id": "hgz8wyLSMeGXpVfM", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL P1P.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL P1P.json index 97c3558b2c..2661e9b46e 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Celestial @BBL P1P", - "inherits": "Panchroma PLA Celestial @base", + "inherits": "Panchroma PLA Celestial @BBL base", "from": "system", - "setting_id": "GFSPM008_04", + "setting_id": "NIFRCroV1KVjKF97", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL X1 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL X1 0.2 nozzle.json index 9611e74064..50ddece26e 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Celestial @BBL X1 0.2 nozzle", - "inherits": "Panchroma PLA Celestial @base", + "inherits": "Panchroma PLA Celestial @BBL base", "from": "system", - "setting_id": "GFSPM008_07", + "setting_id": "ipgwBtocyVVSwJmb", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL X1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL X1.json index ef1c0886e7..04e3588789 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Celestial @BBL X1", - "inherits": "Panchroma PLA Celestial @base", + "inherits": "Panchroma PLA Celestial @BBL base", "from": "system", - "setting_id": "GFSPM008_06", + "setting_id": "4FFTu7rnCK2ebMUJ", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL X1C 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL X1C 0.2 nozzle.json index 3e31f69e9b..ef737817f1 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Celestial @BBL X1C 0.2 nozzle", - "inherits": "Panchroma PLA Celestial @base", + "inherits": "Panchroma PLA Celestial @BBL base", "from": "system", - "setting_id": "GFSPM008_09", + "setting_id": "JHISMlNlBTFJaGf0", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL X1C.json similarity index 87% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL X1C.json index 7e2eff119c..ab2d7cb3de 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Celestial @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Celestial @BBL X1C", - "inherits": "Panchroma PLA Celestial @base", + "inherits": "Panchroma PLA Celestial @BBL base", "from": "system", - "setting_id": "GFSPM008_08", + "setting_id": "d2X6FU4NkwHHaP1f", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL base.json new file mode 100644 index 0000000000..e6519aab8a --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Celestial @BBL base.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "Panchroma PLA Celestial @BBL base", + "inherits": "Panchroma PLA Celestial @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL A1 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL A1 0.2 nozzle.json index b9a1387c7d..3365bc8122 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Galaxy @BBL A1 0.2 nozzle", - "inherits": "Panchroma PLA Galaxy @base", + "inherits": "Panchroma PLA Galaxy @BBL base", "from": "system", - "setting_id": "GFSPM007_01", + "setting_id": "ZrOxMUGgsizajGy5", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL A1.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL A1.json index 2201897336..762c347447 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Galaxy @BBL A1", - "inherits": "Panchroma PLA Galaxy @base", + "inherits": "Panchroma PLA Galaxy @BBL base", "from": "system", - "setting_id": "GFSPM007_00", + "setting_id": "SBhUnTx3hn0BUZt7", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL A1M 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL A1M 0.2 nozzle.json index cae0556865..bbfc74f8a9 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Galaxy @BBL A1M 0.2 nozzle", - "inherits": "Panchroma PLA Galaxy @base", + "inherits": "Panchroma PLA Galaxy @BBL base", "from": "system", - "setting_id": "GFSPM007_03", + "setting_id": "0pWJRx7TOMdsmNMl", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL A1M.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL A1M.json index 29a115d824..defebe61af 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Galaxy @BBL A1M", - "inherits": "Panchroma PLA Galaxy @base", + "inherits": "Panchroma PLA Galaxy @BBL base", "from": "system", - "setting_id": "GFSPM007_02", + "setting_id": "hdbXfBG9ybegQrYC", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL P1P 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL P1P 0.2 nozzle.json index 5b5b20ed1e..0a97e15c8c 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Galaxy @BBL P1P 0.2 nozzle", - "inherits": "Panchroma PLA Galaxy @base", + "inherits": "Panchroma PLA Galaxy @BBL base", "from": "system", - "setting_id": "GFSPM007_05", + "setting_id": "t4aSBTluntMqFXVx", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL P1P.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL P1P.json index a5bda6970b..2af46fc880 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Galaxy @BBL P1P", - "inherits": "Panchroma PLA Galaxy @base", + "inherits": "Panchroma PLA Galaxy @BBL base", "from": "system", - "setting_id": "GFSPM007_04", + "setting_id": "5G4872zbCMhL2AfW", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL X1 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL X1 0.2 nozzle.json index 39167dd06d..3a462dcc96 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Galaxy @BBL X1 0.2 nozzle", - "inherits": "Panchroma PLA Galaxy @base", + "inherits": "Panchroma PLA Galaxy @BBL base", "from": "system", - "setting_id": "GFSPM007_07", + "setting_id": "cnP7n2P50AAugJIM", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL X1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL X1.json index c36bf6bf63..f85d6fcd68 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Galaxy @BBL X1", - "inherits": "Panchroma PLA Galaxy @base", + "inherits": "Panchroma PLA Galaxy @BBL base", "from": "system", - "setting_id": "GFSPM007_06", + "setting_id": "KkNb6pbD1nfB0hab", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL X1C 0.2 nozzle.json similarity index 84% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL X1C 0.2 nozzle.json index 2e6def811d..d09e0c31a5 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Galaxy @BBL X1C 0.2 nozzle", - "inherits": "Panchroma PLA Galaxy @base", + "inherits": "Panchroma PLA Galaxy @BBL base", "from": "system", - "setting_id": "GFSPM007_09", + "setting_id": "hw5cUrvg4USa0PGq", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL X1C.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL X1C.json index 01e13b013b..f1c0770442 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Galaxy @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Galaxy @BBL X1C", - "inherits": "Panchroma PLA Galaxy @base", + "inherits": "Panchroma PLA Galaxy @BBL base", "from": "system", - "setting_id": "GFSPM007_08", + "setting_id": "DYAuEfsNR9uFeu8B", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL base.json new file mode 100644 index 0000000000..9b2179bb1f --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Galaxy @BBL base.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "Panchroma PLA Galaxy @BBL base", + "inherits": "Panchroma PLA Galaxy @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL A1 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL A1 0.2 nozzle.json index dadf681d5b..4e88a9b087 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Glow @BBL A1 0.2 nozzle", - "inherits": "Panchroma PLA Glow @base", + "inherits": "Panchroma PLA Glow @BBL base", "from": "system", - "setting_id": "GFSPM010_01", + "setting_id": "yIA49PJ8keAftG2V", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL A1.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL A1.json index 29aa7205ee..3fc88e67fc 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Glow @BBL A1", - "inherits": "Panchroma PLA Glow @base", + "inherits": "Panchroma PLA Glow @BBL base", "from": "system", - "setting_id": "GFSPM010_00", + "setting_id": "fekuuLTiJQoB1g7X", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL A1M 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL A1M 0.2 nozzle.json index dc9f4fab28..ea4226ed27 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Glow @BBL A1M 0.2 nozzle", - "inherits": "Panchroma PLA Glow @base", + "inherits": "Panchroma PLA Glow @BBL base", "from": "system", - "setting_id": "GFSPM010_03", + "setting_id": "kbweRw9oFJKMEvDZ", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL A1M.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL A1M.json index d07309eef6..c99f50a841 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Glow @BBL A1M", - "inherits": "Panchroma PLA Glow @base", + "inherits": "Panchroma PLA Glow @BBL base", "from": "system", - "setting_id": "GFSPM010_02", + "setting_id": "IknQVZ1JKDhWNjhR", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL P1P 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL P1P 0.2 nozzle.json index 3e6c0fb5d3..30dd7aeedb 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Glow @BBL P1P 0.2 nozzle", - "inherits": "Panchroma PLA Glow @base", + "inherits": "Panchroma PLA Glow @BBL base", "from": "system", - "setting_id": "GFSPM010_05", + "setting_id": "PVxGiD5EsfILtoXr", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL P1P.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL P1P.json index c81ef58f9c..5538a0c2e2 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Glow @BBL P1P", - "inherits": "Panchroma PLA Glow @base", + "inherits": "Panchroma PLA Glow @BBL base", "from": "system", - "setting_id": "GFSPM010_04", + "setting_id": "09YUARvE0trJdL9W", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL X1 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL X1 0.2 nozzle.json index 376c88decd..312820e515 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Glow @BBL X1 0.2 nozzle", - "inherits": "Panchroma PLA Glow @base", + "inherits": "Panchroma PLA Glow @BBL base", "from": "system", - "setting_id": "GFSPM010_07", + "setting_id": "djzqnlITUbE88XaR", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL X1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL X1.json index 10701cfc01..1dedfbbcbe 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Glow @BBL X1", - "inherits": "Panchroma PLA Glow @base", + "inherits": "Panchroma PLA Glow @BBL base", "from": "system", - "setting_id": "GFSPM010_06", + "setting_id": "45ePNVRJQTB9RfK6", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL X1C 0.2 nozzle.json similarity index 85% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL X1C 0.2 nozzle.json index 277e90e9f7..47e1816e91 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Glow @BBL X1C 0.2 nozzle", - "inherits": "Panchroma PLA Glow @base", + "inherits": "Panchroma PLA Glow @BBL base", "from": "system", - "setting_id": "GFSPM010_09", + "setting_id": "5gNvQlBSR7uJpdfZ", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL X1C.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL X1C.json index 1c5af79b77..a07275076d 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Glow @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Glow @BBL X1C", - "inherits": "Panchroma PLA Glow @base", + "inherits": "Panchroma PLA Glow @BBL base", "from": "system", - "setting_id": "GFSPM010_08", + "setting_id": "GwpJCEpzSLf6WQPM", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL base.json new file mode 100644 index 0000000000..66685f2324 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Glow @BBL base.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "Panchroma PLA Glow @BBL base", + "inherits": "Panchroma PLA Glow @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL A1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL A1 0.2 nozzle.json index d33e7192de..f97ab3fe9d 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Luminous @BBL A1 0.2 nozzle", - "inherits": "Panchroma PLA Luminous @base", + "inherits": "Panchroma PLA Luminous @BBL base", "from": "system", - "setting_id": "GFSPM011_01", + "setting_id": "Gm0V2yS38B73lzej", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL A1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL A1.json index 4da92b5a04..615c17f131 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Luminous @BBL A1", - "inherits": "Panchroma PLA Luminous @base", + "inherits": "Panchroma PLA Luminous @BBL base", "from": "system", - "setting_id": "GFSPM011_00", + "setting_id": "cNayl2LdadgzGPIu", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL A1M 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL A1M 0.2 nozzle.json index 4701429827..8622522aa4 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Luminous @BBL A1M 0.2 nozzle", - "inherits": "Panchroma PLA Luminous @base", + "inherits": "Panchroma PLA Luminous @BBL base", "from": "system", - "setting_id": "GFSPM011_03", + "setting_id": "svpeogHNJpG6OJcs", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL A1M.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL A1M.json index e121d53f7d..391098c405 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Luminous @BBL A1M", - "inherits": "Panchroma PLA Luminous @base", + "inherits": "Panchroma PLA Luminous @BBL base", "from": "system", - "setting_id": "GFSPM011_02", + "setting_id": "eZXv92vdqjhAMw8d", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL P1P 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL P1P 0.2 nozzle.json index fd3b873bb2..df695ab23b 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Luminous @BBL P1P 0.2 nozzle", - "inherits": "Panchroma PLA Luminous @base", + "inherits": "Panchroma PLA Luminous @BBL base", "from": "system", - "setting_id": "GFSPM011_05", + "setting_id": "iq98CGGzUCwjBNJ3", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL P1P.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL P1P.json index f15189902b..4649b9a73e 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Luminous @BBL P1P", - "inherits": "Panchroma PLA Luminous @base", + "inherits": "Panchroma PLA Luminous @BBL base", "from": "system", - "setting_id": "GFSPM011_04", + "setting_id": "CyVrwfMZwfYtiqKh", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL X1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL X1 0.2 nozzle.json index 1a506784f0..eb5634ab03 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Luminous @BBL X1 0.2 nozzle", - "inherits": "Panchroma PLA Luminous @base", + "inherits": "Panchroma PLA Luminous @BBL base", "from": "system", - "setting_id": "GFSPM011_07", + "setting_id": "wLKtViV6H7LzbbzO", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL X1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL X1.json index db9dcf9269..5b500d904e 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Luminous @BBL X1", - "inherits": "Panchroma PLA Luminous @base", + "inherits": "Panchroma PLA Luminous @BBL base", "from": "system", - "setting_id": "GFSPM011_06", + "setting_id": "pbsffX1Tn2uZBQAC", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL X1C 0.2 nozzle.json similarity index 85% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL X1C 0.2 nozzle.json index 98f9ce2376..da45931ab7 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Luminous @BBL X1C 0.2 nozzle", - "inherits": "Panchroma PLA Luminous @base", + "inherits": "Panchroma PLA Luminous @BBL base", "from": "system", - "setting_id": "GFSPM011_09", + "setting_id": "dBfdr3XSx2Ycs0t1", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL X1C.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL X1C.json index 9134015573..013a8709e5 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Luminous @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Luminous @BBL X1C", - "inherits": "Panchroma PLA Luminous @base", + "inherits": "Panchroma PLA Luminous @BBL base", "from": "system", - "setting_id": "GFSPM011_08", + "setting_id": "FR0NsZuwXmyydY91", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL base.json new file mode 100644 index 0000000000..0cbb162fe3 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Luminous @BBL base.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "Panchroma PLA Luminous @BBL base", + "inherits": "Panchroma PLA Luminous @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL A1 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL A1 0.2 nozzle.json index a5ddad4353..ae607f61e7 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Marble @BBL A1 0.2 nozzle", - "inherits": "Panchroma PLA Marble @base", + "inherits": "Panchroma PLA Marble @BBL base", "from": "system", - "setting_id": "GFSPM003_01", + "setting_id": "R6T9OGfLgYyuJQQV", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL A1.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL A1.json index e18cf6058f..b00e3ac4d5 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Marble @BBL A1", - "inherits": "Panchroma PLA Marble @base", + "inherits": "Panchroma PLA Marble @BBL base", "from": "system", - "setting_id": "GFSPM003_00", + "setting_id": "74wdx9EmWTPhMgGp", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL A1M 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL A1M 0.2 nozzle.json index 298b3f0830..f73242632a 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Marble @BBL A1M 0.2 nozzle", - "inherits": "Panchroma PLA Marble @base", + "inherits": "Panchroma PLA Marble @BBL base", "from": "system", - "setting_id": "GFSPM003_03", + "setting_id": "JGiyk0wyB9sND2BX", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL A1M.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL A1M.json index 0cddd47a22..a694565762 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Marble @BBL A1M", - "inherits": "Panchroma PLA Marble @base", + "inherits": "Panchroma PLA Marble @BBL base", "from": "system", - "setting_id": "GFSPM003_02", + "setting_id": "TV9TVGXyBgKJjLj4", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL P1P 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL P1P 0.2 nozzle.json index 70b8f89852..0f233b0b14 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Marble @BBL P1P 0.2 nozzle", - "inherits": "Panchroma PLA Marble @base", + "inherits": "Panchroma PLA Marble @BBL base", "from": "system", - "setting_id": "GFSPM003_05", + "setting_id": "xmuKHrKm68rk6LGG", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL P1P.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL P1P.json index e67d08514c..ecf207c701 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Marble @BBL P1P", - "inherits": "Panchroma PLA Marble @base", + "inherits": "Panchroma PLA Marble @BBL base", "from": "system", - "setting_id": "GFSPM003_04", + "setting_id": "AiUXencnnJ8dsI3G", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL X1 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL X1 0.2 nozzle.json index 8e8e4e4e84..a435975aed 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Marble @BBL X1 0.2 nozzle", - "inherits": "Panchroma PLA Marble @base", + "inherits": "Panchroma PLA Marble @BBL base", "from": "system", - "setting_id": "GFSPM003_07", + "setting_id": "OHXft04xIKN5AtVc", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL X1.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL X1.json index 8f85dff8df..632b5488e7 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Marble @BBL X1", - "inherits": "Panchroma PLA Marble @base", + "inherits": "Panchroma PLA Marble @BBL base", "from": "system", - "setting_id": "GFSPM003_06", + "setting_id": "FTcxWNxE7TXZvX9g", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL X1C 0.2 nozzle.json similarity index 84% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL X1C 0.2 nozzle.json index 6a83b160a7..7492f0474e 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Marble @BBL X1C 0.2 nozzle", - "inherits": "Panchroma PLA Marble @base", + "inherits": "Panchroma PLA Marble @BBL base", "from": "system", - "setting_id": "GFSPM003_09", + "setting_id": "X610ITrFop4MDa77", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL X1C.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL X1C.json index f9c4181158..446522db10 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Marble @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Marble @BBL X1C", - "inherits": "Panchroma PLA Marble @base", + "inherits": "Panchroma PLA Marble @BBL base", "from": "system", - "setting_id": "GFSPM003_08", + "setting_id": "2mvGOjwoOrlKnLZD", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL base.json new file mode 100644 index 0000000000..77f862243e --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Marble @BBL base.json @@ -0,0 +1,62 @@ +{ + "type": "filament", + "name": "Panchroma PLA Marble @BBL base", + "inherits": "Panchroma PLA Marble @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "22" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL A1 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL A1 0.2 nozzle.json index de3a7c35e1..44e22c2015 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Matte @BBL A1 0.2 nozzle", - "inherits": "Panchroma PLA Matte @base", + "inherits": "Panchroma PLA Matte @BBL base", "from": "system", - "setting_id": "GFSPM002_01", + "setting_id": "feUwXmzCUHI8Ani5", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL A1.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL A1.json index 905b6e8624..fe82cc670d 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Matte @BBL A1", - "inherits": "Panchroma PLA Matte @base", + "inherits": "Panchroma PLA Matte @BBL base", "from": "system", - "setting_id": "GFSPM002_00", + "setting_id": "LCcphd1X1Id1EY7i", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL A1M 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL A1M 0.2 nozzle.json index 9f0e3b708e..86618b113d 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Matte @BBL A1M 0.2 nozzle", - "inherits": "Panchroma PLA Matte @base", + "inherits": "Panchroma PLA Matte @BBL base", "from": "system", - "setting_id": "GFSPM002_03", + "setting_id": "U9z6EWwT6wjpR7HL", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL A1M.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL A1M.json index 2bd26f4411..e359124d5b 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Matte @BBL A1M", - "inherits": "Panchroma PLA Matte @base", + "inherits": "Panchroma PLA Matte @BBL base", "from": "system", - "setting_id": "GFSPM002_02", + "setting_id": "p7NNq8w4i95ofi0p", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL P1P 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL P1P 0.2 nozzle.json index 5f6a0bea90..56c2f2dedc 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Matte @BBL P1P 0.2 nozzle", - "inherits": "Panchroma PLA Matte @base", + "inherits": "Panchroma PLA Matte @BBL base", "from": "system", - "setting_id": "GFSPM002_05", + "setting_id": "35T8Ez3Y9PToAZSa", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL P1P.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL P1P.json index 4100fe84ab..55f0d71f82 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Matte @BBL P1P", - "inherits": "Panchroma PLA Matte @base", + "inherits": "Panchroma PLA Matte @BBL base", "from": "system", - "setting_id": "GFSPM002_04", + "setting_id": "GjYsfwFb1rjW2HWh", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL X1 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL X1 0.2 nozzle.json index 26219eeffa..af771680cb 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Matte @BBL X1 0.2 nozzle", - "inherits": "Panchroma PLA Matte @base", + "inherits": "Panchroma PLA Matte @BBL base", "from": "system", - "setting_id": "GFSPM002_07", + "setting_id": "UIBovjt1ahFJMP3C", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL X1.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL X1.json index 6901a33b60..b66e36e578 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Matte @BBL X1", - "inherits": "Panchroma PLA Matte @base", + "inherits": "Panchroma PLA Matte @BBL base", "from": "system", - "setting_id": "GFSPM002_06", + "setting_id": "iaQKkGk4P0Fmwczg", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL X1C 0.2 nozzle.json similarity index 84% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL X1C 0.2 nozzle.json index 2ef1da596c..8bd5609b00 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Matte @BBL X1C 0.2 nozzle", - "inherits": "Panchroma PLA Matte @base", + "inherits": "Panchroma PLA Matte @BBL base", "from": "system", - "setting_id": "GFSPM002_09", + "setting_id": "rrF1mxIIRougcDSP", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL X1C.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL X1C.json index bd3d25b3e6..7f162d80bf 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Matte @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Matte @BBL X1C", - "inherits": "Panchroma PLA Matte @base", + "inherits": "Panchroma PLA Matte @BBL base", "from": "system", - "setting_id": "GFSPM002_08", + "setting_id": "K3UxBLo5EwyO5RJH", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL base.json new file mode 100644 index 0000000000..d19670cc6e --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Matte @BBL base.json @@ -0,0 +1,62 @@ +{ + "type": "filament", + "name": "Panchroma PLA Matte @BBL base", + "inherits": "Panchroma PLA Matte @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "22" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL A1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL A1 0.2 nozzle.json index e0e3f84b3d..074f6328a9 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Metallic @BBL A1 0.2 nozzle", - "inherits": "Panchroma PLA Metallic @base", + "inherits": "Panchroma PLA Metallic @BBL base", "from": "system", - "setting_id": "GFSPM012_01", + "setting_id": "8oiaDU9UY2x6kI6x", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL A1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL A1.json index 546e7c323c..804b4c9444 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Metallic @BBL A1", - "inherits": "Panchroma PLA Metallic @base", + "inherits": "Panchroma PLA Metallic @BBL base", "from": "system", - "setting_id": "GFSPM012_00", + "setting_id": "7nQYDYBd96AF3H1C", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL A1M 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL A1M 0.2 nozzle.json index deea2a43ed..103f582d97 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Metallic @BBL A1M 0.2 nozzle", - "inherits": "Panchroma PLA Metallic @base", + "inherits": "Panchroma PLA Metallic @BBL base", "from": "system", - "setting_id": "GFSPM012_03", + "setting_id": "Illg4tjxcHRlYb1n", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL A1M.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL A1M.json index f96e849799..88b432b6de 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Metallic @BBL A1M", - "inherits": "Panchroma PLA Metallic @base", + "inherits": "Panchroma PLA Metallic @BBL base", "from": "system", - "setting_id": "GFSPM012_02", + "setting_id": "tQfPV5JmDkRn2OOV", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL P1P 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL P1P 0.2 nozzle.json index b2b5bd7776..918f3764ea 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Metallic @BBL P1P 0.2 nozzle", - "inherits": "Panchroma PLA Metallic @base", + "inherits": "Panchroma PLA Metallic @BBL base", "from": "system", - "setting_id": "GFSPM012_05", + "setting_id": "OI3pVdKp585lQcs9", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL P1P.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL P1P.json index a386ec3306..c4e7df4c22 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Metallic @BBL P1P", - "inherits": "Panchroma PLA Metallic @base", + "inherits": "Panchroma PLA Metallic @BBL base", "from": "system", - "setting_id": "GFSPM012_04", + "setting_id": "jYQVdc3W3vGJfDzz", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL X1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL X1 0.2 nozzle.json index c439b25f93..5c93a002aa 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Metallic @BBL X1 0.2 nozzle", - "inherits": "Panchroma PLA Metallic @base", + "inherits": "Panchroma PLA Metallic @BBL base", "from": "system", - "setting_id": "GFSPM012_07", + "setting_id": "KbzFSFJBykP6kZkL", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL X1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL X1.json index ca62255017..f63b0e7852 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Metallic @BBL X1", - "inherits": "Panchroma PLA Metallic @base", + "inherits": "Panchroma PLA Metallic @BBL base", "from": "system", - "setting_id": "GFSPM012_06", + "setting_id": "l5X4qdMfFoyvDsqJ", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL X1C 0.2 nozzle.json similarity index 85% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL X1C 0.2 nozzle.json index 435ffab33f..0e871c4ae1 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Metallic @BBL X1C 0.2 nozzle", - "inherits": "Panchroma PLA Metallic @base", + "inherits": "Panchroma PLA Metallic @BBL base", "from": "system", - "setting_id": "GFSPM012_09", + "setting_id": "P9tuNS2IJYvkWdgK", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL X1C.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL X1C.json index bbb4f8a603..84e1cf33c8 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Metallic @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Metallic @BBL X1C", - "inherits": "Panchroma PLA Metallic @base", + "inherits": "Panchroma PLA Metallic @BBL base", "from": "system", - "setting_id": "GFSPM012_08", + "setting_id": "qHZ93iDrS0Yq0nve", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL base.json new file mode 100644 index 0000000000..aa2532e6b3 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Metallic @BBL base.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "Panchroma PLA Metallic @BBL base", + "inherits": "Panchroma PLA Metallic @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL A1 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL A1 0.2 nozzle.json index 05824a933b..c916a76c59 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Neon @BBL A1 0.2 nozzle", - "inherits": "Panchroma PLA Neon @base", + "inherits": "Panchroma PLA Neon @BBL base", "from": "system", - "setting_id": "GFSPM013_01", + "setting_id": "x8Legvhy2R0I1VAs", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL A1.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL A1.json index cfb6c3f3d3..9ace07f696 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Neon @BBL A1", - "inherits": "Panchroma PLA Neon @base", + "inherits": "Panchroma PLA Neon @BBL base", "from": "system", - "setting_id": "GFSPM013_00", + "setting_id": "N7SOOVeq1hiXmrKQ", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL A1M 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL A1M 0.2 nozzle.json index 268ef04f05..2db77f41f1 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Neon @BBL A1M 0.2 nozzle", - "inherits": "Panchroma PLA Neon @base", + "inherits": "Panchroma PLA Neon @BBL base", "from": "system", - "setting_id": "GFSPM013_03", + "setting_id": "Ptuq1zUHdeoGINzD", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL A1M.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL A1M.json index d970f6b468..4df64db262 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Neon @BBL A1M", - "inherits": "Panchroma PLA Neon @base", + "inherits": "Panchroma PLA Neon @BBL base", "from": "system", - "setting_id": "GFSPM013_02", + "setting_id": "laH74uyf5UCItC8M", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL P1P 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL P1P 0.2 nozzle.json index e3d6d2a600..1f0450c396 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Neon @BBL P1P 0.2 nozzle", - "inherits": "Panchroma PLA Neon @base", + "inherits": "Panchroma PLA Neon @BBL base", "from": "system", - "setting_id": "GFSPM013_05", + "setting_id": "MgoWnobu5p8ksS6s", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL P1P.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL P1P.json index c09699ecd7..182e803ace 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Neon @BBL P1P", - "inherits": "Panchroma PLA Neon @base", + "inherits": "Panchroma PLA Neon @BBL base", "from": "system", - "setting_id": "GFSPM013_04", + "setting_id": "xChAJ7xQfHPMZwr0", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL X1 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL X1 0.2 nozzle.json index 90a6ebd9e7..9214dd3848 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Neon @BBL X1 0.2 nozzle", - "inherits": "Panchroma PLA Neon @base", + "inherits": "Panchroma PLA Neon @BBL base", "from": "system", - "setting_id": "GFSPM013_07", + "setting_id": "h201yjxsJ93sqVhB", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL X1.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL X1.json index 4a08ef9ec7..407ae307cc 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Neon @BBL X1", - "inherits": "Panchroma PLA Neon @base", + "inherits": "Panchroma PLA Neon @BBL base", "from": "system", - "setting_id": "GFSPM013_06", + "setting_id": "ZNx216TW1gv9bXyT", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL X1C 0.2 nozzle.json similarity index 85% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL X1C 0.2 nozzle.json index 4ab620fa59..0a404b1a53 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Neon @BBL X1C 0.2 nozzle", - "inherits": "Panchroma PLA Neon @base", + "inherits": "Panchroma PLA Neon @BBL base", "from": "system", - "setting_id": "GFSPM013_09", + "setting_id": "Iq6TUkH1NFn0p6Ds", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL X1C.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL X1C.json index 7184cb4caf..4f133f3eda 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Neon @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Neon @BBL X1C", - "inherits": "Panchroma PLA Neon @base", + "inherits": "Panchroma PLA Neon @BBL base", "from": "system", - "setting_id": "GFSPM013_08", + "setting_id": "xeteveYJBnFTC3A9", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL base.json new file mode 100644 index 0000000000..d83b3e2009 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Neon @BBL base.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "Panchroma PLA Neon @BBL base", + "inherits": "Panchroma PLA Neon @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL A1 0.2 nozzle.json similarity index 85% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL A1 0.2 nozzle.json index ad7a553237..edd74d38bf 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL A1 0.2 nozzle.json @@ -2,9 +2,9 @@ "type": "filament", "name": "Panchroma PLA Satin @BBL A1 0.2 nozzle", "renamed_from": "Panchroma PLA Stain @BBL A1 0.2 nozzle", - "inherits": "Panchroma PLA Satin @base", + "inherits": "Panchroma PLA Satin @BBL base", "from": "system", - "setting_id": "GFSPM005_01", + "setting_id": "nQu34WPbkpyMfQ4J", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL A1.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL A1.json index e516c24976..b19355f06c 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL A1.json @@ -2,9 +2,9 @@ "type": "filament", "name": "Panchroma PLA Satin @BBL A1", "renamed_from": "Panchroma PLA Stain @BBL A1", - "inherits": "Panchroma PLA Satin @base", + "inherits": "Panchroma PLA Satin @BBL base", "from": "system", - "setting_id": "GFSPM005_00", + "setting_id": "91v2p9zMeGRNWX4C", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL A1M 0.2 nozzle.json similarity index 85% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL A1M 0.2 nozzle.json index bc354c062d..3cc973ed27 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL A1M 0.2 nozzle.json @@ -2,9 +2,9 @@ "type": "filament", "name": "Panchroma PLA Satin @BBL A1M 0.2 nozzle", "renamed_from": "Panchroma PLA Stain @BBL A1M 0.2 nozzle", - "inherits": "Panchroma PLA Satin @base", + "inherits": "Panchroma PLA Satin @BBL base", "from": "system", - "setting_id": "GFSPM005_03", + "setting_id": "31G5dYmmEeEeDnGx", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL A1M.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL A1M.json index b9698daa75..4e2a28e870 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL A1M.json @@ -2,9 +2,9 @@ "type": "filament", "name": "Panchroma PLA Satin @BBL A1M", "renamed_from": "Panchroma PLA Stain @BBL A1M", - "inherits": "Panchroma PLA Satin @base", + "inherits": "Panchroma PLA Satin @BBL base", "from": "system", - "setting_id": "GFSPM005_02", + "setting_id": "h8Iw5jv0LkEsGWWC", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL P1P 0.2 nozzle.json similarity index 85% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL P1P 0.2 nozzle.json index cab5e39ee6..2e664a44b2 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL P1P 0.2 nozzle.json @@ -2,9 +2,9 @@ "type": "filament", "name": "Panchroma PLA Satin @BBL P1P 0.2 nozzle", "renamed_from": "Panchroma PLA Stain @BBL P1P 0.2 nozzle", - "inherits": "Panchroma PLA Satin @base", + "inherits": "Panchroma PLA Satin @BBL base", "from": "system", - "setting_id": "GFSPM005_05", + "setting_id": "8wht7zi8DcoOFMSB", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL P1P.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL P1P.json index fcb4636518..b4e3228b09 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL P1P.json @@ -2,9 +2,9 @@ "type": "filament", "name": "Panchroma PLA Satin @BBL P1P", "renamed_from": "Panchroma PLA Stain @BBL P1P", - "inherits": "Panchroma PLA Satin @base", + "inherits": "Panchroma PLA Satin @BBL base", "from": "system", - "setting_id": "GFSPM005_04", + "setting_id": "7b5ZYEJp7KK75tKw", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL X1 0.2 nozzle.json similarity index 85% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL X1 0.2 nozzle.json index 2ca9056d3a..fdae5f5719 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL X1 0.2 nozzle.json @@ -2,9 +2,9 @@ "type": "filament", "name": "Panchroma PLA Satin @BBL X1 0.2 nozzle", "renamed_from": "Panchroma PLA Stain @BBL X1 0.2 nozzle", - "inherits": "Panchroma PLA Satin @base", + "inherits": "Panchroma PLA Satin @BBL base", "from": "system", - "setting_id": "GFSPM005_07", + "setting_id": "zRkt2fsqDlC8i8hO", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL X1.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL X1.json index 804564f4e8..b08400c092 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL X1.json @@ -2,9 +2,9 @@ "type": "filament", "name": "Panchroma PLA Satin @BBL X1", "renamed_from": "Panchroma PLA Stain @BBL X1", - "inherits": "Panchroma PLA Satin @base", + "inherits": "Panchroma PLA Satin @BBL base", "from": "system", - "setting_id": "GFSPM005_06", + "setting_id": "bf2w3EzBrBkeZ2ds", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL X1C 0.2 nozzle.json similarity index 86% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL X1C 0.2 nozzle.json index ef4fe88115..a3065b143a 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL X1C 0.2 nozzle.json @@ -2,9 +2,9 @@ "type": "filament", "name": "Panchroma PLA Satin @BBL X1C 0.2 nozzle", "renamed_from": "Panchroma PLA Stain @BBL X1C 0.2 nozzle", - "inherits": "Panchroma PLA Satin @base", + "inherits": "Panchroma PLA Satin @BBL base", "from": "system", - "setting_id": "GFSPM005_09", + "setting_id": "BqsKjFUcRPWxKg7B", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL X1C.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL X1C.json index 349e489fd5..e48b0812c9 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL X1C.json @@ -2,9 +2,9 @@ "type": "filament", "name": "Panchroma PLA Satin @BBL X1C", "renamed_from": "Panchroma PLA Stain @BBL X1C", - "inherits": "Panchroma PLA Satin @base", + "inherits": "Panchroma PLA Satin @BBL base", "from": "system", - "setting_id": "GFSPM005_08", + "setting_id": "dRGzGPHSG9tujLWW", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL base.json new file mode 100644 index 0000000000..aa84850f06 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Satin @BBL base.json @@ -0,0 +1,62 @@ +{ + "type": "filament", + "name": "Panchroma PLA Satin @BBL base", + "inherits": "Panchroma PLA Satin @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL A1 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL A1 0.2 nozzle.json index 8bb018f7b1..01109cc58a 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Silk @BBL A1 0.2 nozzle", - "inherits": "Panchroma PLA Silk @base", + "inherits": "Panchroma PLA Silk @BBL base", "from": "system", - "setting_id": "GFSPM004_01", + "setting_id": "IF4pmYpCYGXFEioc", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL A1.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL A1.json index 964735c284..34c7df8605 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Silk @BBL A1", - "inherits": "Panchroma PLA Silk @base", + "inherits": "Panchroma PLA Silk @BBL base", "from": "system", - "setting_id": "GFSPM004_00", + "setting_id": "BKrse8svL0dwO85f", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL A1M 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL A1M 0.2 nozzle.json index 7c667a7ce1..63f11eff05 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Silk @BBL A1M 0.2 nozzle", - "inherits": "Panchroma PLA Silk @base", + "inherits": "Panchroma PLA Silk @BBL base", "from": "system", - "setting_id": "GFSPM004_03", + "setting_id": "7a6AEiNpDN8tcV9b", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL A1M.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL A1M.json index ea303d2dcf..c7f7958b6d 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Silk @BBL A1M", - "inherits": "Panchroma PLA Silk @base", + "inherits": "Panchroma PLA Silk @BBL base", "from": "system", - "setting_id": "GFSPM004_02", + "setting_id": "kB393DUVClzaxcwJ", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL P1P 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL P1P 0.2 nozzle.json index b66894171d..1bfeb9a8bb 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Silk @BBL P1P 0.2 nozzle", - "inherits": "Panchroma PLA Silk @base", + "inherits": "Panchroma PLA Silk @BBL base", "from": "system", - "setting_id": "GFSPM004_05", + "setting_id": "1nztFtUL604XOsra", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL P1P.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL P1P.json index 8523bbb0cc..49d831a1de 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Silk @BBL P1P", - "inherits": "Panchroma PLA Silk @base", + "inherits": "Panchroma PLA Silk @BBL base", "from": "system", - "setting_id": "GFSPM004_04", + "setting_id": "k9BIYLfdkxVgSQ6d", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL X1 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL X1 0.2 nozzle.json index 1bf7ceab18..41368a10e4 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Silk @BBL X1 0.2 nozzle", - "inherits": "Panchroma PLA Silk @base", + "inherits": "Panchroma PLA Silk @BBL base", "from": "system", - "setting_id": "GFSPM004_07", + "setting_id": "iaoE6g4vlMos1s6D", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL X1.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL X1.json index 8bb1c8a001..05e03e19c2 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Silk @BBL X1", - "inherits": "Panchroma PLA Silk @base", + "inherits": "Panchroma PLA Silk @BBL base", "from": "system", - "setting_id": "GFSPM004_06", + "setting_id": "XcR7Y0PAtTf1tH3L", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json similarity index 85% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json index 592eea2e73..50812453ef 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Silk @BBL X1C 0.2 nozzle", - "inherits": "Panchroma PLA Silk @base", + "inherits": "Panchroma PLA Silk @BBL base", "from": "system", - "setting_id": "GFSPM004_09", + "setting_id": "BMTCNRFG2REbt9Bh", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL X1C.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL X1C.json index 632617eb41..d9eddf1f37 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Silk @BBL X1C", - "inherits": "Panchroma PLA Silk @base", + "inherits": "Panchroma PLA Silk @BBL base", "from": "system", - "setting_id": "GFSPM004_08", + "setting_id": "mXuLnQicus3Uhhfj", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL base.json new file mode 100644 index 0000000000..43f4b10fb8 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Silk @BBL base.json @@ -0,0 +1,62 @@ +{ + "type": "filament", + "name": "Panchroma PLA Silk @BBL base", + "inherits": "Panchroma PLA Silk @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL A1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL A1 0.2 nozzle.json index 973f8c99a6..b337099a21 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Starlight @BBL A1 0.2 nozzle", - "inherits": "Panchroma PLA Starlight @base", + "inherits": "Panchroma PLA Starlight @BBL base", "from": "system", - "setting_id": "GFSPM009_01", + "setting_id": "GBzsX4zOxHFSZf2p", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL A1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL A1.json index 7195ee8aee..bfd4e12372 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Starlight @BBL A1", - "inherits": "Panchroma PLA Starlight @base", + "inherits": "Panchroma PLA Starlight @BBL base", "from": "system", - "setting_id": "GFSPM009_00", + "setting_id": "q6gmM7NizDVBcW99", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL A1M 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL A1M 0.2 nozzle.json index c5d1f19e60..9df5de026d 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Starlight @BBL A1M 0.2 nozzle", - "inherits": "Panchroma PLA Starlight @base", + "inherits": "Panchroma PLA Starlight @BBL base", "from": "system", - "setting_id": "GFSPM009_03", + "setting_id": "xywCdWs1PD3mizua", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL A1M.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL A1M.json index 86702002c9..05648190e1 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Starlight @BBL A1M", - "inherits": "Panchroma PLA Starlight @base", + "inherits": "Panchroma PLA Starlight @BBL base", "from": "system", - "setting_id": "GFSPM009_02", + "setting_id": "94bGLG3JVHJqeuwm", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL P1P 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL P1P 0.2 nozzle.json index 47d3ca9b7c..9281a7c061 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Starlight @BBL P1P 0.2 nozzle", - "inherits": "Panchroma PLA Starlight @base", + "inherits": "Panchroma PLA Starlight @BBL base", "from": "system", - "setting_id": "GFSPM009_05", + "setting_id": "vWIBfFxUxiYs0noT", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL P1P.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL P1P.json index 5a814b235b..7c8188b63f 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Starlight @BBL P1P", - "inherits": "Panchroma PLA Starlight @base", + "inherits": "Panchroma PLA Starlight @BBL base", "from": "system", - "setting_id": "GFSPM009_04", + "setting_id": "SA4k2TGlvq09KgSP", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL X1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL X1 0.2 nozzle.json index d9ff1754f5..9c289222ed 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Starlight @BBL X1 0.2 nozzle", - "inherits": "Panchroma PLA Starlight @base", + "inherits": "Panchroma PLA Starlight @BBL base", "from": "system", - "setting_id": "GFSPM009_07", + "setting_id": "buWzLlidD8kqVn9M", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL X1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL X1.json index 6d22d51867..c30f32eb9c 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Starlight @BBL X1", - "inherits": "Panchroma PLA Starlight @base", + "inherits": "Panchroma PLA Starlight @BBL base", "from": "system", - "setting_id": "GFSPM009_06", + "setting_id": "iJpQBSxPtmXKX6LW", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL X1C 0.2 nozzle.json similarity index 84% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL X1C 0.2 nozzle.json index 227615d682..9783999b83 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Starlight @BBL X1C 0.2 nozzle", - "inherits": "Panchroma PLA Starlight @base", + "inherits": "Panchroma PLA Starlight @BBL base", "from": "system", - "setting_id": "GFSPM009_09", + "setting_id": "3PYDMfg7fybbTYDk", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL X1C.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL X1C.json index d8b4cd49ca..9192a3af91 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Starlight @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Starlight @BBL X1C", - "inherits": "Panchroma PLA Starlight @base", + "inherits": "Panchroma PLA Starlight @BBL base", "from": "system", - "setting_id": "GFSPM009_08", + "setting_id": "TPy2tnZX4boCuzTE", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL base.json new file mode 100644 index 0000000000..16c1a8bfcb --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Starlight @BBL base.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "Panchroma PLA Starlight @BBL base", + "inherits": "Panchroma PLA Starlight @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL A1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL A1 0.2 nozzle.json index c31df860c9..18c47b256a 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Temp Shift @BBL A1 0.2 nozzle", - "inherits": "Panchroma PLA Temp Shift @base", + "inherits": "Panchroma PLA Temp Shift @BBL base", "from": "system", - "setting_id": "GFSPM015_01", + "setting_id": "MhWpOISJ94dCFLkL", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL A1.json similarity index 84% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL A1.json index 7d0a259c82..8f35932204 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Temp Shift @BBL A1", - "inherits": "Panchroma PLA Temp Shift @base", + "inherits": "Panchroma PLA Temp Shift @BBL base", "from": "system", - "setting_id": "GFSPM015_00", + "setting_id": "afjWBIswJY3gc5LB", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL A1M 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL A1M 0.2 nozzle.json index e965532271..fe118e5196 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Temp Shift @BBL A1M 0.2 nozzle", - "inherits": "Panchroma PLA Temp Shift @base", + "inherits": "Panchroma PLA Temp Shift @BBL base", "from": "system", - "setting_id": "GFSPM015_03", + "setting_id": "FLjIiVwIw3hBR4zr", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL A1M.json similarity index 84% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL A1M.json index b8d390ac59..847caf796d 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Temp Shift @BBL A1M", - "inherits": "Panchroma PLA Temp Shift @base", + "inherits": "Panchroma PLA Temp Shift @BBL base", "from": "system", - "setting_id": "GFSPM015_02", + "setting_id": "FnQCzJdXUvEN6UQD", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL P1P 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL P1P 0.2 nozzle.json index 18bc4ee042..f56dcd1e1c 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Temp Shift @BBL P1P 0.2 nozzle", - "inherits": "Panchroma PLA Temp Shift @base", + "inherits": "Panchroma PLA Temp Shift @BBL base", "from": "system", - "setting_id": "GFSPM015_05", + "setting_id": "Q0sKvONnbUG681AH", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL P1P.json similarity index 84% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL P1P.json index da5f9cb944..f661d2c87c 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Temp Shift @BBL P1P", - "inherits": "Panchroma PLA Temp Shift @base", + "inherits": "Panchroma PLA Temp Shift @BBL base", "from": "system", - "setting_id": "GFSPM015_04", + "setting_id": "I85PKyUlLOUrI6PX", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL X1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL X1 0.2 nozzle.json index ca3d26546d..6e2cfc1a2f 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Temp Shift @BBL X1 0.2 nozzle", - "inherits": "Panchroma PLA Temp Shift @base", + "inherits": "Panchroma PLA Temp Shift @BBL base", "from": "system", - "setting_id": "GFSPM015_07", + "setting_id": "t8zf48odJN0uPudJ", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL X1.json similarity index 84% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL X1.json index b5c6ac4677..62a3fe9c94 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Temp Shift @BBL X1", - "inherits": "Panchroma PLA Temp Shift @base", + "inherits": "Panchroma PLA Temp Shift @BBL base", "from": "system", - "setting_id": "GFSPM015_06", + "setting_id": "BdVwwKFmYpKF3lRd", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL X1C 0.2 nozzle.json similarity index 84% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL X1C 0.2 nozzle.json index a0d88ed2a2..8d441e2155 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Temp Shift @BBL X1C 0.2 nozzle", - "inherits": "Panchroma PLA Temp Shift @base", + "inherits": "Panchroma PLA Temp Shift @BBL base", "from": "system", - "setting_id": "GFSPM015_09", + "setting_id": "XYFkKA5rrYglMvYM", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL X1C.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL X1C.json index 904a5a8989..7912a33d33 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Temp Shift @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Temp Shift @BBL X1C", - "inherits": "Panchroma PLA Temp Shift @base", + "inherits": "Panchroma PLA Temp Shift @BBL base", "from": "system", - "setting_id": "GFSPM015_08", + "setting_id": "OlYGtaCNurO3M3sg", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL base.json new file mode 100644 index 0000000000..763d8eb6ca --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Temp Shift @BBL base.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "Panchroma PLA Temp Shift @BBL base", + "inherits": "Panchroma PLA Temp Shift @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL A1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL A1 0.2 nozzle.json index 0078623ce2..76ded72324 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Translucent @BBL A1 0.2 nozzle", - "inherits": "Panchroma PLA Translucent @base", + "inherits": "Panchroma PLA Translucent @BBL base", "from": "system", - "setting_id": "GFSPM006_01", + "setting_id": "zDyzNmefpuxJCUf1", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL A1.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL A1.json index aaa1caeb72..267542b75b 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Translucent @BBL A1", - "inherits": "Panchroma PLA Translucent @base", + "inherits": "Panchroma PLA Translucent @BBL base", "from": "system", - "setting_id": "GFSPM006_00", + "setting_id": "oJpOjk6xOr69m72O", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL A1M 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL A1M 0.2 nozzle.json index f8c904ca5a..f8d9c88a56 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Translucent @BBL A1M 0.2 nozzle", - "inherits": "Panchroma PLA Translucent @base", + "inherits": "Panchroma PLA Translucent @BBL base", "from": "system", - "setting_id": "GFSPM006_03", + "setting_id": "pJn7qO8UafWUd7bK", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL A1M.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL A1M.json index af56eb9d0b..c98588964b 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Translucent @BBL A1M", - "inherits": "Panchroma PLA Translucent @base", + "inherits": "Panchroma PLA Translucent @BBL base", "from": "system", - "setting_id": "GFSPM006_02", + "setting_id": "P0oMTDXeotLr88q3", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL P1P 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL P1P 0.2 nozzle.json index d184549271..8accf85cd7 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Translucent @BBL P1P 0.2 nozzle", - "inherits": "Panchroma PLA Translucent @base", + "inherits": "Panchroma PLA Translucent @BBL base", "from": "system", - "setting_id": "GFSPM006_05", + "setting_id": "yLrxM4mMZK4Fnbix", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL P1P.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL P1P.json index 7c6352f796..121ce473fc 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Translucent @BBL P1P", - "inherits": "Panchroma PLA Translucent @base", + "inherits": "Panchroma PLA Translucent @BBL base", "from": "system", - "setting_id": "GFSPM006_04", + "setting_id": "NlLnaah4H9VBmrg5", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL X1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL X1 0.2 nozzle.json index 5e6459dab2..8740aacf3b 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Translucent @BBL X1 0.2 nozzle", - "inherits": "Panchroma PLA Translucent @base", + "inherits": "Panchroma PLA Translucent @BBL base", "from": "system", - "setting_id": "GFSPM006_07", + "setting_id": "h0XL2rQLSJDH201O", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL X1.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL X1.json index e4c5264897..e47becd271 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Translucent @BBL X1", - "inherits": "Panchroma PLA Translucent @base", + "inherits": "Panchroma PLA Translucent @BBL base", "from": "system", - "setting_id": "GFSPM006_06", + "setting_id": "jwYkduo5MDavMoAq", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL X1C 0.2 nozzle.json similarity index 84% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL X1C 0.2 nozzle.json index 7de90acf15..c97b449e17 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Translucent @BBL X1C 0.2 nozzle", - "inherits": "Panchroma PLA Translucent @base", + "inherits": "Panchroma PLA Translucent @BBL base", "from": "system", - "setting_id": "GFSPM006_09", + "setting_id": "lYVGQR5ASM1xcY5x", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL X1C.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL X1C.json index a7b9f9d960..9b96d50f32 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Translucent @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA Translucent @BBL X1C", - "inherits": "Panchroma PLA Translucent @base", + "inherits": "Panchroma PLA Translucent @BBL base", "from": "system", - "setting_id": "GFSPM006_08", + "setting_id": "8wamrzX02dIlNwyB", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL base.json new file mode 100644 index 0000000000..de3edbb787 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA Translucent @BBL base.json @@ -0,0 +1,56 @@ +{ + "type": "filament", + "name": "Panchroma PLA Translucent @BBL base", + "inherits": "Panchroma PLA Translucent @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL A1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL A1 0.2 nozzle.json index ad46ce3ca8..73bad6fa61 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA UV Shift @BBL A1 0.2 nozzle", - "inherits": "Panchroma PLA UV Shift @base", + "inherits": "Panchroma PLA UV Shift @BBL base", "from": "system", - "setting_id": "GFSPM014_01", + "setting_id": "7TCFz5BoNlzot5qI", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL A1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL A1.json index ebc5d11ea1..de81558654 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA UV Shift @BBL A1", - "inherits": "Panchroma PLA UV Shift @base", + "inherits": "Panchroma PLA UV Shift @BBL base", "from": "system", - "setting_id": "GFSPM014_00", + "setting_id": "oc0d9P8i9ayTXhbo", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL A1M 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL A1M 0.2 nozzle.json index f69f8986f1..3489fcc0a0 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA UV Shift @BBL A1M 0.2 nozzle", - "inherits": "Panchroma PLA UV Shift @base", + "inherits": "Panchroma PLA UV Shift @BBL base", "from": "system", - "setting_id": "GFSPM014_03", + "setting_id": "wWQ8UeVEjOFGNcF0", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL A1M.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL A1M.json index 2d62c7b9bd..abfa010e9e 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA UV Shift @BBL A1M", - "inherits": "Panchroma PLA UV Shift @base", + "inherits": "Panchroma PLA UV Shift @BBL base", "from": "system", - "setting_id": "GFSPM014_02", + "setting_id": "EIduHLHB0VdCzUaZ", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL P1P 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL P1P 0.2 nozzle.json index 7781c4576e..c01a00df0c 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA UV Shift @BBL P1P 0.2 nozzle", - "inherits": "Panchroma PLA UV Shift @base", + "inherits": "Panchroma PLA UV Shift @BBL base", "from": "system", - "setting_id": "GFSPM014_05", + "setting_id": "D27EcyIrV9yzFJTU", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL P1P.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL P1P.json index 795fa3ded8..22b64cd805 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA UV Shift @BBL P1P", - "inherits": "Panchroma PLA UV Shift @base", + "inherits": "Panchroma PLA UV Shift @BBL base", "from": "system", - "setting_id": "GFSPM014_04", + "setting_id": "ek4lPfBD7JS3B4rK", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL X1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL X1 0.2 nozzle.json index 2fd8082b4a..b45a366ed1 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA UV Shift @BBL X1 0.2 nozzle", - "inherits": "Panchroma PLA UV Shift @base", + "inherits": "Panchroma PLA UV Shift @BBL base", "from": "system", - "setting_id": "GFSPM014_07", + "setting_id": "HoU6Q2qUtDHDhP8L", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL X1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL X1.json index c2bc0b9eda..b0fbc37193 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA UV Shift @BBL X1", - "inherits": "Panchroma PLA UV Shift @base", + "inherits": "Panchroma PLA UV Shift @BBL base", "from": "system", - "setting_id": "GFSPM014_06", + "setting_id": "hVSsizCHzMJgGpZt", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL X1C 0.2 nozzle.json similarity index 85% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL X1C 0.2 nozzle.json index 3fa53d3985..744e3e941b 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA UV Shift @BBL X1C 0.2 nozzle", - "inherits": "Panchroma PLA UV Shift @base", + "inherits": "Panchroma PLA UV Shift @BBL base", "from": "system", - "setting_id": "GFSPM014_09", + "setting_id": "aZKuZsTTX3GQP0uE", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL X1C.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL X1C.json index db9a5a9da0..69a4e897a2 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA UV Shift @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Panchroma PLA UV Shift @BBL X1C", - "inherits": "Panchroma PLA UV Shift @base", + "inherits": "Panchroma PLA UV Shift @BBL base", "from": "system", - "setting_id": "GFSPM014_08", + "setting_id": "0PPfIX4yL8BoCdD1", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL base.json new file mode 100644 index 0000000000..a3e099410e --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Panchroma PLA UV Shift @BBL base.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "Panchroma PLA UV Shift @BBL base", + "inherits": "Panchroma PLA UV Shift @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite CosPLA @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite CosPLA @BBL A1.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/PolyLite CosPLA @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite CosPLA @BBL A1.json index b45a5cbad4..8f5acc37e9 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite CosPLA @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite CosPLA @BBL A1.json @@ -3,7 +3,7 @@ "name": "PolyLite CosPLA @BBL A1", "inherits": "PolyLite CosPLA @base", "from": "system", - "setting_id": "GFSL62_00", + "setting_id": "RZYqtQDR4zIvSrXg", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite CosPLA @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite CosPLA @BBL A1M.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/PolyLite CosPLA @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite CosPLA @BBL A1M.json index 679b39ff18..4f7eaba197 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite CosPLA @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite CosPLA @BBL A1M.json @@ -3,7 +3,7 @@ "name": "PolyLite CosPLA @BBL A1M", "inherits": "PolyLite CosPLA @base", "from": "system", - "setting_id": "GFSL62_01", + "setting_id": "yNMQPBXRPOdpkuiG", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite CosPLA @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite CosPLA @BBL P1P.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyLite CosPLA @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite CosPLA @BBL P1P.json index ef0e9ae3a6..2f5b93746f 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite CosPLA @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite CosPLA @BBL P1P.json @@ -3,7 +3,7 @@ "name": "PolyLite CosPLA @BBL P1P", "inherits": "PolyLite CosPLA @base", "from": "system", - "setting_id": "GFSL62_02", + "setting_id": "jvptdmELTscDj8ay", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite CosPLA @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite CosPLA @BBL X1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyLite CosPLA @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite CosPLA @BBL X1.json index 7442729e32..5bbf9ff1b1 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite CosPLA @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite CosPLA @BBL X1.json @@ -3,7 +3,7 @@ "name": "PolyLite CosPLA @BBL X1", "inherits": "PolyLite CosPLA @base", "from": "system", - "setting_id": "GFSL62_03", + "setting_id": "2kR4lOogidryispD", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Galaxy @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Galaxy @BBL A1.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Galaxy @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Galaxy @BBL A1.json index feee6effdb..d324c766bc 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Galaxy @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Galaxy @BBL A1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Galaxy @BBL A1", "inherits": "PolyLite PLA Galaxy @base", "from": "system", - "setting_id": "GFSL63_00", + "setting_id": "BLC6OE9zCj7LjJjp", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Galaxy @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Galaxy @BBL A1M.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Galaxy @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Galaxy @BBL A1M.json index e7e4f70f23..f87860f55d 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Galaxy @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Galaxy @BBL A1M.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Galaxy @BBL A1M", "inherits": "PolyLite PLA Galaxy @base", "from": "system", - "setting_id": "GFSL63_01", + "setting_id": "FNCJtFwvh9M7HyuM", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Galaxy @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Galaxy @BBL P1P.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Galaxy @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Galaxy @BBL P1P.json index 5c29bee1f3..ea0c64e419 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Galaxy @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Galaxy @BBL P1P.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Galaxy @BBL P1P", "inherits": "PolyLite PLA Galaxy @base", "from": "system", - "setting_id": "GFSL63_02", + "setting_id": "8BCbg87dmo5amtRg", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Galaxy @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Galaxy @BBL X1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Galaxy @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Galaxy @BBL X1.json index 5442a29906..f2dacc4ca3 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Galaxy @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Galaxy @BBL X1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Galaxy @BBL X1", "inherits": "PolyLite PLA Galaxy @base", "from": "system", - "setting_id": "GFSL63_03", + "setting_id": "2kfI9rkYF93LpNRd", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Glow @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Glow @BBL A1.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Glow @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Glow @BBL A1.json index 3c9a455cae..be691b2ace 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Glow @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Glow @BBL A1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Glow @BBL A1", "inherits": "PolyLite PLA Glow @base", "from": "system", - "setting_id": "GFSL64_00", + "setting_id": "qn7H5PN0KgMm8Ee6", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Glow @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Glow @BBL A1M.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Glow @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Glow @BBL A1M.json index 205722c3d2..853fce1442 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Glow @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Glow @BBL A1M.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Glow @BBL A1M", "inherits": "PolyLite PLA Glow @base", "from": "system", - "setting_id": "GFSL64_01", + "setting_id": "IVp9am7BOL6CAN5z", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Glow @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Glow @BBL P1P.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Glow @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Glow @BBL P1P.json index 2c67c2098b..c009583f3d 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Glow @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Glow @BBL P1P.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Glow @BBL P1P", "inherits": "PolyLite PLA Glow @base", "from": "system", - "setting_id": "GFSL64_02", + "setting_id": "RHZanpy7EGdGAtF3", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Glow @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Glow @BBL X1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Glow @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Glow @BBL X1.json index 932e217ee5..066db3d6e6 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Glow @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Glow @BBL X1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Glow @BBL X1", "inherits": "PolyLite PLA Glow @base", "from": "system", - "setting_id": "GFSL64_03", + "setting_id": "Awxx4RSqrQAIhEFv", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Luminous @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Luminous @BBL A1.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Luminous @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Luminous @BBL A1.json index 7b9b747ad1..53b45dbd2f 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Luminous @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Luminous @BBL A1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Luminous @BBL A1", "inherits": "PolyLite PLA Luminous @base", "from": "system", - "setting_id": "GFSL65_00", + "setting_id": "97DOrlNHiPMMGWR5", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Luminous @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Luminous @BBL A1M.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Luminous @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Luminous @BBL A1M.json index f6a84a52cb..d756a5516d 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Luminous @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Luminous @BBL A1M.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Luminous @BBL A1M", "inherits": "PolyLite PLA Luminous @base", "from": "system", - "setting_id": "GFSL65_01", + "setting_id": "LOv2b9kaKYXUJIrJ", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Luminous @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Luminous @BBL P1P.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Luminous @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Luminous @BBL P1P.json index c89622dd47..147fa2c3f2 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Luminous @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Luminous @BBL P1P.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Luminous @BBL P1P", "inherits": "PolyLite PLA Luminous @base", "from": "system", - "setting_id": "GFSL65_02", + "setting_id": "2wls9L4EqRFiGypv", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Luminous @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Luminous @BBL X1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Luminous @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Luminous @BBL X1.json index d9cca17665..4795f26970 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Luminous @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Luminous @BBL X1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Luminous @BBL X1", "inherits": "PolyLite PLA Luminous @base", "from": "system", - "setting_id": "GFSL65_03", + "setting_id": "gp70NZoz5qCgHz5k", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Neon @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Neon @BBL A1.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Neon @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Neon @BBL A1.json index c54ed61ca9..5636638102 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Neon @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Neon @BBL A1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Neon @BBL A1", "inherits": "PolyLite PLA Neon @base", "from": "system", - "setting_id": "GFSL66_00", + "setting_id": "hwWKjnndkCU3SlEZ", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Neon @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Neon @BBL A1M.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Neon @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Neon @BBL A1M.json index b324cfd9bf..52c2899c98 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Neon @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Neon @BBL A1M.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Neon @BBL A1M", "inherits": "PolyLite PLA Neon @base", "from": "system", - "setting_id": "GFSL66_01", + "setting_id": "CA5E5Q1TA87iSWzO", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Neon @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Neon @BBL P1P.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Neon @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Neon @BBL P1P.json index 79e994ecc4..a52ec2c4e7 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Neon @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Neon @BBL P1P.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Neon @BBL P1P", "inherits": "PolyLite PLA Neon @base", "from": "system", - "setting_id": "GFSL66_02", + "setting_id": "N5UTXT19kDfbXFzU", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Neon @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Neon @BBL X1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Neon @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Neon @BBL X1.json index 6cc2023b3b..d915656d02 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Neon @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Neon @BBL X1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Neon @BBL X1", "inherits": "PolyLite PLA Neon @base", "from": "system", - "setting_id": "GFSL66_03", + "setting_id": "sUxGOFvUcbomrJPf", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL A1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL A1 0.2 nozzle.json index 0ff17288b1..5ffa8cadb5 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "PolyLite PLA Pro @BBL A1 0.2 nozzle", - "inherits": "PolyLite PLA Pro @base", + "inherits": "PolyLite PLA Pro @BBL base", "from": "system", - "setting_id": "GFSPM019_01", + "setting_id": "7nuAyrO27zNpg9wf", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL A1.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL A1.json index ec9d964a24..a84d5e6e4a 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "PolyLite PLA Pro @BBL A1", - "inherits": "PolyLite PLA Pro @base", + "inherits": "PolyLite PLA Pro @BBL base", "from": "system", - "setting_id": "GFSPM019_00", + "setting_id": "BHoc6AnMAH5K74Aj", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL A1M 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL A1M 0.2 nozzle.json index f054661b8a..4c40ae1a7f 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "PolyLite PLA Pro @BBL A1M 0.2 nozzle", - "inherits": "PolyLite PLA Pro @base", + "inherits": "PolyLite PLA Pro @BBL base", "from": "system", - "setting_id": "GFSPM019_03", + "setting_id": "dDZvDBIEzJ09HaIY", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL A1M.json similarity index 84% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL A1M.json index b2cec16452..6878b2883b 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "PolyLite PLA Pro @BBL A1M", - "inherits": "PolyLite PLA Pro @base", + "inherits": "PolyLite PLA Pro @BBL base", "from": "system", - "setting_id": "GFSPM019_02", + "setting_id": "tvVT77ReLWwXVJ94", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL P1P 0.2 nozzle.json similarity index 80% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL P1P 0.2 nozzle.json index f68cec25ac..6feb074149 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "PolyLite PLA Pro @BBL P1P 0.2 nozzle", - "inherits": "PolyLite PLA Pro @base", + "inherits": "PolyLite PLA Pro @BBL base", "from": "system", - "setting_id": "GFSPM019_05", + "setting_id": "DQXQkdBzvuKYGgwy", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL P1P.json similarity index 84% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL P1P.json index ebbcb11a4d..23d88dc5e3 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "PolyLite PLA Pro @BBL P1P", - "inherits": "PolyLite PLA Pro @base", + "inherits": "PolyLite PLA Pro @BBL base", "from": "system", - "setting_id": "GFSPM019_04", + "setting_id": "4UouP8fbyytuGEh9", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL X1 0.2 nozzle.json similarity index 80% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL X1 0.2 nozzle.json index 5c160455d3..28c725b198 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "PolyLite PLA Pro @BBL X1 0.2 nozzle", - "inherits": "PolyLite PLA Pro @base", + "inherits": "PolyLite PLA Pro @BBL base", "from": "system", - "setting_id": "GFSPM019_07", + "setting_id": "LhJeeHkaASQEVjTn", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL X1.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL X1.json index 1edee961a4..ba78098938 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "PolyLite PLA Pro @BBL X1", - "inherits": "PolyLite PLA Pro @base", + "inherits": "PolyLite PLA Pro @BBL base", "from": "system", - "setting_id": "GFSPM019_06", + "setting_id": "YcS2HQfu2ryGKNjU", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL X1C 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL X1C 0.2 nozzle.json index 66a6b1361b..5bda0d2371 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "PolyLite PLA Pro @BBL X1C 0.2 nozzle", - "inherits": "PolyLite PLA Pro @base", + "inherits": "PolyLite PLA Pro @BBL base", "from": "system", - "setting_id": "GFSPM019_09", + "setting_id": "ZV4GAHpitfQoTpCI", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL X1C.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL X1C.json index 95e83272ee..c8d422f0e9 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Pro @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "PolyLite PLA Pro @BBL X1C", - "inherits": "PolyLite PLA Pro @base", + "inherits": "PolyLite PLA Pro @BBL base", "from": "system", - "setting_id": "GFSPM019_08", + "setting_id": "4srNqDfqtDziN7qV", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL base.json new file mode 100644 index 0000000000..ed50abf183 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Pro @BBL base.json @@ -0,0 +1,56 @@ +{ + "type": "filament", + "name": "PolyLite PLA Pro @BBL base", + "inherits": "PolyLite PLA Pro @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Starlight @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Starlight @BBL A1.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Starlight @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Starlight @BBL A1.json index 8e1425278b..5d52618010 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Starlight @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Starlight @BBL A1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Starlight @BBL A1", "inherits": "PolyLite PLA Starlight @base", "from": "system", - "setting_id": "GFSL67_00", + "setting_id": "x3HpVqx9XW9lbRqW", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Starlight @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Starlight @BBL A1M.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Starlight @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Starlight @BBL A1M.json index ecb482cdcb..35b02ad63b 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Starlight @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Starlight @BBL A1M.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Starlight @BBL A1M", "inherits": "PolyLite PLA Starlight @base", "from": "system", - "setting_id": "GFSL67_01", + "setting_id": "s9Bt0isdVCbdSW0F", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Starlight @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Starlight @BBL P1P.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Starlight @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Starlight @BBL P1P.json index 0f7210a5cc..a863663828 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Starlight @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Starlight @BBL P1P.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Starlight @BBL P1P", "inherits": "PolyLite PLA Starlight @base", "from": "system", - "setting_id": "GFSL67_02", + "setting_id": "00qUK2jehjtj3TGx", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Starlight @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Starlight @BBL X1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Starlight @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Starlight @BBL X1.json index 88d436c526..3ba8df3c03 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Starlight @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Starlight @BBL X1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Starlight @BBL X1", "inherits": "PolyLite PLA Starlight @base", "from": "system", - "setting_id": "GFSL67_03", + "setting_id": "DKJZNSTf5GsaaIGh", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Translucent @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Translucent @BBL A1.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Translucent @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Translucent @BBL A1.json index 6664212a43..ddbfc08f77 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Translucent @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Translucent @BBL A1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Translucent @BBL A1", "inherits": "PolyLite PLA Translucent @base", "from": "system", - "setting_id": "GFSL68_00", + "setting_id": "dHceYRjzcwzLsj0x", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Translucent @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Translucent @BBL A1M.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Translucent @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Translucent @BBL A1M.json index 7b20e40ce1..61dbdfaaf9 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Translucent @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Translucent @BBL A1M.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Translucent @BBL A1M", "inherits": "PolyLite PLA Translucent @base", "from": "system", - "setting_id": "GFSL68_01", + "setting_id": "OdzH7quFslZrWu4D", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Translucent @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Translucent @BBL P1P.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Translucent @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Translucent @BBL P1P.json index f3f3198158..3c990bc685 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Translucent @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Translucent @BBL P1P.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Translucent @BBL P1P", "inherits": "PolyLite PLA Translucent @base", "from": "system", - "setting_id": "GFSL68_02", + "setting_id": "JRp3eQU5ss6L3c1q", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Translucent @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Translucent @BBL X1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyLite PLA Translucent @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Translucent @BBL X1.json index f67db0a271..d3df5df701 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA Translucent @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyLite PLA Translucent @BBL X1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Translucent @BBL X1", "inherits": "PolyLite PLA Translucent @base", "from": "system", - "setting_id": "GFSL68_03", + "setting_id": "bb3M8zXSY90Q1itv", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA Marble @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA Marble @BBL A1.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/PolyTerra PLA Marble @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA Marble @BBL A1.json index 9bda6808d9..15a9b254cb 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA Marble @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA Marble @BBL A1.json @@ -3,7 +3,7 @@ "name": "PolyTerra PLA Marble @BBL A1", "inherits": "PolyTerra PLA Marble @base", "from": "system", - "setting_id": "GFSL69_00", + "setting_id": "Ni47TgOKsSs85PJE", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA Marble @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA Marble @BBL A1M.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyTerra PLA Marble @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA Marble @BBL A1M.json index 721e0b3d3d..6b8267439f 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA Marble @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA Marble @BBL A1M.json @@ -3,7 +3,7 @@ "name": "PolyTerra PLA Marble @BBL A1M", "inherits": "PolyTerra PLA Marble @base", "from": "system", - "setting_id": "GFSL69_01", + "setting_id": "Kson0GJmt8ntF4YI", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA Marble @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA Marble @BBL P1P.json similarity index 90% rename from resources/profiles/BBL/filament/Polymaker/PolyTerra PLA Marble @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA Marble @BBL P1P.json index 5dedafd5ff..55c7b5303f 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA Marble @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA Marble @BBL P1P.json @@ -3,7 +3,7 @@ "name": "PolyTerra PLA Marble @BBL P1P", "inherits": "PolyTerra PLA Marble @base", "from": "system", - "setting_id": "GFSL69_02", + "setting_id": "aWpbrCSSX38lHCnA", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA Marble @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA Marble @BBL X1.json similarity index 91% rename from resources/profiles/BBL/filament/Polymaker/PolyTerra PLA Marble @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA Marble @BBL X1.json index 8a47922219..e8f9e60ac7 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA Marble @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA Marble @BBL X1.json @@ -3,7 +3,7 @@ "name": "PolyTerra PLA Marble @BBL X1", "inherits": "PolyTerra PLA Marble @base", "from": "system", - "setting_id": "GFSL69_03", + "setting_id": "O7XwxOsxwFvLmnpP", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA+ @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA+ @BBL A1.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/PolyTerra PLA+ @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA+ @BBL A1.json index 08ace4c6a5..d425ce94e2 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA+ @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA+ @BBL A1.json @@ -3,7 +3,7 @@ "name": "PolyTerra PLA+ @BBL A1", "inherits": "PolyTerra PLA+ @base", "from": "system", - "setting_id": "GFSL70_00", + "setting_id": "dUlbwjCqWtjlCvnm", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA+ @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA+ @BBL A1M.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/PolyTerra PLA+ @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA+ @BBL A1M.json index 86f3ab3ffb..956956002f 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA+ @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA+ @BBL A1M.json @@ -3,7 +3,7 @@ "name": "PolyTerra PLA+ @BBL A1M", "inherits": "PolyTerra PLA+ @base", "from": "system", - "setting_id": "GFSL70_01", + "setting_id": "0JDQqqSmuHYSyw96", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA+ @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA+ @BBL P1P.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyTerra PLA+ @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA+ @BBL P1P.json index dd09d09637..3207cd79a9 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA+ @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA+ @BBL P1P.json @@ -3,7 +3,7 @@ "name": "PolyTerra PLA+ @BBL P1P", "inherits": "PolyTerra PLA+ @base", "from": "system", - "setting_id": "GFSL70_02", + "setting_id": "0OM8MaObnp4YapKh", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA+ @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA+ @BBL X1.json similarity index 89% rename from resources/profiles/BBL/filament/Polymaker/PolyTerra PLA+ @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA+ @BBL X1.json index a28a8d30d8..17067e580a 100644 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA+ @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/PolyTerra PLA+ @BBL X1.json @@ -3,7 +3,7 @@ "name": "PolyTerra PLA+ @BBL X1", "inherits": "PolyTerra PLA+ @base", "from": "system", - "setting_id": "GFSL70_03", + "setting_id": "g8UtZo9rzucrDDRO", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL A1 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL A1 0.2 nozzle.json index ed5963f237..5512413504 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA @BBL A1 0.2 nozzle", - "inherits": "Polymaker HT-PLA @base", + "inherits": "Polymaker HT-PLA @BBL base", "from": "system", - "setting_id": "GFSPM017_01", + "setting_id": "slYmT9dA3LLqD0be", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL A1.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL A1.json index 1b56b76099..f1bf555ba4 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA @BBL A1", - "inherits": "Polymaker HT-PLA @base", + "inherits": "Polymaker HT-PLA @BBL base", "from": "system", - "setting_id": "GFSPM017_00", + "setting_id": "zVgRM5YBqLHPK4GW", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL A1M 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL A1M 0.2 nozzle.json index 77c6eb8c4f..dc1e605560 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA @BBL A1M 0.2 nozzle", - "inherits": "Polymaker HT-PLA @base", + "inherits": "Polymaker HT-PLA @BBL base", "from": "system", - "setting_id": "GFSPM017_03", + "setting_id": "jsAUYwGfSOhSbD4j", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL A1M.json similarity index 84% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL A1M.json index d2658cdaaf..8b143fb54c 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA @BBL A1M", - "inherits": "Polymaker HT-PLA @base", + "inherits": "Polymaker HT-PLA @BBL base", "from": "system", - "setting_id": "GFSPM017_02", + "setting_id": "wu8GY5oLKYeRmTBz", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL P1P 0.2 nozzle.json similarity index 80% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL P1P 0.2 nozzle.json index a17c2cca66..b7601df909 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA @BBL P1P 0.2 nozzle", - "inherits": "Polymaker HT-PLA @base", + "inherits": "Polymaker HT-PLA @BBL base", "from": "system", - "setting_id": "GFSPM017_05", + "setting_id": "i9pO3z5aKKpG2Bzx", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL P1P.json similarity index 84% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL P1P.json index 249eb1f3be..0482c25ee3 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA @BBL P1P", - "inherits": "Polymaker HT-PLA @base", + "inherits": "Polymaker HT-PLA @BBL base", "from": "system", - "setting_id": "GFSPM017_04", + "setting_id": "AnMfPI9uXHGmULQB", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL X1 0.2 nozzle.json similarity index 80% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL X1 0.2 nozzle.json index e5480765e3..28254af5ba 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA @BBL X1 0.2 nozzle", - "inherits": "Polymaker HT-PLA @base", + "inherits": "Polymaker HT-PLA @BBL base", "from": "system", - "setting_id": "GFSPM017_07", + "setting_id": "Oc91jGuSipSzgUfJ", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL X1.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL X1.json index 2e94b04dc7..bb1dde93c6 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA @BBL X1", - "inherits": "Polymaker HT-PLA @base", + "inherits": "Polymaker HT-PLA @BBL base", "from": "system", - "setting_id": "GFSPM017_06", + "setting_id": "lHSGRJDnVnktPC00", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL X1C 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL X1C 0.2 nozzle.json index 1f60d42cc1..e236a3d94e 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA @BBL X1C 0.2 nozzle", - "inherits": "Polymaker HT-PLA @base", + "inherits": "Polymaker HT-PLA @BBL base", "from": "system", - "setting_id": "GFSPM017_09", + "setting_id": "MTp1xeVFrOKH0i0c", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL X1C.json similarity index 88% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL X1C.json index 04257c17e7..09bf02b13f 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA @BBL X1C", - "inherits": "Polymaker HT-PLA @base", + "inherits": "Polymaker HT-PLA @BBL base", "from": "system", - "setting_id": "GFSPM017_08", + "setting_id": "2GENTxe0e6vil9B1", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL base.json new file mode 100644 index 0000000000..e9ffeb7382 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA @BBL base.json @@ -0,0 +1,65 @@ +{ + "type": "filament", + "name": "Polymaker HT-PLA @BBL base", + "inherits": "Polymaker HT-PLA @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "24" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL A1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL A1 0.2 nozzle.json similarity index 81% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL A1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL A1 0.2 nozzle.json index 5bdd8b529b..6e04d7cd01 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL A1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL A1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA-GF @BBL A1 0.2 nozzle", - "inherits": "Polymaker HT-PLA-GF @base", + "inherits": "Polymaker HT-PLA-GF @BBL base", "from": "system", - "setting_id": "GFSPM018_01", + "setting_id": "kZzdx6ZKazTMyAFO", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL A1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL A1.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL A1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL A1.json index 042880d506..e4fb10f2cb 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL A1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL A1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA-GF @BBL A1", - "inherits": "Polymaker HT-PLA-GF @base", + "inherits": "Polymaker HT-PLA-GF @BBL base", "from": "system", - "setting_id": "GFSPM018_00", + "setting_id": "5utdPhp0IJwPR4UM", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL A1M 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL A1M 0.2 nozzle.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL A1M 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL A1M 0.2 nozzle.json index 3a67107ed5..2bd90b6671 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL A1M 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA-GF @BBL A1M 0.2 nozzle", - "inherits": "Polymaker HT-PLA-GF @base", + "inherits": "Polymaker HT-PLA-GF @BBL base", "from": "system", - "setting_id": "GFSPM018_03", + "setting_id": "BWfRU15xATzKPSDq", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL A1M.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL A1M.json similarity index 84% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL A1M.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL A1M.json index e3dff1d4fc..14d0860498 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL A1M.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL A1M.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA-GF @BBL A1M", - "inherits": "Polymaker HT-PLA-GF @base", + "inherits": "Polymaker HT-PLA-GF @BBL base", "from": "system", - "setting_id": "GFSPM018_02", + "setting_id": "cmE8Id8aqjJnEQOC", "instantiation": "true", "compatible_printers": [ "Bambu Lab A1 mini 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL P1P 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL P1P 0.2 nozzle.json similarity index 80% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL P1P 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL P1P 0.2 nozzle.json index a77c921c4f..6230d2266f 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL P1P 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA-GF @BBL P1P 0.2 nozzle", - "inherits": "Polymaker HT-PLA-GF @base", + "inherits": "Polymaker HT-PLA-GF @BBL base", "from": "system", - "setting_id": "GFSPM018_05", + "setting_id": "qRNDKVWDQjvhsbRk", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL P1P.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL P1P.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL P1P.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL P1P.json index 4ac3029cc8..432b4540b9 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL P1P.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL P1P.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA-GF @BBL P1P", - "inherits": "Polymaker HT-PLA-GF @base", + "inherits": "Polymaker HT-PLA-GF @BBL base", "from": "system", - "setting_id": "GFSPM018_04", + "setting_id": "WQ9Ie36OxVWVMZTs", "instantiation": "true", "compatible_printers": [ "Bambu Lab P1P 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL X1 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL X1 0.2 nozzle.json similarity index 80% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL X1 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL X1 0.2 nozzle.json index 990f68be15..6ac4908f51 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL X1 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL X1 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA-GF @BBL X1 0.2 nozzle", - "inherits": "Polymaker HT-PLA-GF @base", + "inherits": "Polymaker HT-PLA-GF @BBL base", "from": "system", - "setting_id": "GFSPM018_07", + "setting_id": "VVzPI5haSYrbQSwt", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.2 nozzle" diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL X1.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL X1.json similarity index 82% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL X1.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL X1.json index d8052b99a8..3d02b62c3b 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL X1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL X1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA-GF @BBL X1", - "inherits": "Polymaker HT-PLA-GF @base", + "inherits": "Polymaker HT-PLA-GF @BBL base", "from": "system", - "setting_id": "GFSPM018_06", + "setting_id": "Zd7H1E7L2dB9wec4", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL X1C 0.2 nozzle.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL X1C 0.2 nozzle.json similarity index 83% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL X1C 0.2 nozzle.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL X1C 0.2 nozzle.json index c4c95ccca8..37e860c8a1 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL X1C 0.2 nozzle.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA-GF @BBL X1C 0.2 nozzle", - "inherits": "Polymaker HT-PLA-GF @base", + "inherits": "Polymaker HT-PLA-GF @BBL base", "from": "system", - "setting_id": "GFSPM018_09", + "setting_id": "LdFkOELESgEZ2hxP", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.2 nozzle", diff --git a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL X1C.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL X1C.json similarity index 87% rename from resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL X1C.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL X1C.json index 0d12e2b887..212387a20d 100644 --- a/resources/profiles/BBL/filament/Polymaker/Polymaker HT-PLA-GF @BBL X1C.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL X1C.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "Polymaker HT-PLA-GF @BBL X1C", - "inherits": "Polymaker HT-PLA-GF @base", + "inherits": "Polymaker HT-PLA-GF @BBL base", "from": "system", - "setting_id": "GFSPM018_08", + "setting_id": "Y9702HoKQefN1etQ", "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL base.json new file mode 100644 index 0000000000..55f7b14d94 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/BBL/Polymaker HT-PLA-GF @BBL base.json @@ -0,0 +1,71 @@ +{ + "type": "filament", + "name": "Polymaker HT-PLA-GF @BBL base", + "inherits": "Polymaker HT-PLA-GF @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "24" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF10 @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA12-CF10 @base.json similarity index 54% rename from resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF10 @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA12-CF10 @base.json index 674d5acb38..299b26856b 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF10 @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA12-CF10 @base.json @@ -73,5 +73,50 @@ ], "textured_plate_temp_initial_layer": [ "40" + ], + "activate_air_filtration": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; Filament gcode\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "400" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_time": [ + "18" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "165" + ], + "filament_dev_drying_cooling_temperature": [ + "150" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_drying_softening_temperature": [ + "150" ] } diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF20 @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-CF20 @base.json similarity index 54% rename from resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF20 @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-CF20 @base.json index f28ee154b8..6b12a9a40e 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF20 @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-CF20 @base.json @@ -70,5 +70,50 @@ ], "textured_plate_temp_initial_layer": [ "40" + ], + "activate_air_filtration": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; Filament gcode\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "400" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_time": [ + "18" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "165" + ], + "filament_dev_drying_cooling_temperature": [ + "150" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_drying_softening_temperature": [ + "150" ] } diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF25 @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-GF25 @base.json similarity index 54% rename from resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF25 @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-GF25 @base.json index 426e4175db..6160c94714 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF25 @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-GF25 @base.json @@ -73,5 +73,50 @@ ], "textured_plate_temp_initial_layer": [ "40" + ], + "activate_air_filtration": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; Filament gcode\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "400" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_time": [ + "18" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "165" + ], + "filament_dev_drying_cooling_temperature": [ + "150" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_drying_softening_temperature": [ + "150" ] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA612-CF15 @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA612-CF15 @base.json new file mode 100644 index 0000000000..9e7c30dc14 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA612-CF15 @base.json @@ -0,0 +1,104 @@ +{ + "type": "filament", + "name": "Fiberon PA612-CF15 @base", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "OFcBl0nJ", + "instantiation": "false", + "bed_type": [ + "Cool Plate" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "94.99" + ], + "filament_density": [ + "1.03" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_type": [ + "PA-CF" + ], + "filament_vendor": [ + "Polymaker" + ], + "full_fan_speed_layer": [ + "2" + ], + "nozzle_temperature_range_low": [ + "250" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "slow_down_min_speed": [ + "10" + ], + "temperature_vitrification": [ + "206.2" + ], + "activate_air_filtration": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; Filament gcode\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "400" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_time": [ + "18" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "165" + ], + "filament_dev_drying_cooling_temperature": [ + "150" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_drying_softening_temperature": [ + "150" + ] +} diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF17 @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PET-CF17 @base.json similarity index 50% rename from resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF17 @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PET-CF17 @base.json index d55b7d2daf..f56f885917 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF17 @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PET-CF17 @base.json @@ -82,5 +82,51 @@ ], "textured_plate_temp_initial_layer": [ "70" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S255\n{endif};Prevent PLA from jamming\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" ] } diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF08 @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-rCF08 @base.json similarity index 54% rename from resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF08 @base.json rename to resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-rCF08 @base.json index fe8eca06cb..08e7989dbc 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF08 @base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-rCF08 @base.json @@ -97,5 +97,51 @@ ], "textured_plate_temp_initial_layer": [ "70" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S255\n{endif};Prevent PLA from jamming\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" ] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite CosPLA @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite CosPLA @base.json new file mode 100644 index 0000000000..a0ed46734e --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite CosPLA @base.json @@ -0,0 +1,117 @@ +{ + "type": "filament", + "name": "PolyLite CosPLA @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFJgijky", + "instantiation": "false", + "bed_type": [ + "Cool Plate" + ], + "cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cost": [ + "20.99" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_vendor": [ + "Polymaker" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "overhang_fan_speed": [ + "75" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "5" + ], + "temperature_vitrification": [ + "59" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "filament_type": [ + "PLA" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Galaxy @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Galaxy @base.json new file mode 100644 index 0000000000..3dbf49779f --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Galaxy @base.json @@ -0,0 +1,114 @@ +{ + "type": "filament", + "name": "PolyLite PLA Galaxy @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFvyB0Bz", + "instantiation": "false", + "bed_type": [ + "Cool Plate" + ], + "cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.17" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_vendor": [ + "Polymaker" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "overhang_fan_speed": [ + "75" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "5" + ], + "temperature_vitrification": [ + "61" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "filament_type": [ + "PLA" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Glow @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Glow @base.json new file mode 100644 index 0000000000..fd598973b3 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Glow @base.json @@ -0,0 +1,114 @@ +{ + "type": "filament", + "name": "PolyLite PLA Glow @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OF5umxxT", + "instantiation": "false", + "bed_type": [ + "Cool Plate" + ], + "cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.17" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_vendor": [ + "Polymaker" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "overhang_fan_speed": [ + "75" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "5" + ], + "temperature_vitrification": [ + "61" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "filament_type": [ + "PLA" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Luminous @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Luminous @base.json new file mode 100644 index 0000000000..e4c4679b13 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Luminous @base.json @@ -0,0 +1,114 @@ +{ + "type": "filament", + "name": "PolyLite PLA Luminous @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFBoSWxb", + "instantiation": "false", + "bed_type": [ + "Cool Plate" + ], + "cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.17" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_vendor": [ + "Polymaker" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "overhang_fan_speed": [ + "75" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "5" + ], + "temperature_vitrification": [ + "61" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "filament_type": [ + "PLA" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Neon @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Neon @base.json new file mode 100644 index 0000000000..df73135660 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Neon @base.json @@ -0,0 +1,114 @@ +{ + "type": "filament", + "name": "PolyLite PLA Neon @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFitS8al", + "instantiation": "false", + "bed_type": [ + "Cool Plate" + ], + "cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.17" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_vendor": [ + "Polymaker" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "overhang_fan_speed": [ + "75" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "5" + ], + "temperature_vitrification": [ + "61" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "filament_type": [ + "PLA" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Starlight @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Starlight @base.json new file mode 100644 index 0000000000..467b3e5083 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Starlight @base.json @@ -0,0 +1,114 @@ +{ + "type": "filament", + "name": "PolyLite PLA Starlight @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFIxOuOu", + "instantiation": "false", + "bed_type": [ + "Cool Plate" + ], + "cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.17" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_vendor": [ + "Polymaker" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "overhang_fan_speed": [ + "75" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "5" + ], + "temperature_vitrification": [ + "61" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "filament_type": [ + "PLA" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Translucent @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Translucent @base.json new file mode 100644 index 0000000000..8a03d118c7 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Translucent @base.json @@ -0,0 +1,114 @@ +{ + "type": "filament", + "name": "PolyLite PLA Translucent @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFy02QHU", + "instantiation": "false", + "bed_type": [ + "Cool Plate" + ], + "cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.17" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_vendor": [ + "Polymaker" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "overhang_fan_speed": [ + "75" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "5" + ], + "temperature_vitrification": [ + "61" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "filament_type": [ + "PLA" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA Marble @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA Marble @base.json new file mode 100644 index 0000000000..470a945b3a --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA Marble @base.json @@ -0,0 +1,123 @@ +{ + "type": "filament", + "name": "PolyTerra PLA Marble @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFxe4rXr", + "instantiation": "false", + "bed_type": [ + "Cool Plate" + ], + "cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cost": [ + "21.99" + ], + "filament_density": [ + "1.37" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "22" + ], + "filament_vendor": [ + "Polymaker" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "overhang_fan_speed": [ + "75" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "5" + ], + "temperature_vitrification": [ + "61" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "filament_type": [ + "PLA" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA+ @base.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA+ @base.json new file mode 100644 index 0000000000..ac351462b1 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA+ @base.json @@ -0,0 +1,117 @@ +{ + "type": "filament", + "name": "PolyTerra PLA+ @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFEjbwqG", + "instantiation": "false", + "bed_type": [ + "Cool Plate" + ], + "cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cost": [ + "20.99" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_vendor": [ + "Polymaker" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "overhang_fan_speed": [ + "75" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "5" + ], + "temperature_vitrification": [ + "59" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "filament_type": [ + "PLA" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic ABS @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic ABS @BBL base.json new file mode 100644 index 0000000000..d4a694e968 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic ABS @BBL base.json @@ -0,0 +1,82 @@ +{ + "type": "filament", + "name": "Generic ABS @BBL base", + "inherits": "fdm_filament_abs", + "from": "system", + "instantiation": "false", + "activate_air_filtration": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "eng_plate_temp": [ + "90" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "filament_adhesiveness_category": [ + "200" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "90" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "80", + "65", + "75" + ], + "filament_dev_ams_drying_time": [ + "12", + "8.0", + "12", + "8.0" + ], + "filament_dev_drying_cooling_temperature": [ + "75" + ], + "filament_dev_drying_softening_temperature": [ + "80" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_start_gcode": [ + "; Filament gcode\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "nozzle_temperature": [ + "270" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "100" + ], + "textured_plate_temp": [ + "90" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PA @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PA @BBL base.json new file mode 100644 index 0000000000..87e9176216 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PA @BBL base.json @@ -0,0 +1,88 @@ +{ + "type": "filament", + "name": "Generic PA @BBL base", + "inherits": "fdm_filament_pa", + "from": "system", + "instantiation": "false", + "activate_air_filtration": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "65" + ], + "fan_max_speed": [ + "85" + ], + "fan_min_speed": [ + "40" + ], + "filament_adhesiveness_category": [ + "400" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "90" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "80", + "65", + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_time": [ + "18" + ], + "filament_dev_drying_cooling_temperature": [ + "65" + ], + "filament_dev_drying_softening_temperature": [ + "85" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_start_gcode": [ + "; Filament gcode\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "95" + ], + "overhang_fan_threshold": [ + "10%" + ], + "required_nozzle_HRC": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PA-CF @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PA-CF @BBL base.json new file mode 100644 index 0000000000..27a6bcc8fe --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PA-CF @BBL base.json @@ -0,0 +1,85 @@ +{ + "type": "filament", + "name": "Generic PA-CF @BBL base", + "inherits": "fdm_filament_pa", + "from": "system", + "instantiation": "false", + "activate_air_filtration": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_adhesiveness_category": [ + "400" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "165" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "85" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_time": [ + "18" + ], + "filament_dev_drying_cooling_temperature": [ + "150" + ], + "filament_dev_drying_softening_temperature": [ + "150" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_start_gcode": [ + "; Filament gcode\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" + ], + "full_fan_speed_layer": [ + "2" + ], + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "170" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PC @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PC @BBL base.json new file mode 100644 index 0000000000..d979d07df1 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PC @BBL base.json @@ -0,0 +1,52 @@ +{ + "type": "filament", + "name": "Generic PC @BBL base", + "inherits": "fdm_filament_pc", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "500" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "105" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "80", + "65", + "80" + ], + "filament_dev_ams_drying_time": [ + "12", + "8.0", + "12", + "8.0" + ], + "filament_dev_drying_cooling_temperature": [ + "90" + ], + "filament_dev_drying_softening_temperature": [ + "90" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_start_gcode": [ + "; Filament gcode\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PETG @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PETG @BBL base.json new file mode 100644 index 0000000000..a65e4d08bc --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PETG @BBL base.json @@ -0,0 +1,107 @@ +{ + "type": "filament", + "name": "Generic PETG @BBL base", + "inherits": "fdm_filament_pet", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "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}" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PETG-CF @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PETG-CF @BBL base.json new file mode 100644 index 0000000000..8349f1f552 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PETG-CF @BBL base.json @@ -0,0 +1,113 @@ +{ + "type": "filament", + "name": "Generic PETG-CF @BBL base", + "inherits": "Generic PETG-CF @base", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "0" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_cost": [ + "34.99" + ], + "filament_density": [ + "1.25" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "75" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "80" + ], + "filament_dev_drying_cooling_temperature": [ + "55" + ], + "filament_dev_drying_softening_temperature": [ + "60" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "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}" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "required_nozzle_HRC": [ + "40" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PLA @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PLA @BBL base.json new file mode 100644 index 0000000000..75bd53937d --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PLA @BBL base.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "Generic PLA @BBL base", + "inherits": "fdm_filament_pla", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PLA High Speed @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PLA High Speed @BBL base.json new file mode 100644 index 0000000000..d25b8b2972 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PLA High Speed @BBL base.json @@ -0,0 +1,62 @@ +{ + "type": "filament", + "name": "Generic PLA High Speed @BBL base", + "inherits": "fdm_filament_pla", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PLA Silk @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PLA Silk @BBL base.json new file mode 100644 index 0000000000..15a73adc83 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PLA Silk @BBL base.json @@ -0,0 +1,65 @@ +{ + "type": "filament", + "name": "Generic PLA Silk @BBL base", + "inherits": "fdm_filament_pla", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PLA-CF @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PLA-CF @BBL base.json new file mode 100644 index 0000000000..0f1f98fe3d --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic PLA-CF @BBL base.json @@ -0,0 +1,83 @@ +{ + "type": "filament", + "name": "Generic PLA-CF @BBL base", + "inherits": "fdm_filament_pla", + "from": "system", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "0" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1", + "0" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "70" + ], + "filament_dev_drying_cooling_temperature": [ + "45" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_flow_ratio": [ + "0.95" + ], + "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" + ], + "required_nozzle_HRC": [ + "40" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_layer_time": [ + "7" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "50" + ], + "supertack_plate_temp_initial_layer": [ + "50" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic TPU @BBL base.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic TPU @BBL base.json new file mode 100644 index 0000000000..37ca736246 --- /dev/null +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/Generic TPU @BBL base.json @@ -0,0 +1,49 @@ +{ + "type": "filament", + "name": "Generic TPU @BBL base", + "inherits": "fdm_filament_tpu", + "from": "system", + "instantiation": "false", + "close_additional_fan_first_x_layers": [ + "3" + ], + "filament_adhesiveness_category": [ + "600" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_dev_chamber_drying_time": [ + "16" + ], + "filament_dev_drying_cooling_temperature": [ + "40" + ], + "filament_dev_drying_softening_temperature": [ + "50" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif} \n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "retraction_distances_when_ec": [ + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth ABS rABS.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth ABS rABS.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth ABS rABS.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth ABS rABS.json index 5d6b376e47..c5e97344e6 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth ABS rABS.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth ABS rABS.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth ABS rABS", - "inherits": "Generic ABS @base", + "inherits": "Generic ABS @BBL base", "from": "system", - "setting_id": "GF_ANRA_00", + "setting_id": "bYVQgQBBRMux4QtM", "filament_id": "OFzk5oAo", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PA Adura FDA.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PA Adura FDA.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PA Adura FDA.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PA Adura FDA.json index 703389a687..a6cec42f4a 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PA Adura FDA.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PA Adura FDA.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PA Adura FDA", - "inherits": "Generic PA @base", + "inherits": "Generic PA @BBL base", "from": "system", - "setting_id": "GF_ANAF_00", + "setting_id": "P7DJKbbOFdbW8PiQ", "filament_id": "OFSw6Mor", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PA Adura.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PA Adura.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PA Adura.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PA Adura.json index beba3c51de..1c072f99b1 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PA Adura.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PA Adura.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PA Adura", - "inherits": "Generic PA @base", + "inherits": "Generic PA @BBL base", "from": "system", - "setting_id": "GF_ANAD_00", + "setting_id": "08Ph3NCT7oy6bt1I", "filament_id": "OFWK0Y9A", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PA-CF Adura X.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PA-CF Adura X.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PA-CF Adura X.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PA-CF Adura X.json index f4894e3e6a..b07d89b749 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PA-CF Adura X.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PA-CF Adura X.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PA-CF Adura X", - "inherits": "Generic PA-CF @base", + "inherits": "Generic PA-CF @BBL base", "from": "system", - "setting_id": "GF_ANAX_00", + "setting_id": "anjeZ96YVijlGovm", "filament_id": "OFBsbMMF", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PA6 Addlantis.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PA6 Addlantis.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PA6 Addlantis.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PA6 Addlantis.json index 5cb61738c8..a0a967026e 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PA6 Addlantis.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PA6 Addlantis.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PA6 Addlantis", - "inherits": "Generic PA @base", + "inherits": "Generic PA @BBL base", "from": "system", - "setting_id": "GF_ANLA_00", + "setting_id": "b9bF4KKvxA9TaOjF", "filament_id": "OF1ID4N1", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PC BLend HT LCF.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PC BLend HT LCF.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PC BLend HT LCF.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PC BLend HT LCF.json index b94065e44d..2a4219ef1d 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PC BLend HT LCF.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PC BLend HT LCF.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PC BLend HT LCF", - "inherits": "Generic PC @base", + "inherits": "Generic PC @BBL base", "from": "system", - "setting_id": "GF_ANPBX_00", + "setting_id": "UWA9V5XulJ8hHOsK", "filament_id": "OFhN09f0", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG Base.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG Base.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PETG Base.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG Base.json index eb1ffaf48c..2f4206faea 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PETG Base.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG Base.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PETG Base", - "inherits": "Generic PETG @base", + "inherits": "Generic PETG @BBL base", "from": "system", - "setting_id": "GF_ANPE_00", + "setting_id": "Akp0GVUm3MHf7OsA", "filament_id": "OFHHwrd1", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG ESD.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG ESD.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PETG ESD.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG ESD.json index de07353b97..1cafba7a4e 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PETG ESD.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG ESD.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PETG ESD", - "inherits": "Generic PETG @base", + "inherits": "Generic PETG @BBL base", "from": "system", - "setting_id": "GF_ANEG_00", + "setting_id": "6nKNE7WJ6wCFrNoi", "filament_id": "OFUtiVRn", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG Economy.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG Economy.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PETG Economy.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG Economy.json index f3df226774..17f23ee8b3 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PETG Economy.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG Economy.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PETG Economy", - "inherits": "Generic PETG @base", + "inherits": "Generic PETG @BBL base", "from": "system", - "setting_id": "GF_ANGE_00", + "setting_id": "eQivhqRViItWCwEX", "filament_id": "OFZGrQTU", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG Flame v0.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG Flame v0.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PETG Flame v0.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG Flame v0.json index 08ad97161a..3a83fffcdc 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PETG Flame v0.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG Flame v0.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PETG Flame v0", - "inherits": "Generic PETG @base", + "inherits": "Generic PETG @BBL base", "from": "system", - "setting_id": "GF_ANPF_00", + "setting_id": "mrOAjreoxAIouiAt", "filament_id": "OF0EYBWQ", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG PRO Matte.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG PRO Matte.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PETG PRO Matte.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG PRO Matte.json index 0948d9f9c7..b894fad112 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PETG PRO Matte.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG PRO Matte.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PETG PRO Matte", - "inherits": "Generic PETG @base", + "inherits": "Generic PETG @BBL base", "from": "system", - "setting_id": "GF_ANPM_00", + "setting_id": "KFHaOT0Jte5AvS9h", "filament_id": "OFU5JPDy", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG rPETG Matte.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG rPETG Matte.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PETG rPETG Matte.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG rPETG Matte.json index 0396c6578d..fc7470096e 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PETG rPETG Matte.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG rPETG Matte.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PETG rPETG Matte", - "inherits": "Generic PETG @base", + "inherits": "Generic PETG @BBL base", "from": "system", - "setting_id": "GF_ANRM_00", + "setting_id": "nQKorwiLMPEErXYY", "filament_id": "OFqTwtXM", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG-CF Rigid X.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG-CF Rigid X.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PETG-CF Rigid X.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG-CF Rigid X.json index a0f78bb956..70d3df17cf 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PETG-CF Rigid X.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PETG-CF Rigid X.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PETG-CF Rigid X", - "inherits": "Generic PETG-CF @base", + "inherits": "Generic PETG-CF @BBL base", "from": "system", - "setting_id": "GF_ANRX_00", + "setting_id": "YBPZbWUVDHXCCNuf", "filament_id": "OFAcJkl1", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA E-PLA.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA E-PLA.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PLA E-PLA.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA E-PLA.json index 3a35d16b29..783ee6ccd1 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PLA E-PLA.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA E-PLA.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PLA E-PLA", - "inherits": "Generic PLA @base", + "inherits": "Generic PLA @BBL base", "from": "system", - "setting_id": "GF_ANEP_00", + "setting_id": "8uUckNJ5ysf07IYC", "filament_id": "OF71b7qO", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA Economy.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA Economy.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PLA Economy.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA Economy.json index 77a86797f0..84a22a9a60 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PLA Economy.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA Economy.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PLA Economy", - "inherits": "Generic PLA @base", + "inherits": "Generic PLA @BBL base", "from": "system", - "setting_id": "GF_ANPL_00", + "setting_id": "ZENT5cw0e5khSvwe", "filament_id": "OFZJft47", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA HT-PLA PRO Matte.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA HT-PLA PRO Matte.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PLA HT-PLA PRO Matte.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA HT-PLA PRO Matte.json index 5327b8a083..f3236b5d5a 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PLA HT-PLA PRO Matte.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA HT-PLA PRO Matte.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PLA HT-PLA PRO Matte", - "inherits": "Generic PLA @base", + "inherits": "Generic PLA @BBL base", "from": "system", - "setting_id": "GF_ANHTP_00", + "setting_id": "9qfkzOF7e8gAXv57", "filament_id": "OFVDWuxl", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA Premium Silk.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA Premium Silk.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PLA Premium Silk.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA Premium Silk.json index 1487f567cd..f1bf250692 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PLA Premium Silk.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA Premium Silk.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PLA Premium Silk", - "inherits": "Generic PLA Silk @base", + "inherits": "Generic PLA Silk @BBL base", "from": "system", - "setting_id": "GF_ANPS_00", + "setting_id": "Z15Ye6VtACtidxAY", "filament_id": "OFOQCfVa", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA Textura.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA Textura.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PLA Textura.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA Textura.json index 789d2bd096..218bb0f6af 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PLA Textura.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA Textura.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PLA Textura", - "inherits": "Generic PLA @base", + "inherits": "Generic PLA @BBL base", "from": "system", - "setting_id": "GF_ANTE_00", + "setting_id": "Lghtct7718TzOZhh", "filament_id": "OFRFhdqy", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA Wood.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA Wood.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PLA Wood.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA Wood.json index aed77a1a1a..d4c4c4c04f 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PLA Wood.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA Wood.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PLA Wood", - "inherits": "Generic PLA @base", + "inherits": "Generic PLA @BBL base", "from": "system", - "setting_id": "GF_ANPLW_00", + "setting_id": "HLJjfniZF8YnyDXs", "filament_id": "OFN8QBhu", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA High Speed.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA X-PLA High Speed.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA High Speed.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA X-PLA High Speed.json index 6e0a0952d5..939a8301fb 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA High Speed.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA X-PLA High Speed.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PLA X-PLA High Speed", - "inherits": "Generic PLA High Speed @base", + "inherits": "Generic PLA High Speed @BBL base", "from": "system", - "setting_id": "GF_ANXPH_00", + "setting_id": "6Z0HjNASgsk02KHj", "filament_id": "OFLjDYxH", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA X-PLA.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA X-PLA.json index d785327ee7..075ab03f46 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA X-PLA.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PLA X-PLA", - "inherits": "Generic PLA @base", + "inherits": "Generic PLA @BBL base", "from": "system", - "setting_id": "GF_ANXP_00", + "setting_id": "DwatndcgamhNXNwa", "filament_id": "OFtdVZpV", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA rPLA RE-ADD.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA rPLA RE-ADD.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PLA rPLA RE-ADD.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA rPLA RE-ADD.json index c530f3fa7c..771869bc04 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PLA rPLA RE-ADD.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA rPLA RE-ADD.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PLA rPLA RE-ADD", - "inherits": "Generic PLA @base", + "inherits": "Generic PLA @BBL base", "from": "system", - "setting_id": "GF_ANRPL_00", + "setting_id": "C3PV2FCtxFb74701", "filament_id": "OFnBvPhb", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA-CF Carbon Fiber.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA-CF Carbon Fiber.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PLA-CF Carbon Fiber.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA-CF Carbon Fiber.json index 32debd4c18..60eebfce37 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PLA-CF Carbon Fiber.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PLA-CF Carbon Fiber.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PLA-CF Carbon Fiber", - "inherits": "Generic PLA-CF @base", + "inherits": "Generic PLA-CF @BBL base", "from": "system", - "setting_id": "GF_ANPCF_00", + "setting_id": "6EGbWT7sxqv613lw", "filament_id": "OFcpa50Z", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PVDF Adamant S1.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PVDF Adamant S1.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth PVDF Adamant S1.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PVDF Adamant S1.json index 88258976f2..584d049776 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth PVDF Adamant S1.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth PVDF Adamant S1.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth PVDF Adamant S1", - "inherits": "Generic PA @base", + "inherits": "Generic PA @BBL base", "from": "system", - "setting_id": "GF_ANPV_00", + "setting_id": "rc1IER71KiN6wNpH", "filament_id": "OFQ5TxZ2", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth TPU EasyFlex.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth TPU EasyFlex.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth TPU EasyFlex.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth TPU EasyFlex.json index afdcb43296..f75218b666 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth TPU EasyFlex.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth TPU EasyFlex.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth TPU EasyFlex", - "inherits": "Generic TPU @base", + "inherits": "Generic TPU @BBL base", "from": "system", - "setting_id": "GF_ANEF_00", + "setting_id": "X0NEq8DKNad80uRp", "filament_id": "OFO6GMJ3", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 85A.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth TPU Pro Matte 85A.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 85A.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth TPU Pro Matte 85A.json index 81d08c4681..446377b7c4 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 85A.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth TPU Pro Matte 85A.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth TPU Pro Matte 85A", - "inherits": "Generic TPU @base", + "inherits": "Generic TPU @BBL base", "from": "system", - "setting_id": "GF_ANTA_00", + "setting_id": "2vvu1QFF18EEijLG", "filament_id": "OFvcIGee", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 95A.json b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth TPU Pro Matte 95A.json similarity index 98% rename from resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 95A.json rename to resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth TPU Pro Matte 95A.json index 0b4e7c3fcd..b63da895a8 100644 --- a/resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 95A.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/addnorth/BBL/addnorth TPU Pro Matte 95A.json @@ -1,9 +1,9 @@ { "type": "filament", "name": "addnorth TPU Pro Matte 95A", - "inherits": "Generic TPU @base", + "inherits": "Generic TPU @BBL base", "from": "system", - "setting_id": "GF_ANTM_00", + "setting_id": "lfe1hOdWYCc1gyop", "filament_id": "OFyJjkek", "instantiation": "true", "activate_air_filtration": [ From cc883e458d22f1bd68e8131fed1740135ea14c53 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Wed, 23 Sep 2026 14:55:19 +0800 Subject: [PATCH 3/4] Sync Bambu Lab profiles with BambuStudio Polymaker, Overture and eSUN presets move from brand subfolders to BBL/filament/, matching BambuStudio's layout; their names and ids are unchanged. Default filament lists keep pointing at presets that exist, 0.2 mm nozzles keep a default PLA, and user presets based on removed or renamed presets still load. Generic SBS is no longer in the Bambu bundle; new selections on those printers fall back to OrcaFilamentLibrary's Generic SBS @System. The profile tool now recognises BambuStudio's new filament id/name maps and support_recommended_params.json as data files. --- resources/profiles/BBL.json | 16280 +++++++++------- .../profiles/BBL/Bambu Lab A1 mini_cover.png | Bin 15367 -> 13113 bytes resources/profiles/BBL/Bambu Lab A1_cover.png | Bin 36803 -> 17467 bytes .../profiles/BBL/Bambu Lab A2L_cover.png | Bin 47697 -> 43121 bytes .../profiles/BBL/Bambu Lab H2C_cover.png | Bin 33714 -> 45395 bytes .../profiles/BBL/Bambu Lab H2D Pro_cover.png | Bin 24529 -> 9000 bytes .../profiles/BBL/Bambu Lab H2D_cover.png | Bin 28572 -> 12738 bytes .../profiles/BBL/Bambu Lab H2S_cover.png | Bin 24684 -> 10719 bytes .../profiles/BBL/Bambu Lab P1P_cover.png | Bin 28732 -> 285406 bytes .../profiles/BBL/Bambu Lab P1S_cover.png | Bin 18576 -> 7671 bytes .../profiles/BBL/Bambu Lab P2S_cover.png | Bin 31704 -> 31633 bytes .../BBL/Bambu Lab X1 Carbon_cover.png | Bin 29762 -> 16719 bytes .../profiles/BBL/Bambu Lab X1E_cover.png | Bin 19875 -> 13025 bytes resources/profiles/BBL/Bambu Lab X1_cover.png | Bin 27522 -> 18568 bytes .../profiles/BBL/Bambu Lab X2D_cover.png | Bin 18930 -> 30712 bytes resources/profiles/BBL/bbl-3dp-A1M.stl | Bin 23084 -> 48084 bytes resources/profiles/BBL/bbl-3dp-H2C.stl | Bin 23484 -> 86684 bytes resources/profiles/BBL/bbl-3dp-H2D.stl | Bin 28684 -> 17484 bytes resources/profiles/BBL/bbl-3dp-O1S.stl | Bin 17484 -> 17484 bytes resources/profiles/BBL/bbl-3dp-X1.stl | Bin 27084 -> 50884 bytes resources/profiles/BBL/bbl-3dp-hotend.stl | Bin 28084 -> 638084 bytes resources/profiles/BBL/cli_config.json | 1614 +- .../Bambu ABS @BBL A1 0.2 nozzle.json | 80 +- .../BBL/filament/Bambu ABS @BBL A1.json | 87 +- .../Bambu ABS @BBL H2C 0.2 nozzle.json | 321 +- .../Bambu ABS @BBL H2C 0.6 nozzle.json | 341 +- .../Bambu ABS @BBL H2C 0.8 nozzle.json | 329 +- .../BBL/filament/Bambu ABS @BBL H2C.json | 341 +- .../Bambu ABS @BBL H2D 0.2 nozzle.json | 215 +- .../Bambu ABS @BBL H2D 0.6 nozzle.json | 245 +- .../Bambu ABS @BBL H2D 0.8 nozzle.json | 231 +- .../BBL/filament/Bambu ABS @BBL H2D.json | 241 +- .../Bambu ABS @BBL H2DP 0.2 nozzle.json | 185 +- .../Bambu ABS @BBL H2DP 0.6 nozzle.json | 199 +- .../Bambu ABS @BBL H2DP 0.8 nozzle.json | 201 +- .../BBL/filament/Bambu ABS @BBL H2DP.json | 199 +- .../Bambu ABS @BBL H2S 0.2 nozzle.json | 245 +- .../Bambu ABS @BBL H2S 0.6 nozzle.json | 261 +- .../Bambu ABS @BBL H2S 0.8 nozzle.json | 251 +- .../BBL/filament/Bambu ABS @BBL H2S.json | 261 +- .../Bambu ABS @BBL P1S 0.4 nozzle.json | 72 + .../Bambu ABS @BBL P1S 0.6 nozzle.json | 72 + .../Bambu ABS @BBL P2S 0.2 nozzle.json | 265 +- .../Bambu ABS @BBL P2S 0.6 nozzle.json | 275 +- .../Bambu ABS @BBL P2S 0.8 nozzle.json | 268 +- .../BBL/filament/Bambu ABS @BBL P2S.json | 278 +- .../Bambu ABS @BBL X1C 0.2 nozzle.json | 183 +- .../Bambu ABS @BBL X1C 0.6 nozzle.json | 64 + .../Bambu ABS @BBL X1C 0.8 nozzle.json | 186 +- .../BBL/filament/Bambu ABS @BBL X1C.json | 202 +- .../Bambu ABS @BBL X1E 0.2 nozzle.json | 179 +- .../Bambu ABS @BBL X1E 0.8 nozzle.json | 182 +- .../BBL/filament/Bambu ABS @BBL X1E.json | 185 +- .../Bambu ABS @BBL X2D 0.2 nozzle.json | 431 +- .../Bambu ABS @BBL X2D 0.4 nozzle.json | 458 +- .../Bambu ABS @BBL X2D 0.8 nozzle.json | 431 +- .../BBL/filament/Bambu ABS @BBL X2D.json | 455 +- .../BBL/filament/Bambu ABS @base.json | 40 +- .../BBL/filament/Bambu ABS-GF @BBL A1.json | 36 +- .../Bambu ABS-GF @BBL H2C 0.4 nozzle.json | 258 +- .../BBL/filament/Bambu ABS-GF @BBL H2C.json | 260 +- .../BBL/filament/Bambu ABS-GF @BBL H2D.json | 189 +- .../BBL/filament/Bambu ABS-GF @BBL H2DP.json | 177 +- .../BBL/filament/Bambu ABS-GF @BBL H2S.json | 199 +- .../BBL/filament/Bambu ABS-GF @BBL P1P.json | 171 +- .../BBL/filament/Bambu ABS-GF @BBL P2S.json | 238 +- .../BBL/filament/Bambu ABS-GF @BBL X1C.json | 189 +- .../Bambu ABS-GF @BBL X2D 0.4 nozzle.json | 367 +- .../BBL/filament/Bambu ABS-GF @BBL X2D.json | 369 +- .../BBL/filament/Bambu ABS-GF @base.json | 88 +- .../Bambu ASA @BBL A1 0.2 nozzle.json | 38 +- .../Bambu ASA @BBL A1 0.4 nozzle.json | 38 +- .../Bambu ASA @BBL A1 0.6 nozzle.json | 40 +- .../Bambu ASA @BBL H2C 0.2 nozzle.json | 303 +- .../Bambu ASA @BBL H2C 0.6 nozzle.json | 329 +- .../Bambu ASA @BBL H2C 0.8 nozzle.json | 317 +- .../BBL/filament/Bambu ASA @BBL H2C.json | 329 +- .../Bambu ASA @BBL H2D 0.2 nozzle.json | 203 +- .../Bambu ASA @BBL H2D 0.4 nozzle.json | 250 +- .../Bambu ASA @BBL H2D 0.6 nozzle.json | 229 +- .../Bambu ASA @BBL H2D 0.8 nozzle.json | 227 +- .../Bambu ASA @BBL H2DP 0.2 nozzle.json | 173 +- .../Bambu ASA @BBL H2DP 0.4 nozzle.json | 229 +- .../Bambu ASA @BBL H2DP 0.6 nozzle.json | 187 +- .../Bambu ASA @BBL H2DP 0.8 nozzle.json | 189 +- .../Bambu ASA @BBL H2S 0.2 nozzle.json | 227 +- .../Bambu ASA @BBL H2S 0.6 nozzle.json | 249 +- .../Bambu ASA @BBL H2S 0.8 nozzle.json | 239 +- .../BBL/filament/Bambu ASA @BBL H2S.json | 249 +- .../Bambu ASA @BBL P2S 0.2 nozzle.json | 291 +- .../Bambu ASA @BBL P2S 0.4 nozzle.json | 284 +- .../Bambu ASA @BBL P2S 0.6 nozzle.json | 300 +- .../Bambu ASA @BBL P2S 0.8 nozzle.json | 275 +- .../Bambu ASA @BBL X1 0.2 nozzle.json | 167 +- .../Bambu ASA @BBL X1 0.6 nozzle.json | 183 +- .../Bambu ASA @BBL X1C 0.2 nozzle.json | 171 +- .../Bambu ASA @BBL X1C 0.4 nozzle.json | 189 +- .../BBL/filament/Bambu ASA @BBL X1C.json | 191 +- .../Bambu ASA @BBL X1E 0.2 nozzle.json | 167 +- .../Bambu ASA @BBL X1E 0.4 nozzle.json | 167 +- .../BBL/filament/Bambu ASA @BBL X1E.json | 175 +- .../Bambu ASA @BBL X2D 0.2 nozzle.json | 419 +- .../Bambu ASA @BBL X2D 0.4 nozzle.json | 446 +- .../Bambu ASA @BBL X2D 0.8 nozzle.json | 149 + .../BBL/filament/Bambu ASA @BBL X2D.json | 450 +- .../BBL/filament/Bambu ASA @base.json | 109 +- .../BBL/filament/Bambu ASA-Aero @BBL A1.json | 24 +- .../Bambu ASA-Aero @BBL H2C 0.4 nozzle.json | 288 +- .../BBL/filament/Bambu ASA-Aero @BBL H2C.json | 290 +- .../BBL/filament/Bambu ASA-Aero @BBL H2D.json | 194 +- .../filament/Bambu ASA-Aero @BBL H2DP.json | 181 +- .../BBL/filament/Bambu ASA-Aero @BBL H2S.json | 224 +- .../BBL/filament/Bambu ASA-Aero @BBL P1P.json | 179 +- .../BBL/filament/Bambu ASA-Aero @BBL P2S.json | 258 +- .../BBL/filament/Bambu ASA-Aero @BBL X1C.json | 197 +- .../Bambu ASA-Aero @BBL X2D 0.4 nozzle.json | 381 +- .../BBL/filament/Bambu ASA-Aero @BBL X2D.json | 383 +- .../BBL/filament/Bambu ASA-Aero @base.json | 130 +- .../Bambu ASA-CF @BBL A1 0.6 nozzle.json | 22 +- .../BBL/filament/Bambu ASA-CF @BBL A1.json | 20 +- .../Bambu ASA-CF @BBL H2C 0.4 nozzle.json | 280 +- .../BBL/filament/Bambu ASA-CF @BBL H2C.json | 270 +- .../Bambu ASA-CF @BBL H2D 0.4 nozzle.json | 207 +- .../Bambu ASA-CF @BBL H2D 0.6 nozzle.json | 197 +- .../Bambu ASA-CF @BBL H2DP 0.4 nozzle.json | 193 +- .../Bambu ASA-CF @BBL H2DP 0.6 nozzle.json | 183 +- .../BBL/filament/Bambu ASA-CF @BBL H2S.json | 209 +- .../Bambu ASA-CF @BBL P1P 0.6 nozzle.json | 175 +- .../BBL/filament/Bambu ASA-CF @BBL P1P.json | 173 +- .../Bambu ASA-CF @BBL P2S 0.4 nozzle.json | 260 +- .../Bambu ASA-CF @BBL P2S 0.6 nozzle.json | 262 +- .../Bambu ASA-CF @BBL X1C 0.6 nozzle.json | 187 +- .../BBL/filament/Bambu ASA-CF @BBL X1C.json | 179 +- .../Bambu ASA-CF @BBL X2D 0.4 nozzle.json | 365 +- .../BBL/filament/Bambu ASA-CF @BBL X2D.json | 367 +- .../BBL/filament/Bambu ASA-CF @base.json | 128 +- .../BBL/filament/Bambu PA-CF @BBL A1.json | 63 +- .../Bambu PA-CF @BBL H2C 0.4 nozzle.json | 257 +- .../BBL/filament/Bambu PA-CF @BBL H2C.json | 259 +- .../BBL/filament/Bambu PA-CF @BBL H2D.json | 194 +- .../BBL/filament/Bambu PA-CF @BBL H2DP.json | 181 +- .../BBL/filament/Bambu PA-CF @BBL H2S.json | 231 +- .../BBL/filament/Bambu PA-CF @BBL P2S.json | 265 +- .../BBL/filament/Bambu PA-CF @BBL X1C.json | 206 +- .../BBL/filament/Bambu PA-CF @BBL X1E.json | 200 +- .../Bambu PA-CF @BBL X2D 0.4 nozzle.json | 381 +- .../BBL/filament/Bambu PA-CF @BBL X2D.json | 383 +- .../BBL/filament/Bambu PA-CF @base.json | 82 +- .../BBL/filament/Bambu PA6-CF @BBL A1.json | 24 +- .../Bambu PA6-CF @BBL H2C 0.4 nozzle.json | 309 +- .../Bambu PA6-CF @BBL H2C 0.8 nozzle.json | 117 + .../BBL/filament/Bambu PA6-CF @BBL H2C.json | 310 +- .../Bambu PA6-CF @BBL H2D 0.6 nozzle.json | 84 + .../Bambu PA6-CF @BBL H2D 0.8 nozzle.json | 76 + .../BBL/filament/Bambu PA6-CF @BBL H2D.json | 225 +- .../Bambu PA6-CF @BBL H2DP 0.6 nozzle.json | 78 + .../Bambu PA6-CF @BBL H2DP 0.8 nozzle.json | 78 + .../BBL/filament/Bambu PA6-CF @BBL H2DP.json | 195 +- .../Bambu PA6-CF @BBL H2S 0.6 nozzle.json | 110 + .../Bambu PA6-CF @BBL H2S 0.8 nozzle.json | 101 + .../BBL/filament/Bambu PA6-CF @BBL H2S.json | 224 +- .../Bambu PA6-CF @BBL P2S 0.6 nozzle.json | 104 + .../Bambu PA6-CF @BBL P2S 0.8 nozzle.json | 95 + .../BBL/filament/Bambu PA6-CF @BBL P2S.json | 258 +- .../Bambu PA6-CF @BBL X1C 0.6 nozzle.json | 59 + .../BBL/filament/Bambu PA6-CF @BBL X1C.json | 187 +- .../BBL/filament/Bambu PA6-CF @BBL X1E.json | 173 +- .../Bambu PA6-CF @BBL X2D 0.4 nozzle.json | 445 +- .../Bambu PA6-CF @BBL X2D 0.8 nozzle.json | 134 + .../BBL/filament/Bambu PA6-CF @BBL X2D.json | 428 +- .../BBL/filament/Bambu PA6-CF @base.json | 100 +- .../BBL/filament/Bambu PA6-GF @BBL A1.json | 42 +- .../Bambu PA6-GF @BBL H2C 0.4 nozzle.json | 268 +- .../BBL/filament/Bambu PA6-GF @BBL H2C.json | 270 +- .../BBL/filament/Bambu PA6-GF @BBL H2D.json | 199 +- .../BBL/filament/Bambu PA6-GF @BBL H2DP.json | 185 +- .../BBL/filament/Bambu PA6-GF @BBL H2S.json | 204 +- .../BBL/filament/Bambu PA6-GF @BBL P1P.json | 167 +- .../BBL/filament/Bambu PA6-GF @BBL P2S.json | 238 +- .../BBL/filament/Bambu PA6-GF @BBL X1C.json | 191 +- .../Bambu PA6-GF @BBL X2D 0.4 nozzle.json | 359 +- .../BBL/filament/Bambu PA6-GF @BBL X2D.json | 361 +- .../BBL/filament/Bambu PA6-GF @base.json | 97 +- .../BBL/filament/Bambu PAHT-CF @BBL A1.json | 24 +- .../Bambu PAHT-CF @BBL H2C 0.4 nozzle.json | 309 +- .../Bambu PAHT-CF @BBL H2C 0.8 nozzle.json | 117 + .../BBL/filament/Bambu PAHT-CF @BBL H2C.json | 310 +- .../Bambu PAHT-CF @BBL H2D 0.6 nozzle.json | 84 + .../Bambu PAHT-CF @BBL H2D 0.8 nozzle.json | 76 + .../BBL/filament/Bambu PAHT-CF @BBL H2D.json | 225 +- .../Bambu PAHT-CF @BBL H2DP 0.6 nozzle.json | 78 + .../Bambu PAHT-CF @BBL H2DP 0.8 nozzle.json | 78 + .../BBL/filament/Bambu PAHT-CF @BBL H2DP.json | 195 +- .../Bambu PAHT-CF @BBL H2S 0.6 nozzle.json | 110 + .../Bambu PAHT-CF @BBL H2S 0.8 nozzle.json | 101 + .../BBL/filament/Bambu PAHT-CF @BBL H2S.json | 224 +- .../Bambu PAHT-CF @BBL P2S 0.6 nozzle.json | 104 + .../Bambu PAHT-CF @BBL P2S 0.8 nozzle.json | 95 + .../BBL/filament/Bambu PAHT-CF @BBL P2S.json | 258 +- .../Bambu PAHT-CF @BBL X1C 0.6 nozzle.json | 60 + .../BBL/filament/Bambu PAHT-CF @BBL X1C.json | 191 +- .../Bambu PAHT-CF @BBL X2D 0.4 nozzle.json | 415 +- .../Bambu PAHT-CF @BBL X2D 0.8 nozzle.json | 113 + .../BBL/filament/Bambu PAHT-CF @BBL X2D.json | 398 +- .../BBL/filament/Bambu PAHT-CF @base.json | 97 +- .../filament/Bambu PC @BBL A1 0.2 nozzle.json | 86 +- .../BBL/filament/Bambu PC @BBL A1.json | 78 +- .../Bambu PC @BBL H2C 0.2 nozzle.json | 313 +- .../Bambu PC @BBL H2C 0.6 nozzle.json | 341 +- .../Bambu PC @BBL H2C 0.8 nozzle.json | 329 +- .../BBL/filament/Bambu PC @BBL H2C.json | 341 +- .../Bambu PC @BBL H2D 0.2 nozzle.json | 219 +- .../Bambu PC @BBL H2D 0.4 nozzle.json | 246 +- .../Bambu PC @BBL H2D 0.6 nozzle.json | 246 +- .../Bambu PC @BBL H2D 0.8 nozzle.json | 235 +- .../Bambu PC @BBL H2DP 0.2 nozzle.json | 189 +- .../Bambu PC @BBL H2DP 0.4 nozzle.json | 203 +- .../Bambu PC @BBL H2DP 0.6 nozzle.json | 203 +- .../Bambu PC @BBL H2DP 0.8 nozzle.json | 205 +- .../Bambu PC @BBL H2S 0.2 nozzle.json | 225 +- .../Bambu PC @BBL H2S 0.6 nozzle.json | 254 +- .../Bambu PC @BBL H2S 0.8 nozzle.json | 243 +- .../BBL/filament/Bambu PC @BBL H2S.json | 254 +- .../Bambu PC @BBL P1S 0.2 nozzle.json | 56 +- .../Bambu PC @BBL P1S 0.6 nozzle.json | 72 +- .../Bambu PC @BBL P1S 0.8 nozzle.json | 56 +- .../BBL/filament/Bambu PC @BBL P1S.json | 60 +- .../Bambu PC @BBL P2S 0.4 nozzle.json | 298 +- .../Bambu PC @BBL P2S 0.6 nozzle.json | 283 +- .../Bambu PC @BBL P2S 0.8 nozzle.json | 255 +- .../Bambu PC @BBL X1C 0.2 nozzle.json | 177 +- .../Bambu PC @BBL X1C 0.6 nozzle.json | 189 +- .../Bambu PC @BBL X1C 0.8 nozzle.json | 177 +- .../BBL/filament/Bambu PC @BBL X1C.json | 177 +- .../Bambu PC @BBL X1E 0.2 nozzle.json | 181 +- .../Bambu PC @BBL X1E 0.6 nozzle.json | 181 +- .../Bambu PC @BBL X1E 0.8 nozzle.json | 181 +- .../BBL/filament/Bambu PC @BBL X1E.json | 181 +- .../Bambu PC @BBL X2D 0.4 nozzle.json | 456 +- .../Bambu PC @BBL X2D 0.8 nozzle.json | 419 +- .../BBL/filament/Bambu PC @BBL X2D.json | 441 +- .../profiles/BBL/filament/Bambu PC @base.json | 41 +- .../Bambu PC FR @BBL A1 0.2 nozzle.json | 86 +- .../BBL/filament/Bambu PC FR @BBL A1.json | 78 +- .../Bambu PC FR @BBL H2C 0.2 nozzle.json | 265 +- .../Bambu PC FR @BBL H2C 0.4 nozzle.json | 295 +- .../BBL/filament/Bambu PC FR @BBL H2C.json | 297 +- .../Bambu PC FR @BBL H2D 0.2 nozzle.json | 195 +- .../Bambu PC FR @BBL H2D 0.4 nozzle.json | 202 +- .../Bambu PC FR @BBL H2D 0.6 nozzle.json | 202 +- .../Bambu PC FR @BBL H2D 0.8 nozzle.json | 195 +- .../Bambu PC FR @BBL H2DP 0.2 nozzle.json | 189 +- .../Bambu PC FR @BBL H2DP 0.4 nozzle.json | 189 +- .../Bambu PC FR @BBL H2DP 0.6 nozzle.json | 189 +- .../Bambu PC FR @BBL H2DP 0.8 nozzle.json | 189 +- .../Bambu PC FR @BBL H2S 0.2 nozzle.json | 207 +- .../BBL/filament/Bambu PC FR @BBL H2S.json | 236 +- .../Bambu PC FR @BBL P1P 0.2 nozzle.json | 217 +- .../BBL/filament/Bambu PC FR @BBL P1P.json | 221 +- .../Bambu PC FR @BBL P1S 0.2 nozzle.json | 211 +- .../Bambu PC FR @BBL P1S 0.6 nozzle.json | 211 +- .../Bambu PC FR @BBL P1S 0.8 nozzle.json | 211 +- .../BBL/filament/Bambu PC FR @BBL P1S.json | 211 +- .../Bambu PC FR @BBL P2S 0.4 nozzle.json | 276 +- .../Bambu PC FR @BBL P2S 0.6 nozzle.json | 281 +- .../Bambu PC FR @BBL P2S 0.8 nozzle.json | 275 +- .../Bambu PC FR @BBL X1C 0.2 nozzle.json | 177 +- .../Bambu PC FR @BBL X1C 0.6 nozzle.json | 177 +- .../Bambu PC FR @BBL X1C 0.8 nozzle.json | 177 +- .../BBL/filament/Bambu PC FR @BBL X1C.json | 177 +- .../Bambu PC FR @BBL X1E 0.2 nozzle.json | 181 +- .../Bambu PC FR @BBL X1E 0.6 nozzle.json | 181 +- .../Bambu PC FR @BBL X1E 0.8 nozzle.json | 181 +- .../BBL/filament/Bambu PC FR @BBL X1E.json | 181 +- .../Bambu PC FR @BBL X2D 0.4 nozzle.json | 395 +- .../Bambu PC FR @BBL X2D 0.8 nozzle.json | 371 +- .../BBL/filament/Bambu PC FR @BBL X2D.json | 395 +- .../BBL/filament/Bambu PC FR @base.json | 44 +- .../BBL/filament/Bambu PET-CF @BBL A1.json | 66 +- .../Bambu PET-CF @BBL H2C 0.4 nozzle.json | 353 +- .../BBL/filament/Bambu PET-CF @BBL H2C.json | 361 +- .../BBL/filament/Bambu PET-CF @BBL H2D.json | 281 +- .../BBL/filament/Bambu PET-CF @BBL H2DP.json | 256 +- .../BBL/filament/Bambu PET-CF @BBL H2S.json | 279 +- .../BBL/filament/Bambu PET-CF @BBL P2S.json | 307 +- .../BBL/filament/Bambu PET-CF @BBL X1C.json | 215 +- .../BBL/filament/Bambu PET-CF @BBL X1E.json | 209 +- .../Bambu PET-CF @BBL X2D 0.4 nozzle.json | 479 +- .../BBL/filament/Bambu PET-CF @BBL X2D.json | 470 +- .../BBL/filament/Bambu PET-CF @base.json | 209 +- .../Bambu PETG Basic @BBL A1 0.2 nozzle.json | 80 +- .../Bambu PETG Basic @BBL A1 0.8 nozzle.json | 106 +- .../filament/Bambu PETG Basic @BBL A1.json | 101 +- .../Bambu PETG Basic @BBL A1M 0.2 nozzle.json | 80 +- .../Bambu PETG Basic @BBL A1M 0.4 nozzle.json | 101 +- .../Bambu PETG Basic @BBL A1M 0.8 nozzle.json | 106 +- .../Bambu PETG Basic @BBL A2L 0.2 nozzle.json | 146 +- .../Bambu PETG Basic @BBL A2L 0.4 nozzle.json | 146 +- .../Bambu PETG Basic @BBL A2L 0.6 nozzle.json | 134 +- .../Bambu PETG Basic @BBL A2L 0.8 nozzle.json | 134 +- .../Bambu PETG Basic @BBL H2C 0.2 nozzle.json | 267 +- .../Bambu PETG Basic @BBL H2C 0.4 nozzle.json | 305 +- .../Bambu PETG Basic @BBL H2C 0.8 nozzle.json | 119 + .../filament/Bambu PETG Basic @BBL H2C.json | 299 +- .../Bambu PETG Basic @BBL H2D 0.2 nozzle.json | 204 +- .../Bambu PETG Basic @BBL H2D 0.4 nozzle.json | 228 +- .../Bambu PETG Basic @BBL H2D 0.6 nozzle.json | 225 +- .../Bambu PETG Basic @BBL H2D 0.8 nozzle.json | 97 + ...Bambu PETG Basic @BBL H2DP 0.2 nozzle.json | 198 +- ...Bambu PETG Basic @BBL H2DP 0.4 nozzle.json | 211 +- ...Bambu PETG Basic @BBL H2DP 0.6 nozzle.json | 207 +- ...Bambu PETG Basic @BBL H2DP 0.8 nozzle.json | 93 + .../Bambu PETG Basic @BBL H2S 0.2 nozzle.json | 204 +- .../Bambu PETG Basic @BBL H2S 0.6 nozzle.json | 268 +- .../Bambu PETG Basic @BBL H2S 0.8 nozzle.json | 96 + .../filament/Bambu PETG Basic @BBL H2S.json | 243 +- .../Bambu PETG Basic @BBL P2S 0.2 nozzle.json | 207 +- .../Bambu PETG Basic @BBL P2S 0.4 nozzle.json | 226 +- .../Bambu PETG Basic @BBL P2S 0.6 nozzle.json | 232 +- .../Bambu PETG Basic @BBL P2S 0.8 nozzle.json | 99 + .../Bambu PETG Basic @BBL X1C 0.2 nozzle.json | 193 +- .../Bambu PETG Basic @BBL X1C 0.8 nozzle.json | 220 +- .../filament/Bambu PETG Basic @BBL X1C.json | 203 +- .../Bambu PETG Basic @BBL X2D 0.2 nozzle.json | 407 +- .../Bambu PETG Basic @BBL X2D 0.4 nozzle.json | 416 +- .../Bambu PETG Basic @BBL X2D 0.8 nozzle.json | 131 + .../filament/Bambu PETG Basic @BBL X2D.json | 412 +- .../BBL/filament/Bambu PETG Basic @base.json | 181 +- .../Bambu PETG HF @BBL A1 0.2 nozzle.json | 86 +- .../Bambu PETG HF @BBL A1 0.8 nozzle.json | 88 +- .../BBL/filament/Bambu PETG HF @BBL A1.json | 86 +- .../Bambu PETG HF @BBL A1M 0.2 nozzle.json | 86 +- .../Bambu PETG HF @BBL A1M 0.8 nozzle.json | 88 +- .../BBL/filament/Bambu PETG HF @BBL A1M.json | 86 +- .../Bambu PETG HF @BBL A2L 0.2 nozzle.json | 152 +- .../Bambu PETG HF @BBL A2L 0.6 nozzle.json | 134 +- .../Bambu PETG HF @BBL A2L 0.8 nozzle.json | 134 +- .../BBL/filament/Bambu PETG HF @BBL A2L.json | 140 +- .../Bambu PETG HF @BBL H2C 0.2 nozzle.json | 333 +- .../Bambu PETG HF @BBL H2C 0.6 nozzle.json | 370 +- .../Bambu PETG HF @BBL H2C 0.8 nozzle.json | 357 +- .../BBL/filament/Bambu PETG HF @BBL H2C.json | 370 +- .../Bambu PETG HF @BBL H2D 0.2 nozzle.json | 236 +- .../Bambu PETG HF @BBL H2D 0.4 nozzle.json | 286 +- .../Bambu PETG HF @BBL H2D 0.6 nozzle.json | 267 +- .../Bambu PETG HF @BBL H2D 0.8 nozzle.json | 264 +- .../Bambu PETG HF @BBL H2DP 0.2 nozzle.json | 209 +- .../Bambu PETG HF @BBL H2DP 0.4 nozzle.json | 259 +- .../Bambu PETG HF @BBL H2DP 0.6 nozzle.json | 227 +- .../Bambu PETG HF @BBL H2DP 0.8 nozzle.json | 229 +- .../Bambu PETG HF @BBL H2S 0.2 nozzle.json | 254 +- .../Bambu PETG HF @BBL H2S 0.6 nozzle.json | 276 +- .../Bambu PETG HF @BBL H2S 0.8 nozzle.json | 266 +- .../BBL/filament/Bambu PETG HF @BBL H2S.json | 276 +- .../Bambu PETG HF @BBL P1P 0.4 nozzle.json | 74 + .../Bambu PETG HF @BBL P1S 0.4 nozzle.json | 74 + .../Bambu PETG HF @BBL P2S 0.2 nozzle.json | 308 +- .../Bambu PETG HF @BBL P2S 0.4 nozzle.json | 314 +- .../Bambu PETG HF @BBL P2S 0.6 nozzle.json | 310 +- .../Bambu PETG HF @BBL P2S 0.8 nozzle.json | 132 + .../Bambu PETG HF @BBL X1C 0.2 nozzle.json | 202 +- .../Bambu PETG HF @BBL X1C 0.6 nozzle.json | 74 + .../Bambu PETG HF @BBL X1C 0.8 nozzle.json | 223 +- .../BBL/filament/Bambu PETG HF @BBL X1C.json | 212 +- .../Bambu PETG HF @BBL X2D 0.2 nozzle.json | 479 +- .../Bambu PETG HF @BBL X2D 0.4 nozzle.json | 487 +- .../Bambu PETG HF @BBL X2D 0.8 nozzle.json | 170 + .../BBL/filament/Bambu PETG HF @BBL X2D.json | 486 +- .../BBL/filament/Bambu PETG HF @base.json | 176 +- .../Bambu PETG Matte @BBL A1 0.2 nozzle.json | 47 + .../Bambu PETG Matte @BBL A1 0.8 nozzle.json | 51 + .../filament/Bambu PETG Matte @BBL A1.json | 56 + .../Bambu PETG Matte @BBL A1M 0.2 nozzle.json | 44 + .../Bambu PETG Matte @BBL A1M 0.4 nozzle.json | 50 + .../Bambu PETG Matte @BBL A1M 0.8 nozzle.json | 51 + .../Bambu PETG Matte @BBL A2L 0.2 nozzle.json | 80 + .../Bambu PETG Matte @BBL A2L 0.4 nozzle.json | 80 + .../Bambu PETG Matte @BBL A2L 0.6 nozzle.json | 74 + .../Bambu PETG Matte @BBL A2L 0.8 nozzle.json | 80 + .../Bambu PETG Matte @BBL H2C 0.2 nozzle.json | 100 + .../Bambu PETG Matte @BBL H2C 0.4 nozzle.json | 126 + .../Bambu PETG Matte @BBL H2C 0.8 nozzle.json | 125 + .../filament/Bambu PETG Matte @BBL H2C.json | 128 + .../Bambu PETG Matte @BBL H2D 0.2 nozzle.json | 77 + .../Bambu PETG Matte @BBL H2D 0.4 nozzle.json | 105 + .../Bambu PETG Matte @BBL H2D 0.6 nozzle.json | 104 + .../Bambu PETG Matte @BBL H2D 0.8 nozzle.json | 104 + ...Bambu PETG Matte @BBL H2DP 0.2 nozzle.json | 79 + ...Bambu PETG Matte @BBL H2DP 0.4 nozzle.json | 100 + ...Bambu PETG Matte @BBL H2DP 0.6 nozzle.json | 99 + ...Bambu PETG Matte @BBL H2DP 0.8 nozzle.json | 100 + .../Bambu PETG Matte @BBL H2S 0.2 nozzle.json | 65 + .../Bambu PETG Matte @BBL H2S 0.6 nozzle.json | 91 + .../Bambu PETG Matte @BBL H2S 0.8 nozzle.json | 93 + .../filament/Bambu PETG Matte @BBL H2S.json | 109 + .../Bambu PETG Matte @BBL P1P 0.2 nozzle.json | 75 + .../Bambu PETG Matte @BBL P1P 0.4 nozzle.json | 87 + .../Bambu PETG Matte @BBL P1P 0.6 nozzle.json | 93 + .../Bambu PETG Matte @BBL P2S 0.2 nozzle.json | 93 + .../Bambu PETG Matte @BBL P2S 0.4 nozzle.json | 116 + .../Bambu PETG Matte @BBL P2S 0.6 nozzle.json | 121 + .../Bambu PETG Matte @BBL P2S 0.8 nozzle.json | 117 + .../Bambu PETG Matte @BBL X1C 0.2 nozzle.json | 64 + .../Bambu PETG Matte @BBL X1C 0.8 nozzle.json | 83 + .../filament/Bambu PETG Matte @BBL X1C.json | 76 + .../Bambu PETG Matte @BBL X2D 0.2 nozzle.json | 131 + .../Bambu PETG Matte @BBL X2D 0.4 nozzle.json | 143 + .../Bambu PETG Matte @BBL X2D 0.8 nozzle.json | 134 + .../filament/Bambu PETG Matte @BBL X2D.json | 140 + .../BBL/filament/Bambu PETG Matte @base.json | 81 + ...u PETG Translucent @BBL A1 0.2 nozzle.json | 56 +- ...u PETG Translucent @BBL A1 0.8 nozzle.json | 70 +- .../Bambu PETG Translucent @BBL A1.json | 50 +- ... PETG Translucent @BBL A1M 0.2 nozzle.json | 56 +- ... PETG Translucent @BBL A1M 0.8 nozzle.json | 70 +- .../Bambu PETG Translucent @BBL A1M.json | 50 +- ... PETG Translucent @BBL A2L 0.2 nozzle.json | 128 +- ... PETG Translucent @BBL A2L 0.6 nozzle.json | 80 +- ... PETG Translucent @BBL A2L 0.8 nozzle.json | 80 +- .../Bambu PETG Translucent @BBL A2L.json | 68 +- ... PETG Translucent @BBL H2C 0.2 nozzle.json | 267 +- ... PETG Translucent @BBL H2C 0.4 nozzle.json | 299 +- ... PETG Translucent @BBL H2C 0.8 nozzle.json | 124 + .../Bambu PETG Translucent @BBL H2C.json | 312 +- ... PETG Translucent @BBL H2D 0.2 nozzle.json | 187 +- ... PETG Translucent @BBL H2D 0.4 nozzle.json | 197 +- ... PETG Translucent @BBL H2D 0.6 nozzle.json | 205 +- ... PETG Translucent @BBL H2D 0.8 nozzle.json | 80 + ...PETG Translucent @BBL H2DP 0.2 nozzle.json | 181 +- ...PETG Translucent @BBL H2DP 0.4 nozzle.json | 179 +- ...PETG Translucent @BBL H2DP 0.6 nozzle.json | 192 +- ...PETG Translucent @BBL H2DP 0.8 nozzle.json | 76 + ... PETG Translucent @BBL H2S 0.2 nozzle.json | 199 +- ... PETG Translucent @BBL H2S 0.6 nozzle.json | 105 + ... PETG Translucent @BBL H2S 0.8 nozzle.json | 94 + .../Bambu PETG Translucent @BBL H2S.json | 222 +- ... PETG Translucent @BBL P2S 0.2 nozzle.json | 261 +- ... PETG Translucent @BBL P2S 0.4 nozzle.json | 238 +- ... PETG Translucent @BBL P2S 0.6 nozzle.json | 251 +- ... PETG Translucent @BBL P2S 0.8 nozzle.json | 83 + ... PETG Translucent @BBL X1C 0.2 nozzle.json | 181 +- ... PETG Translucent @BBL X1C 0.6 nozzle.json | 63 + ... PETG Translucent @BBL X1C 0.8 nozzle.json | 200 +- .../Bambu PETG Translucent @BBL X1C.json | 181 +- ... PETG Translucent @BBL X2D 0.2 nozzle.json | 413 +- ... PETG Translucent @BBL X2D 0.4 nozzle.json | 414 +- ... PETG Translucent @BBL X2D 0.8 nozzle.json | 383 +- .../Bambu PETG Translucent @BBL X2D.json | 405 +- .../Bambu PETG Translucent @base.json | 166 +- .../Bambu PETG-CF @BBL A1 0.4 nozzle.json | 62 +- .../Bambu PETG-CF @BBL A1 0.8 nozzle.json | 64 +- .../Bambu PETG-CF @BBL A1M 0.4 nozzle.json | 26 +- .../BBL/filament/Bambu PETG-CF @BBL A1M.json | 46 +- .../Bambu PETG-CF @BBL A2L 0.4 nozzle.json | 86 +- .../Bambu PETG-CF @BBL A2L 0.8 nozzle.json | 80 +- .../BBL/filament/Bambu PETG-CF @BBL A2L.json | 80 +- .../Bambu PETG-CF @BBL H2C 0.4 nozzle.json | 329 +- .../Bambu PETG-CF @BBL H2C 0.8 nozzle.json | 124 + .../BBL/filament/Bambu PETG-CF @BBL H2C.json | 330 +- .../Bambu PETG-CF @BBL H2D 0.4 nozzle.json | 251 +- .../Bambu PETG-CF @BBL H2D 0.6 nozzle.json | 229 +- .../Bambu PETG-CF @BBL H2D 0.8 nozzle.json | 74 + .../Bambu PETG-CF @BBL H2DP 0.4 nozzle.json | 227 +- .../Bambu PETG-CF @BBL H2DP 0.6 nozzle.json | 192 +- .../Bambu PETG-CF @BBL H2DP 0.8 nozzle.json | 76 + .../Bambu PETG-CF @BBL H2S 0.6 nozzle.json | 115 + .../Bambu PETG-CF @BBL H2S 0.8 nozzle.json | 108 + .../BBL/filament/Bambu PETG-CF @BBL H2S.json | 238 +- .../Bambu PETG-CF @BBL P2S 0.4 nozzle.json | 275 +- .../Bambu PETG-CF @BBL P2S 0.6 nozzle.json | 276 +- .../Bambu PETG-CF @BBL P2S 0.8 nozzle.json | 106 + .../Bambu PETG-CF @BBL X1C 0.4 nozzle.json | 201 +- .../BBL/filament/Bambu PETG-CF @BBL X1C.json | 209 +- .../Bambu PETG-CF @BBL X2D 0.4 nozzle.json | 433 +- .../Bambu PETG-CF @BBL X2D 0.8 nozzle.json | 443 +- .../BBL/filament/Bambu PETG-CF @BBL X2D.json | 465 +- .../BBL/filament/Bambu PETG-CF @base.json | 161 +- .../BBL/filament/Bambu PLA Aero @BBL A1.json | 78 +- .../BBL/filament/Bambu PLA Aero @BBL A1M.json | 78 +- .../Bambu PLA Aero @BBL A2L 0.6 nozzle.json | 86 +- .../Bambu PLA Aero @BBL A2L 0.8 nozzle.json | 86 +- .../BBL/filament/Bambu PLA Aero @BBL A2L.json | 86 +- .../Bambu PLA Aero @BBL H2C 0.4 nozzle.json | 286 +- .../BBL/filament/Bambu PLA Aero @BBL H2C.json | 288 +- .../BBL/filament/Bambu PLA Aero @BBL H2D.json | 212 +- .../filament/Bambu PLA Aero @BBL H2DP.json | 199 +- .../BBL/filament/Bambu PLA Aero @BBL H2S.json | 233 +- .../BBL/filament/Bambu PLA Aero @BBL P2S.json | 256 +- .../BBL/filament/Bambu PLA Aero @BBL X1.json | 179 +- .../BBL/filament/Bambu PLA Aero @BBL X1C.json | 197 +- .../Bambu PLA Aero @BBL X2D 0.4 nozzle.json | 411 +- .../BBL/filament/Bambu PLA Aero @BBL X2D.json | 389 +- .../BBL/filament/Bambu PLA Aero @base.json | 97 +- .../Bambu PLA Basic @BBL A1 0.2 nozzle.json | 92 +- .../BBL/filament/Bambu PLA Basic @BBL A1.json | 90 +- .../Bambu PLA Basic @BBL A1M 0.2 nozzle.json | 92 +- .../filament/Bambu PLA Basic @BBL A1M.json | 90 +- .../Bambu PLA Basic @BBL A2L 0.2 nozzle.json | 128 +- .../Bambu PLA Basic @BBL A2L 0.4 nozzle.json | 128 +- .../Bambu PLA Basic @BBL A2L 0.6 nozzle.json | 122 +- .../Bambu PLA Basic @BBL A2L 0.8 nozzle.json | 122 +- .../Bambu PLA Basic @BBL H2C 0.2 nozzle.json | 335 +- .../Bambu PLA Basic @BBL H2C 0.6 nozzle.json | 364 +- .../Bambu PLA Basic @BBL H2C 0.8 nozzle.json | 351 +- .../filament/Bambu PLA Basic @BBL H2C.json | 364 +- .../Bambu PLA Basic @BBL H2D 0.2 nozzle.json | 240 +- .../Bambu PLA Basic @BBL H2D 0.6 nozzle.json | 283 +- .../Bambu PLA Basic @BBL H2D 0.8 nozzle.json | 256 +- .../filament/Bambu PLA Basic @BBL H2D.json | 279 +- .../Bambu PLA Basic @BBL H2DP 0.2 nozzle.json | 213 +- .../Bambu PLA Basic @BBL H2DP 0.6 nozzle.json | 251 +- .../Bambu PLA Basic @BBL H2DP 0.8 nozzle.json | 229 +- .../filament/Bambu PLA Basic @BBL H2DP.json | 251 +- .../Bambu PLA Basic @BBL H2S 0.2 nozzle.json | 246 +- .../Bambu PLA Basic @BBL H2S 0.6 nozzle.json | 275 +- .../Bambu PLA Basic @BBL H2S 0.8 nozzle.json | 264 +- .../filament/Bambu PLA Basic @BBL H2S.json | 269 +- .../Bambu PLA Basic @BBL P1S 0.4 nozzle.json | 73 + .../Bambu PLA Basic @BBL P1S 0.6 nozzle.json | 73 + .../Bambu PLA Basic @BBL P2S 0.2 nozzle.json | 273 +- .../Bambu PLA Basic @BBL P2S 0.6 nozzle.json | 288 +- .../Bambu PLA Basic @BBL P2S 0.8 nozzle.json | 281 +- .../filament/Bambu PLA Basic @BBL P2S.json | 273 +- .../BBL/filament/Bambu PLA Basic @BBL X1.json | 181 +- .../Bambu PLA Basic @BBL X1C 0.2 nozzle.json | 183 +- .../Bambu PLA Basic @BBL X1C 0.6 nozzle.json | 73 + .../Bambu PLA Basic @BBL X1C 0.8 nozzle.json | 181 +- .../filament/Bambu PLA Basic @BBL X1C.json | 192 +- .../Bambu PLA Basic @BBL X2D 0.2 nozzle.json | 455 +- .../Bambu PLA Basic @BBL X2D 0.4 nozzle.json | 455 +- .../Bambu PLA Basic @BBL X2D 0.6 nozzle.json | 164 + .../Bambu PLA Basic @BBL X2D 0.8 nozzle.json | 155 + .../filament/Bambu PLA Basic @BBL X2D.json | 297 - .../BBL/filament/Bambu PLA Basic @base.json | 84 +- .../Bambu PLA Dynamic @BBL A1 0.2 nozzle.json | 86 +- .../filament/Bambu PLA Dynamic @BBL A1.json | 90 +- ...Bambu PLA Dynamic @BBL A1M 0.2 nozzle.json | 86 +- .../filament/Bambu PLA Dynamic @BBL A1M.json | 90 +- ...Bambu PLA Dynamic @BBL A2L 0.2 nozzle.json | 104 +- ...Bambu PLA Dynamic @BBL A2L 0.6 nozzle.json | 92 +- ...Bambu PLA Dynamic @BBL A2L 0.8 nozzle.json | 92 +- .../filament/Bambu PLA Dynamic @BBL A2L.json | 92 +- ...Bambu PLA Dynamic @BBL H2C 0.2 nozzle.json | 281 +- ...Bambu PLA Dynamic @BBL H2C 0.4 nozzle.json | 312 +- .../filament/Bambu PLA Dynamic @BBL H2C.json | 314 +- ...Bambu PLA Dynamic @BBL H2D 0.2 nozzle.json | 201 +- ...Bambu PLA Dynamic @BBL H2D 0.8 nozzle.json | 217 +- .../filament/Bambu PLA Dynamic @BBL H2D.json | 230 +- ...ambu PLA Dynamic @BBL H2DP 0.2 nozzle.json | 195 +- ...ambu PLA Dynamic @BBL H2DP 0.8 nozzle.json | 211 +- .../filament/Bambu PLA Dynamic @BBL H2DP.json | 213 +- ...Bambu PLA Dynamic @BBL H2S 0.2 nozzle.json | 225 +- .../filament/Bambu PLA Dynamic @BBL H2S.json | 254 +- ...Bambu PLA Dynamic @BBL P1P 0.2 nozzle.json | 199 +- ...Bambu PLA Dynamic @BBL P1P 0.6 nozzle.json | 83 + .../filament/Bambu PLA Dynamic @BBL P1P.json | 224 +- ...Bambu PLA Dynamic @BBL P2S 0.2 nozzle.json | 241 +- ...Bambu PLA Dynamic @BBL P2S 0.8 nozzle.json | 237 +- .../filament/Bambu PLA Dynamic @BBL P2S.json | 248 +- ...Bambu PLA Dynamic @BBL X1C 0.2 nozzle.json | 175 +- ...Bambu PLA Dynamic @BBL X1C 0.6 nozzle.json | 66 + ...Bambu PLA Dynamic @BBL X1C 0.8 nozzle.json | 175 +- .../filament/Bambu PLA Dynamic @BBL X1C.json | 197 +- ...Bambu PLA Dynamic @BBL X2D 0.2 nozzle.json | 365 +- ...Bambu PLA Dynamic @BBL X2D 0.4 nozzle.json | 369 +- .../filament/Bambu PLA Dynamic @BBL X2D.json | 403 +- .../BBL/filament/Bambu PLA Dynamic @base.json | 44 +- .../Bambu PLA Galaxy @BBL A1 0.2 nozzle.json | 92 +- .../filament/Bambu PLA Galaxy @BBL A1.json | 90 +- .../Bambu PLA Galaxy @BBL A1M 0.2 nozzle.json | 92 +- .../filament/Bambu PLA Galaxy @BBL A1M.json | 90 +- .../Bambu PLA Galaxy @BBL A2L 0.2 nozzle.json | 140 +- .../Bambu PLA Galaxy @BBL A2L 0.6 nozzle.json | 116 +- .../Bambu PLA Galaxy @BBL A2L 0.8 nozzle.json | 116 +- .../filament/Bambu PLA Galaxy @BBL A2L.json | 116 +- .../Bambu PLA Galaxy @BBL H2C 0.2 nozzle.json | 281 +- .../Bambu PLA Galaxy @BBL H2C 0.4 nozzle.json | 312 +- .../filament/Bambu PLA Galaxy @BBL H2C.json | 314 +- .../Bambu PLA Galaxy @BBL H2D 0.2 nozzle.json | 201 +- .../Bambu PLA Galaxy @BBL H2D 0.8 nozzle.json | 217 +- .../filament/Bambu PLA Galaxy @BBL H2D.json | 230 +- ...Bambu PLA Galaxy @BBL H2DP 0.2 nozzle.json | 195 +- ...Bambu PLA Galaxy @BBL H2DP 0.8 nozzle.json | 211 +- .../filament/Bambu PLA Galaxy @BBL H2DP.json | 213 +- .../Bambu PLA Galaxy @BBL H2S 0.2 nozzle.json | 231 +- .../filament/Bambu PLA Galaxy @BBL H2S.json | 260 +- .../Bambu PLA Galaxy @BBL P1P 0.2 nozzle.json | 207 +- .../Bambu PLA Galaxy @BBL P1P 0.6 nozzle.json | 91 + .../filament/Bambu PLA Galaxy @BBL P1P.json | 232 +- .../Bambu PLA Galaxy @BBL P2S 0.2 nozzle.json | 257 +- .../Bambu PLA Galaxy @BBL P2S 0.8 nozzle.json | 245 +- .../filament/Bambu PLA Galaxy @BBL P2S.json | 259 +- .../Bambu PLA Galaxy @BBL X1C 0.2 nozzle.json | 183 +- .../Bambu PLA Galaxy @BBL X1C 0.6 nozzle.json | 74 + .../Bambu PLA Galaxy @BBL X1C 0.8 nozzle.json | 183 +- .../filament/Bambu PLA Galaxy @BBL X1C.json | 205 +- .../Bambu PLA Galaxy @BBL X2D 0.2 nozzle.json | 407 +- .../Bambu PLA Galaxy @BBL X2D 0.4 nozzle.json | 409 +- .../filament/Bambu PLA Galaxy @BBL X2D.json | 411 +- .../BBL/filament/Bambu PLA Galaxy @base.json | 56 +- .../Bambu PLA Glow @BBL A1 0.2 nozzle.json | 80 +- .../BBL/filament/Bambu PLA Glow @BBL A1.json | 78 +- .../Bambu PLA Glow @BBL A1M 0.2 nozzle.json | 80 +- .../BBL/filament/Bambu PLA Glow @BBL A1M.json | 78 +- .../Bambu PLA Glow @BBL A2L 0.4 nozzle.json | 110 +- .../Bambu PLA Glow @BBL A2L 0.6 nozzle.json | 110 +- .../Bambu PLA Glow @BBL A2L 0.8 nozzle.json | 92 +- .../Bambu PLA Glow @BBL H2C 0.4 nozzle.json | 312 +- .../BBL/filament/Bambu PLA Glow @BBL H2C.json | 314 +- .../BBL/filament/Bambu PLA Glow @BBL H2D.json | 232 +- .../Bambu PLA Glow @BBL H2DP 0.2 nozzle.json | 211 +- .../filament/Bambu PLA Glow @BBL H2DP.json | 215 +- .../Bambu PLA Glow @BBL H2S 0.2 nozzle.json | 143 - .../BBL/filament/Bambu PLA Glow @BBL H2S.json | 261 +- .../Bambu PLA Glow @BBL P1P 0.2 nozzle.json | 28 +- .../Bambu PLA Glow @BBL P1P 0.6 nozzle.json | 91 + .../BBL/filament/Bambu PLA Glow @BBL P1P.json | 232 +- .../Bambu PLA Glow @BBL P2S 0.2 nozzle.json | 255 +- .../Bambu PLA Glow @BBL P2S 0.6 nozzle.json | 277 +- .../Bambu PLA Glow @BBL P2S 0.8 nozzle.json | 257 +- .../BBL/filament/Bambu PLA Glow @BBL P2S.json | 257 +- .../Bambu PLA Glow @BBL X1 0.2 nozzle.json | 28 +- .../BBL/filament/Bambu PLA Glow @BBL X1.json | 181 +- .../Bambu PLA Glow @BBL X1C 0.2 nozzle.json | 30 +- .../Bambu PLA Glow @BBL X1C 0.6 nozzle.json | 74 + .../BBL/filament/Bambu PLA Glow @BBL X1C.json | 201 +- .../Bambu PLA Glow @BBL X1E 0.2 nozzle.json | 28 +- .../BBL/filament/Bambu PLA Glow @BBL X1E.json | 181 +- .../Bambu PLA Glow @BBL X2D 0.2 nozzle.json | 199 +- .../Bambu PLA Glow @BBL X2D 0.4 nozzle.json | 409 +- .../BBL/filament/Bambu PLA Glow @BBL X2D.json | 411 +- .../BBL/filament/Bambu PLA Glow @base.json | 62 +- .../Bambu PLA Lite @BBL A1 0.2 nozzle.json | 98 +- .../BBL/filament/Bambu PLA Lite @BBL A1.json | 96 +- .../Bambu PLA Lite @BBL A1M 0.2 nozzle.json | 98 +- .../BBL/filament/Bambu PLA Lite @BBL A1M.json | 96 +- .../Bambu PLA Lite @BBL A2L 0.2 nozzle.json | 152 +- .../Bambu PLA Lite @BBL A2L 0.4 nozzle.json | 134 +- .../Bambu PLA Lite @BBL A2L 0.6 nozzle.json | 128 +- .../Bambu PLA Lite @BBL A2L 0.8 nozzle.json | 134 +- .../Bambu PLA Lite @BBL H2C 0.2 nozzle.json | 305 +- .../Bambu PLA Lite @BBL H2C 0.4 nozzle.json | 364 +- .../Bambu PLA Lite @BBL H2C 0.8 nozzle.json | 152 + .../BBL/filament/Bambu PLA Lite @BBL H2C.json | 365 +- .../Bambu PLA Lite @BBL H2D 0.2 nozzle.json | 231 +- .../Bambu PLA Lite @BBL H2D 0.6 nozzle.json | 143 + .../Bambu PLA Lite @BBL H2D 0.8 nozzle.json | 262 +- .../BBL/filament/Bambu PLA Lite @BBL H2D.json | 289 +- .../Bambu PLA Lite @BBL H2DP 0.2 nozzle.json | 229 +- .../Bambu PLA Lite @BBL H2DP 0.4 nozzle.json | 269 +- .../Bambu PLA Lite @BBL H2DP 0.6 nozzle.json | 269 +- .../Bambu PLA Lite @BBL H2DP 0.8 nozzle.json | 241 +- .../Bambu PLA Lite @BBL H2S 0.2 nozzle.json | 225 +- .../Bambu PLA Lite @BBL H2S 0.6 nozzle.json | 124 + .../Bambu PLA Lite @BBL H2S 0.8 nozzle.json | 111 + .../BBL/filament/Bambu PLA Lite @BBL H2S.json | 250 +- .../Bambu PLA Lite @BBL P1P 0.2 nozzle.json | 207 +- .../Bambu PLA Lite @BBL P1P 0.6 nozzle.json | 95 + .../BBL/filament/Bambu PLA Lite @BBL P1P.json | 236 +- .../Bambu PLA Lite @BBL P2S 0.2 nozzle.json | 243 +- .../Bambu PLA Lite @BBL P2S 0.4 nozzle.json | 263 +- .../Bambu PLA Lite @BBL P2S 0.6 nozzle.json | 263 +- .../Bambu PLA Lite @BBL P2S 0.8 nozzle.json | 251 +- .../Bambu PLA Lite @BBL X1C 0.2 nozzle.json | 183 +- .../Bambu PLA Lite @BBL X1C 0.6 nozzle.json | 78 + .../Bambu PLA Lite @BBL X1C 0.8 nozzle.json | 183 +- .../BBL/filament/Bambu PLA Lite @BBL X1C.json | 209 +- .../Bambu PLA Lite @BBL X2D 0.2 nozzle.json | 407 +- .../Bambu PLA Lite @BBL X2D 0.4 nozzle.json | 407 +- .../Bambu PLA Lite @BBL X2D 0.8 nozzle.json | 131 + .../BBL/filament/Bambu PLA Lite @BBL X2D.json | 408 +- .../BBL/filament/Bambu PLA Lite @base.json | 83 +- .../filament/Bambu PLA Marble @BBL A1.json | 84 +- .../filament/Bambu PLA Marble @BBL A1M.json | 84 +- .../Bambu PLA Marble @BBL A2L 0.6 nozzle.json | 98 +- .../Bambu PLA Marble @BBL A2L 0.8 nozzle.json | 98 +- .../filament/Bambu PLA Marble @BBL A2L.json | 98 +- .../Bambu PLA Marble @BBL H2C 0.4 nozzle.json | 312 +- .../filament/Bambu PLA Marble @BBL H2C.json | 314 +- .../filament/Bambu PLA Marble @BBL H2D.json | 232 +- .../filament/Bambu PLA Marble @BBL H2DP.json | 215 +- .../filament/Bambu PLA Marble @BBL H2S.json | 260 +- .../Bambu PLA Marble @BBL P2S 0.8 nozzle.json | 251 +- .../filament/Bambu PLA Marble @BBL P2S.json | 259 +- .../filament/Bambu PLA Marble @BBL X1.json | 181 +- .../Bambu PLA Marble @BBL X1C 0.6 nozzle.json | 74 + .../filament/Bambu PLA Marble @BBL X1C.json | 207 +- .../Bambu PLA Marble @BBL X2D 0.4 nozzle.json | 409 +- .../filament/Bambu PLA Marble @BBL X2D.json | 411 +- .../BBL/filament/Bambu PLA Marble @base.json | 50 +- .../Bambu PLA Matte @BBL A1 0.2 nozzle.json | 92 +- .../BBL/filament/Bambu PLA Matte @BBL A1.json | 96 +- .../Bambu PLA Matte @BBL A1M 0.2 nozzle.json | 92 +- .../filament/Bambu PLA Matte @BBL A1M.json | 96 +- .../Bambu PLA Matte @BBL A2L 0.2 nozzle.json | 140 +- .../Bambu PLA Matte @BBL A2L 0.4 nozzle.json | 128 +- .../Bambu PLA Matte @BBL A2L 0.6 nozzle.json | 128 +- .../Bambu PLA Matte @BBL A2L 0.8 nozzle.json | 122 +- .../Bambu PLA Matte @BBL H2C 0.2 nozzle.json | 335 +- .../Bambu PLA Matte @BBL H2C 0.6 nozzle.json | 364 +- .../Bambu PLA Matte @BBL H2C 0.8 nozzle.json | 351 +- .../filament/Bambu PLA Matte @BBL H2C.json | 364 +- .../Bambu PLA Matte @BBL H2D 0.2 nozzle.json | 243 +- .../Bambu PLA Matte @BBL H2D 0.6 nozzle.json | 292 +- .../Bambu PLA Matte @BBL H2D 0.8 nozzle.json | 259 +- .../filament/Bambu PLA Matte @BBL H2D.json | 288 +- .../Bambu PLA Matte @BBL H2DP 0.2 nozzle.json | 213 +- .../Bambu PLA Matte @BBL H2DP 0.6 nozzle.json | 263 +- .../Bambu PLA Matte @BBL H2DP 0.8 nozzle.json | 229 +- .../filament/Bambu PLA Matte @BBL H2DP.json | 263 +- .../Bambu PLA Matte @BBL H2S 0.2 nozzle.json | 243 +- .../Bambu PLA Matte @BBL H2S 0.6 nozzle.json | 272 +- .../Bambu PLA Matte @BBL H2S 0.8 nozzle.json | 261 +- .../filament/Bambu PLA Matte @BBL H2S.json | 266 +- .../Bambu PLA Matte @BBL P1S 0.4 nozzle.json | 73 + .../Bambu PLA Matte @BBL P1S 0.6 nozzle.json | 73 + .../Bambu PLA Matte @BBL P2S 0.2 nozzle.json | 291 +- .../Bambu PLA Matte @BBL P2S 0.6 nozzle.json | 299 +- .../Bambu PLA Matte @BBL P2S 0.8 nozzle.json | 287 +- .../filament/Bambu PLA Matte @BBL P2S.json | 299 +- .../BBL/filament/Bambu PLA Matte @BBL X1.json | 187 +- .../Bambu PLA Matte @BBL X1C 0.2 nozzle.json | 183 +- .../Bambu PLA Matte @BBL X1C 0.6 nozzle.json | 65 + .../Bambu PLA Matte @BBL X1C 0.8 nozzle.json | 181 +- .../filament/Bambu PLA Matte @BBL X1C.json | 200 +- .../Bambu PLA Matte @BBL X2D 0.2 nozzle.json | 455 +- .../Bambu PLA Matte @BBL X2D 0.4 nozzle.json | 455 +- .../Bambu PLA Matte @BBL X2D 0.8 nozzle.json | 155 + .../filament/Bambu PLA Matte @BBL X2D.json | 456 +- .../BBL/filament/Bambu PLA Matte @base.json | 68 +- .../Bambu PLA Metal @BBL A1 0.2 nozzle.json | 74 +- .../BBL/filament/Bambu PLA Metal @BBL A1.json | 78 +- .../Bambu PLA Metal @BBL A1M 0.2 nozzle.json | 74 +- .../filament/Bambu PLA Metal @BBL A1M.json | 78 +- .../Bambu PLA Metal @BBL A2L 0.2 nozzle.json | 128 +- .../Bambu PLA Metal @BBL A2L 0.6 nozzle.json | 110 +- .../Bambu PLA Metal @BBL A2L 0.8 nozzle.json | 86 +- .../filament/Bambu PLA Metal @BBL A2L.json | 86 +- .../Bambu PLA Metal @BBL H2C 0.2 nozzle.json | 281 +- .../Bambu PLA Metal @BBL H2C 0.4 nozzle.json | 312 +- .../filament/Bambu PLA Metal @BBL H2C.json | 314 +- .../Bambu PLA Metal @BBL H2D 0.2 nozzle.json | 201 +- .../filament/Bambu PLA Metal @BBL H2D.json | 232 +- .../Bambu PLA Metal @BBL H2DP 0.2 nozzle.json | 195 +- .../filament/Bambu PLA Metal @BBL H2DP.json | 215 +- .../Bambu PLA Metal @BBL H2S 0.2 nozzle.json | 225 +- .../filament/Bambu PLA Metal @BBL H2S.json | 254 +- .../Bambu PLA Metal @BBL P2S 0.2 nozzle.json | 257 +- .../Bambu PLA Metal @BBL P2S 0.6 nozzle.json | 263 +- .../Bambu PLA Metal @BBL P2S 0.8 nozzle.json | 257 +- .../filament/Bambu PLA Metal @BBL P2S.json | 252 +- .../BBL/filament/Bambu PLA Metal @BBL X1.json | 173 +- .../Bambu PLA Metal @BBL X1C 0.2 nozzle.json | 175 +- .../Bambu PLA Metal @BBL X1C 0.6 nozzle.json | 66 + .../filament/Bambu PLA Metal @BBL X1C.json | 199 +- .../Bambu PLA Metal @BBL X2D 0.2 nozzle.json | 401 +- .../Bambu PLA Metal @BBL X2D 0.4 nozzle.json | 401 +- .../filament/Bambu PLA Metal @BBL X2D.json | 409 +- .../BBL/filament/Bambu PLA Metal @base.json | 55 +- .../Bambu PLA Pure @BBL A1 0.2 nozzle.json | 44 + .../Bambu PLA Pure @BBL A1 0.8 nozzle.json | 51 + .../BBL/filament/Bambu PLA Pure @BBL A1.json | 50 + .../Bambu PLA Pure @BBL A1M 0.2 nozzle.json | 44 + .../Bambu PLA Pure @BBL A1M 0.8 nozzle.json | 51 + .../BBL/filament/Bambu PLA Pure @BBL A1M.json | 50 + .../Bambu PLA Pure @BBL A2L 0.2 nozzle.json | 110 +- .../Bambu PLA Pure @BBL A2L 0.6 nozzle.json | 98 +- .../Bambu PLA Pure @BBL A2L 0.8 nozzle.json | 98 +- .../BBL/filament/Bambu PLA Pure @BBL A2L.json | 104 +- .../Bambu PLA Pure @BBL H2C 0.2 nozzle.json | 271 +- .../Bambu PLA Pure @BBL H2C 0.6 nozzle.json | 134 + .../Bambu PLA Pure @BBL H2C 0.8 nozzle.json | 119 + .../BBL/filament/Bambu PLA Pure @BBL H2C.json | 295 +- .../Bambu PLA Pure @BBL H2D 0.2 nozzle.json | 239 +- .../Bambu PLA Pure @BBL H2D 0.6 nozzle.json | 107 + .../Bambu PLA Pure @BBL H2D 0.8 nozzle.json | 246 +- .../BBL/filament/Bambu PLA Pure @BBL H2D.json | 256 +- .../Bambu PLA Pure @BBL H2DP 0.2 nozzle.json | 235 +- .../Bambu PLA Pure @BBL H2DP 0.6 nozzle.json | 91 + .../Bambu PLA Pure @BBL H2DP 0.8 nozzle.json | 242 +- .../filament/Bambu PLA Pure @BBL H2DP.json | 239 +- .../Bambu PLA Pure @BBL H2S 0.2 nozzle.json | 247 +- .../Bambu PLA Pure @BBL H2S 0.6 nozzle.json | 113 + .../Bambu PLA Pure @BBL H2S 0.8 nozzle.json | 100 + .../BBL/filament/Bambu PLA Pure @BBL H2S.json | 268 +- .../Bambu PLA Pure @BBL P1P 0.2 nozzle.json | 74 + .../Bambu PLA Pure @BBL P1P 0.8 nozzle.json | 88 + .../BBL/filament/Bambu PLA Pure @BBL P1P.json | 87 + .../Bambu PLA Pure @BBL P2S 0.2 nozzle.json | 82 + .../Bambu PLA Pure @BBL P2S 0.4 nozzle.json | 106 + .../Bambu PLA Pure @BBL P2S 0.6 nozzle.json | 105 + .../Bambu PLA Pure @BBL P2S 0.8 nozzle.json | 91 + .../Bambu PLA Pure @BBL X1C 0.2 nozzle.json | 56 + .../Bambu PLA Pure @BBL X1C 0.8 nozzle.json | 73 + .../BBL/filament/Bambu PLA Pure @BBL X1C.json | 70 + .../Bambu PLA Pure @BBL X2D 0.2 nozzle.json | 101 + .../Bambu PLA Pure @BBL X2D 0.4 nozzle.json | 143 + .../Bambu PLA Pure @BBL X2D 0.6 nozzle.json | 142 + .../Bambu PLA Pure @BBL X2D 0.8 nozzle.json | 116 + .../BBL/filament/Bambu PLA Pure @base.json | 56 +- .../Bambu PLA Silk @BBL A1 0.2 nozzle.json | 80 +- .../BBL/filament/Bambu PLA Silk @BBL A1.json | 78 +- .../Bambu PLA Silk @BBL A1M 0.2 nozzle.json | 80 +- .../BBL/filament/Bambu PLA Silk @BBL A1M.json | 78 +- .../Bambu PLA Silk @BBL A2L 0.2 nozzle.json | 122 +- .../Bambu PLA Silk @BBL A2L 0.4 nozzle.json | 110 +- .../Bambu PLA Silk @BBL A2L 0.6 nozzle.json | 104 +- .../Bambu PLA Silk @BBL A2L 0.8 nozzle.json | 110 +- .../Bambu PLA Silk @BBL H2C 0.2 nozzle.json | 323 +- .../Bambu PLA Silk @BBL H2C 0.4 nozzle.json | 354 +- .../BBL/filament/Bambu PLA Silk @BBL H2C.json | 356 +- .../Bambu PLA Silk @BBL H2D 0.2 nozzle.json | 225 +- .../BBL/filament/Bambu PLA Silk @BBL H2D.json | 274 +- .../Bambu PLA Silk @BBL H2DP 0.2 nozzle.json | 201 +- .../filament/Bambu PLA Silk @BBL H2DP.json | 257 +- .../Bambu PLA Silk @BBL H2S 0.2 nozzle.json | 237 +- .../BBL/filament/Bambu PLA Silk @BBL H2S.json | 271 +- .../Bambu PLA Silk @BBL P2S 0.2 nozzle.json | 271 +- .../Bambu PLA Silk @BBL P2S 0.6 nozzle.json | 301 +- .../Bambu PLA Silk @BBL P2S 0.8 nozzle.json | 287 +- .../BBL/filament/Bambu PLA Silk @BBL P2S.json | 301 +- .../BBL/filament/Bambu PLA Silk @BBL X1.json | 173 +- .../Bambu PLA Silk @BBL X1C 0.2 nozzle.json | 175 +- .../BBL/filament/Bambu PLA Silk @BBL X1C.json | 185 +- .../Bambu PLA Silk @BBL X2D 0.2 nozzle.json | 449 +- .../Bambu PLA Silk @BBL X2D 0.4 nozzle.json | 463 +- .../BBL/filament/Bambu PLA Silk @BBL X2D.json | 465 +- .../BBL/filament/Bambu PLA Silk @base.json | 88 +- .../Bambu PLA Silk+ @BBL A1 0.2 nozzle.json | 86 +- .../BBL/filament/Bambu PLA Silk+ @BBL A1.json | 84 +- .../Bambu PLA Silk+ @BBL A1M 0.2 nozzle.json | 86 +- .../filament/Bambu PLA Silk+ @BBL A1M.json | 84 +- .../Bambu PLA Silk+ @BBL A2L 0.2 nozzle.json | 140 +- .../Bambu PLA Silk+ @BBL A2L 0.4 nozzle.json | 122 +- .../Bambu PLA Silk+ @BBL A2L 0.6 nozzle.json | 122 +- .../Bambu PLA Silk+ @BBL A2L 0.8 nozzle.json | 122 +- .../Bambu PLA Silk+ @BBL H2C 0.2 nozzle.json | 287 +- .../Bambu PLA Silk+ @BBL H2C 0.4 nozzle.json | 311 +- .../Bambu PLA Silk+ @BBL H2C 0.8 nozzle.json | 124 + .../filament/Bambu PLA Silk+ @BBL H2C.json | 312 +- .../Bambu PLA Silk+ @BBL H2D 0.2 nozzle.json | 213 +- .../Bambu PLA Silk+ @BBL H2D 0.6 nozzle.json | 124 + .../Bambu PLA Silk+ @BBL H2D 0.8 nozzle.json | 111 + .../filament/Bambu PLA Silk+ @BBL H2D.json | 242 +- .../Bambu PLA Silk+ @BBL H2DP 0.2 nozzle.json | 213 +- .../Bambu PLA Silk+ @BBL H2DP 0.6 nozzle.json | 107 + .../Bambu PLA Silk+ @BBL H2DP 0.8 nozzle.json | 107 + .../filament/Bambu PLA Silk+ @BBL H2DP.json | 229 +- .../Bambu PLA Silk+ @BBL H2S 0.2 nozzle.json | 225 +- .../Bambu PLA Silk+ @BBL H2S 0.6 nozzle.json | 123 + .../Bambu PLA Silk+ @BBL H2S 0.8 nozzle.json | 109 + .../filament/Bambu PLA Silk+ @BBL H2S.json | 255 +- .../Bambu PLA Silk+ @BBL P1P 0.2 nozzle.json | 199 +- .../Bambu PLA Silk+ @BBL P1P 0.6 nozzle.json | 67 + .../filament/Bambu PLA Silk+ @BBL P1P.json | 208 +- .../Bambu PLA Silk+ @BBL P1S 0.4 nozzle.json | 71 + .../Bambu PLA Silk+ @BBL P1S 0.6 nozzle.json | 71 + .../Bambu PLA Silk+ @BBL P2S 0.2 nozzle.json | 259 +- .../Bambu PLA Silk+ @BBL P2S 0.6 nozzle.json | 281 +- .../Bambu PLA Silk+ @BBL P2S 0.8 nozzle.json | 261 +- .../filament/Bambu PLA Silk+ @BBL P2S.json | 267 +- .../BBL/filament/Bambu PLA Silk+ @BBL X1.json | 185 +- .../Bambu PLA Silk+ @BBL X1C 0.2 nozzle.json | 187 +- .../Bambu PLA Silk+ @BBL X1C 0.6 nozzle.json | 71 + .../filament/Bambu PLA Silk+ @BBL X1C.json | 194 +- .../Bambu PLA Silk+ @BBL X2D 0.2 nozzle.json | 413 +- .../Bambu PLA Silk+ @BBL X2D 0.4 nozzle.json | 419 +- .../Bambu PLA Silk+ @BBL X2D 0.8 nozzle.json | 134 + .../filament/Bambu PLA Silk+ @BBL X2D.json | 420 +- .../BBL/filament/Bambu PLA Silk+ @base.json | 73 +- .../filament/Bambu PLA Sparkle @BBL A1.json | 72 +- .../filament/Bambu PLA Sparkle @BBL A1M.json | 72 +- ...Bambu PLA Sparkle @BBL A2L 0.6 nozzle.json | 80 +- ...Bambu PLA Sparkle @BBL A2L 0.8 nozzle.json | 80 +- .../filament/Bambu PLA Sparkle @BBL A2L.json | 80 +- ...Bambu PLA Sparkle @BBL H2C 0.4 nozzle.json | 312 +- .../filament/Bambu PLA Sparkle @BBL H2C.json | 314 +- .../filament/Bambu PLA Sparkle @BBL H2D.json | 232 +- .../filament/Bambu PLA Sparkle @BBL H2DP.json | 215 +- .../filament/Bambu PLA Sparkle @BBL H2S.json | 260 +- ...Bambu PLA Sparkle @BBL P2S 0.6 nozzle.json | 268 +- ...Bambu PLA Sparkle @BBL P2S 0.8 nozzle.json | 247 +- .../filament/Bambu PLA Sparkle @BBL P2S.json | 252 +- .../filament/Bambu PLA Sparkle @BBL X1.json | 173 +- ...Bambu PLA Sparkle @BBL X1C 0.6 nozzle.json | 66 + .../filament/Bambu PLA Sparkle @BBL X1C.json | 199 +- ...Bambu PLA Sparkle @BBL X2D 0.4 nozzle.json | 401 +- .../filament/Bambu PLA Sparkle @BBL X2D.json | 409 +- .../BBL/filament/Bambu PLA Sparkle @base.json | 50 +- .../Bambu PLA Tough @BBL A1 0.2 nozzle.json | 80 +- .../BBL/filament/Bambu PLA Tough @BBL A1.json | 84 +- .../Bambu PLA Tough @BBL A1M 0.2 nozzle.json | 80 +- .../filament/Bambu PLA Tough @BBL A1M.json | 84 +- .../Bambu PLA Tough @BBL A2L 0.2 nozzle.json | 98 +- .../filament/Bambu PLA Tough @BBL A2L.json | 96 +- .../Bambu PLA Tough @BBL H2C 0.2 nozzle.json | 281 +- .../Bambu PLA Tough @BBL H2C 0.4 nozzle.json | 348 +- .../filament/Bambu PLA Tough @BBL H2C.json | 350 +- .../Bambu PLA Tough @BBL H2D 0.2 nozzle.json | 201 +- .../filament/Bambu PLA Tough @BBL H2D.json | 268 +- .../Bambu PLA Tough @BBL H2DP 0.2 nozzle.json | 195 +- .../filament/Bambu PLA Tough @BBL H2DP.json | 251 +- .../Bambu PLA Tough @BBL H2S 0.2 nozzle.json | 225 +- .../filament/Bambu PLA Tough @BBL H2S.json | 254 +- .../Bambu PLA Tough @BBL P2S 0.2 nozzle.json | 241 +- .../filament/Bambu PLA Tough @BBL P2S.json | 250 +- .../BBL/filament/Bambu PLA Tough @BBL X1.json | 173 +- .../Bambu PLA Tough @BBL X1C 0.2 nozzle.json | 175 +- .../filament/Bambu PLA Tough @BBL X1C.json | 187 +- .../Bambu PLA Tough @BBL X2D 0.2 nozzle.json | 365 +- .../Bambu PLA Tough @BBL X2D 0.4 nozzle.json | 369 +- .../filament/Bambu PLA Tough @BBL X2D.json | 403 +- .../BBL/filament/Bambu PLA Tough @base.json | 56 +- .../Bambu PLA Tough+ @BBL A1 0.2 nozzle.json | 86 +- .../filament/Bambu PLA Tough+ @BBL A1.json | 90 +- .../Bambu PLA Tough+ @BBL A1M 0.2 nozzle.json | 86 +- .../filament/Bambu PLA Tough+ @BBL A1M.json | 90 +- .../Bambu PLA Tough+ @BBL A2L 0.2 nozzle.json | 140 +- .../Bambu PLA Tough+ @BBL A2L 0.4 nozzle.json | 92 +- .../Bambu PLA Tough+ @BBL A2L 0.6 nozzle.json | 98 +- .../Bambu PLA Tough+ @BBL A2L 0.8 nozzle.json | 116 +- .../Bambu PLA Tough+ @BBL H2C 0.2 nozzle.json | 269 +- .../Bambu PLA Tough+ @BBL H2C 0.6 nozzle.json | 322 +- .../Bambu PLA Tough+ @BBL H2C 0.8 nozzle.json | 309 +- .../filament/Bambu PLA Tough+ @BBL H2C.json | 322 +- .../Bambu PLA Tough+ @BBL H2D 0.2 nozzle.json | 226 +- .../Bambu PLA Tough+ @BBL H2D 0.6 nozzle.json | 277 +- .../Bambu PLA Tough+ @BBL H2D 0.8 nozzle.json | 254 +- .../filament/Bambu PLA Tough+ @BBL H2D.json | 277 +- ...Bambu PLA Tough+ @BBL H2DP 0.2 nozzle.json | 223 +- ...Bambu PLA Tough+ @BBL H2DP 0.6 nozzle.json | 261 +- ...Bambu PLA Tough+ @BBL H2DP 0.8 nozzle.json | 239 +- .../filament/Bambu PLA Tough+ @BBL H2DP.json | 261 +- .../Bambu PLA Tough+ @BBL H2S 0.2 nozzle.json | 210 +- .../Bambu PLA Tough+ @BBL H2S 0.6 nozzle.json | 233 +- .../Bambu PLA Tough+ @BBL H2S 0.8 nozzle.json | 222 +- .../filament/Bambu PLA Tough+ @BBL H2S.json | 233 +- .../Bambu PLA Tough+ @BBL P2S 0.2 nozzle.json | 249 +- .../Bambu PLA Tough+ @BBL P2S 0.6 nozzle.json | 264 +- .../Bambu PLA Tough+ @BBL P2S 0.8 nozzle.json | 257 +- .../filament/Bambu PLA Tough+ @BBL P2S.json | 249 +- .../filament/Bambu PLA Tough+ @BBL X1.json | 199 +- .../Bambu PLA Tough+ @BBL X1C 0.2 nozzle.json | 183 +- .../Bambu PLA Tough+ @BBL X1C 0.6 nozzle.json | 65 + .../Bambu PLA Tough+ @BBL X1C 0.8 nozzle.json | 181 +- .../filament/Bambu PLA Tough+ @BBL X1C.json | 194 +- .../Bambu PLA Tough+ @BBL X2D 0.2 nozzle.json | 407 +- .../Bambu PLA Tough+ @BBL X2D 0.4 nozzle.json | 407 +- .../Bambu PLA Tough+ @BBL X2D 0.8 nozzle.json | 131 + .../filament/Bambu PLA Tough+ @BBL X2D.json | 408 +- .../BBL/filament/Bambu PLA Tough+ @base.json | 110 +- ...bu PLA Translucent @BBL A1 0.2 nozzle.json | 86 +- ...bu PLA Translucent @BBL A1 0.8 nozzle.json | 82 +- .../Bambu PLA Translucent @BBL A1.json | 80 +- ...u PLA Translucent @BBL A1M 0.2 nozzle.json | 86 +- ...u PLA Translucent @BBL A1M 0.8 nozzle.json | 82 +- .../Bambu PLA Translucent @BBL A1M.json | 80 +- ...u PLA Translucent @BBL A2L 0.2 nozzle.json | 140 +- ...u PLA Translucent @BBL A2L 0.6 nozzle.json | 86 +- ...u PLA Translucent @BBL A2L 0.8 nozzle.json | 86 +- .../Bambu PLA Translucent @BBL A2L.json | 116 +- ...u PLA Translucent @BBL H2C 0.2 nozzle.json | 287 +- ...u PLA Translucent @BBL H2C 0.6 nozzle.json | 143 + ...u PLA Translucent @BBL H2C 0.8 nozzle.json | 128 + .../Bambu PLA Translucent @BBL H2C.json | 318 +- ...u PLA Translucent @BBL H2D 0.2 nozzle.json | 195 +- ...u PLA Translucent @BBL H2D 0.6 nozzle.json | 107 + ...u PLA Translucent @BBL H2D 0.8 nozzle.json | 212 +- .../Bambu PLA Translucent @BBL H2D.json | 222 +- ... PLA Translucent @BBL H2DP 0.2 nozzle.json | 189 +- ... PLA Translucent @BBL H2DP 0.6 nozzle.json | 97 + ... PLA Translucent @BBL H2DP 0.8 nozzle.json | 206 +- .../Bambu PLA Translucent @BBL H2DP.json | 203 +- ...u PLA Translucent @BBL H2S 0.2 nozzle.json | 231 +- ...u PLA Translucent @BBL H2S 0.6 nozzle.json | 128 + ...u PLA Translucent @BBL H2S 0.8 nozzle.json | 115 + .../Bambu PLA Translucent @BBL H2S.json | 258 +- ...u PLA Translucent @BBL P1P 0.2 nozzle.json | 215 +- ...u PLA Translucent @BBL P1P 0.8 nozzle.json | 217 +- .../Bambu PLA Translucent @BBL P1P.json | 215 +- ...u PLA Translucent @BBL P2S 0.2 nozzle.json | 275 +- ...u PLA Translucent @BBL P2S 0.4 nozzle.json | 263 +- ...u PLA Translucent @BBL P2S 0.6 nozzle.json | 271 +- ...u PLA Translucent @BBL P2S 0.8 nozzle.json | 251 +- ...u PLA Translucent @BBL X1C 0.2 nozzle.json | 185 +- ...u PLA Translucent @BBL X1C 0.8 nozzle.json | 193 +- .../Bambu PLA Translucent @BBL X1C.json | 187 +- ...u PLA Translucent @BBL X2D 0.2 nozzle.json | 413 +- ...u PLA Translucent @BBL X2D 0.4 nozzle.json | 423 +- ...u PLA Translucent @BBL X2D 0.6 nozzle.json | 421 +- ...u PLA Translucent @BBL X2D 0.8 nozzle.json | 395 +- .../filament/Bambu PLA Translucent @base.json | 50 +- .../BBL/filament/Bambu PLA Wood @BBL A1.json | 78 +- .../BBL/filament/Bambu PLA Wood @BBL A1M.json | 78 +- .../Bambu PLA Wood @BBL A2L 0.6 nozzle.json | 86 +- .../Bambu PLA Wood @BBL A2L 0.8 nozzle.json | 86 +- .../BBL/filament/Bambu PLA Wood @BBL A2L.json | 86 +- .../Bambu PLA Wood @BBL H2C 0.4 nozzle.json | 312 +- .../BBL/filament/Bambu PLA Wood @BBL H2C.json | 314 +- .../Bambu PLA Wood @BBL H2D 0.8 nozzle.json | 211 +- .../BBL/filament/Bambu PLA Wood @BBL H2D.json | 224 +- .../Bambu PLA Wood @BBL H2DP 0.8 nozzle.json | 211 +- .../filament/Bambu PLA Wood @BBL H2DP.json | 213 +- .../BBL/filament/Bambu PLA Wood @BBL H2S.json | 248 +- .../Bambu PLA Wood @BBL P1P 0.6 nozzle.json | 94 + .../BBL/filament/Bambu PLA Wood @BBL P1P.json | 238 +- .../Bambu PLA Wood @BBL P2S 0.6 nozzle.json | 256 +- .../Bambu PLA Wood @BBL P2S 0.8 nozzle.json | 241 +- .../BBL/filament/Bambu PLA Wood @BBL P2S.json | 251 +- .../BBL/filament/Bambu PLA Wood @BBL X1.json | 187 +- .../Bambu PLA Wood @BBL X1C 0.6 nozzle.json | 71 + .../Bambu PLA Wood @BBL X1C 0.8 nozzle.json | 175 +- .../BBL/filament/Bambu PLA Wood @BBL X1C.json | 195 +- .../Bambu PLA Wood @BBL X2D 0.4 nozzle.json | 409 +- .../BBL/filament/Bambu PLA Wood @BBL X2D.json | 411 +- .../BBL/filament/Bambu PLA Wood @base.json | 71 +- .../Bambu PLA-CF @BBL A1 0.8 nozzle.json | 100 +- .../BBL/filament/Bambu PLA-CF @BBL A1.json | 98 +- .../Bambu PLA-CF @BBL A1M 0.8 nozzle.json | 100 +- .../BBL/filament/Bambu PLA-CF @BBL A1M.json | 98 +- .../Bambu PLA-CF @BBL A2L 0.6 nozzle.json | 110 +- .../Bambu PLA-CF @BBL A2L 0.8 nozzle.json | 110 +- .../BBL/filament/Bambu PLA-CF @BBL A2L.json | 134 +- .../Bambu PLA-CF @BBL H2C 0.4 nozzle.json | 314 +- .../Bambu PLA-CF @BBL H2C 0.8 nozzle.json | 121 + .../BBL/filament/Bambu PLA-CF @BBL H2C.json | 315 +- .../Bambu PLA-CF @BBL H2D 0.4 nozzle.json | 255 +- .../Bambu PLA-CF @BBL H2D 0.6 nozzle.json | 241 +- .../Bambu PLA-CF @BBL H2D 0.8 nozzle.json | 86 + .../Bambu PLA-CF @BBL H2DP 0.4 nozzle.json | 227 +- .../Bambu PLA-CF @BBL H2DP 0.6 nozzle.json | 198 +- .../Bambu PLA-CF @BBL H2DP 0.8 nozzle.json | 88 + .../Bambu PLA-CF @BBL H2S 0.6 nozzle.json | 113 + .../Bambu PLA-CF @BBL H2S 0.8 nozzle.json | 104 + .../BBL/filament/Bambu PLA-CF @BBL H2S.json | 230 +- .../Bambu PLA-CF @BBL P2S 0.4 nozzle.json | 267 +- .../Bambu PLA-CF @BBL P2S 0.6 nozzle.json | 268 +- .../Bambu PLA-CF @BBL P2S 0.8 nozzle.json | 102 + .../Bambu PLA-CF @BBL X1C 0.8 nozzle.json | 203 +- .../BBL/filament/Bambu PLA-CF @BBL X1C.json | 191 +- .../Bambu PLA-CF @BBL X2D 0.4 nozzle.json | 447 +- .../Bambu PLA-CF @BBL X2D 0.8 nozzle.json | 131 + .../BBL/filament/Bambu PLA-CF @BBL X2D.json | 424 +- .../BBL/filament/Bambu PLA-CF @base.json | 110 +- .../Bambu PPA-CF @BBL H2C 0.4 nozzle.json | 317 +- .../BBL/filament/Bambu PPA-CF @BBL H2C.json | 319 +- .../BBL/filament/Bambu PPA-CF @BBL H2D.json | 224 +- .../BBL/filament/Bambu PPA-CF @BBL H2DP.json | 187 +- .../BBL/filament/Bambu PPA-CF @BBL H2S.json | 228 +- .../BBL/filament/Bambu PPA-CF @BBL P2S.json | 274 +- .../Bambu PPA-CF @BBL X1C 0.6 nozzle.json | 63 + .../BBL/filament/Bambu PPA-CF @BBL X1C.json | 187 +- .../BBL/filament/Bambu PPA-CF @BBL X1E.json | 173 +- .../Bambu PPA-CF @BBL X2D 0.4 nozzle.json | 411 +- .../BBL/filament/Bambu PPA-CF @BBL X2D.json | 413 +- .../BBL/filament/Bambu PPA-CF @base.json | 25 +- .../Bambu PPS-CF @BBL H2C 0.4 nozzle.json | 312 +- .../BBL/filament/Bambu PPS-CF @BBL H2C.json | 314 +- .../BBL/filament/Bambu PPS-CF @BBL H2D.json | 228 +- .../BBL/filament/Bambu PPS-CF @BBL H2DP.json | 201 +- .../BBL/filament/Bambu PPS-CF @BBL H2S.json | 223 +- .../BBL/filament/Bambu PPS-CF @BBL X1E.json | 163 +- .../BBL/filament/Bambu PPS-CF @base.json | 82 +- .../Bambu PVA @BBL A1 0.2 nozzle.json | 86 +- .../BBL/filament/Bambu PVA @BBL A1.json | 84 +- .../Bambu PVA @BBL A1M 0.2 nozzle.json | 86 +- .../BBL/filament/Bambu PVA @BBL A1M.json | 84 +- .../BBL/filament/Bambu PVA @BBL A2L.json | 108 +- .../Bambu PVA @BBL H2C 0.4 nozzle.json | 272 +- .../Bambu PVA @BBL H2C 0.8 nozzle.json | 100 + .../BBL/filament/Bambu PVA @BBL H2C.json | 273 +- .../Bambu PVA @BBL H2D 0.6 nozzle.json | 83 + .../Bambu PVA @BBL H2D 0.8 nozzle.json | 74 + .../BBL/filament/Bambu PVA @BBL H2D.json | 197 +- .../Bambu PVA @BBL H2DP 0.6 nozzle.json | 70 + .../Bambu PVA @BBL H2DP 0.8 nozzle.json | 70 + .../BBL/filament/Bambu PVA @BBL H2DP.json | 187 +- .../Bambu PVA @BBL H2S 0.6 nozzle.json | 83 + .../Bambu PVA @BBL H2S 0.8 nozzle.json | 74 + .../BBL/filament/Bambu PVA @BBL H2S.json | 200 +- .../Bambu PVA @BBL P1P 0.2 nozzle.json | 199 +- .../BBL/filament/Bambu PVA @BBL P1P.json | 203 +- .../Bambu PVA @BBL P2S 0.6 nozzle.json | 83 + .../Bambu PVA @BBL P2S 0.8 nozzle.json | 74 + .../BBL/filament/Bambu PVA @BBL P2S.json | 240 +- .../Bambu PVA @BBL X1C 0.2 nozzle.json | 169 +- .../BBL/filament/Bambu PVA @BBL X1C.json | 185 +- .../Bambu PVA @BBL X2D 0.4 nozzle.json | 361 +- .../Bambu PVA @BBL X2D 0.8 nozzle.json | 95 + .../BBL/filament/Bambu PVA @BBL X2D.json | 362 +- .../BBL/filament/Bambu PVA @base.json | 64 +- .../Bambu Support For PA PET @BBL A1.json | 24 +- ...upport For PA PET @BBL H2C 0.4 nozzle.json | 268 +- .../Bambu Support For PA PET @BBL H2C.json | 270 +- .../Bambu Support For PA PET @BBL H2D.json | 193 +- .../Bambu Support For PA PET @BBL H2DP.json | 185 +- .../Bambu Support For PA PET @BBL H2S.json | 198 +- .../Bambu Support For PA PET @BBL P2S.json | 238 +- .../Bambu Support For PA PET @BBL X1C.json | 191 +- ...upport For PA PET @BBL X2D 0.4 nozzle.json | 357 +- .../Bambu Support For PA PET @BBL X2D.json | 359 +- .../Bambu Support For PA PET @base.json | 76 +- ...bu Support For PLA @BBL A1 0.2 nozzle.json | 80 +- .../Bambu Support For PLA @BBL A1.json | 66 +- ...u Support For PLA @BBL A1M 0.2 nozzle.json | 80 +- .../Bambu Support For PLA @BBL A1M.json | 66 +- ...u Support For PLA @BBL A2L 0.2 nozzle.json | 122 +- ...u Support For PLA @BBL A2L 0.6 nozzle.json | 92 +- ...u Support For PLA @BBL A2L 0.8 nozzle.json | 92 +- .../Bambu Support For PLA @BBL A2L.json | 92 +- ...u Support For PLA @BBL H2C 0.2 nozzle.json | 281 +- ...u Support For PLA @BBL H2C 0.4 nozzle.json | 290 +- ...u Support For PLA @BBL H2C 0.8 nozzle.json | 109 + .../Bambu Support For PLA @BBL H2C.json | 291 +- ...u Support For PLA @BBL H2D 0.2 nozzle.json | 207 +- ...u Support For PLA @BBL H2D 0.6 nozzle.json | 93 + ...u Support For PLA @BBL H2D 0.8 nozzle.json | 85 + .../Bambu Support For PLA @BBL H2D.json | 216 +- ... Support For PLA @BBL H2DP 0.2 nozzle.json | 207 +- ... Support For PLA @BBL H2DP 0.6 nozzle.json | 81 + ... Support For PLA @BBL H2DP 0.8 nozzle.json | 81 + .../Bambu Support For PLA @BBL H2DP.json | 207 +- ...u Support For PLA @BBL H2S 0.2 nozzle.json | 219 +- ...u Support For PLA @BBL H2S 0.6 nozzle.json | 98 + ...u Support For PLA @BBL H2S 0.8 nozzle.json | 89 + .../Bambu Support For PLA @BBL H2S.json | 224 +- ...u Support For PLA @BBL P2S 0.2 nozzle.json | 253 +- ...u Support For PLA @BBL P2S 0.6 nozzle.json | 89 + ...u Support For PLA @BBL P2S 0.8 nozzle.json | 80 + .../Bambu Support For PLA @BBL P2S.json | 246 +- ...u Support For PLA @BBL X1C 0.2 nozzle.json | 169 +- .../Bambu Support For PLA @BBL X1C.json | 185 +- ...u Support For PLA @BBL X2D 0.2 nozzle.json | 353 +- ...u Support For PLA @BBL X2D 0.4 nozzle.json | 373 +- ...u Support For PLA @BBL X2D 0.8 nozzle.json | 95 + .../Bambu Support For PLA @BBL X2D.json | 362 +- .../filament/Bambu Support For PLA @base.json | 76 +- ...pport For PLA-PETG @BBL A1 0.2 nozzle.json | 74 +- .../Bambu Support For PLA-PETG @BBL A1.json | 72 +- ...port For PLA-PETG @BBL A1M 0.2 nozzle.json | 74 +- .../Bambu Support For PLA-PETG @BBL A1M.json | 72 +- ...port For PLA-PETG @BBL A2L 0.2 nozzle.json | 104 +- .../Bambu Support For PLA-PETG @BBL A2L.json | 96 +- ...port For PLA-PETG @BBL H2C 0.2 nozzle.json | 269 +- ...port For PLA-PETG @BBL H2C 0.4 nozzle.json | 278 +- ...port For PLA-PETG @BBL H2C 0.8 nozzle.json | 103 + .../Bambu Support For PLA-PETG @BBL H2C.json | 279 +- ...port For PLA-PETG @BBL H2D 0.2 nozzle.json | 192 +- ...port For PLA-PETG @BBL H2D 0.6 nozzle.json | 84 + ...port For PLA-PETG @BBL H2D 0.8 nozzle.json | 76 + .../Bambu Support For PLA-PETG @BBL H2D.json | 207 +- ...ort For PLA-PETG @BBL H2DP 0.2 nozzle.json | 192 +- ...ort For PLA-PETG @BBL H2DP 0.6 nozzle.json | 72 + ...ort For PLA-PETG @BBL H2DP 0.8 nozzle.json | 72 + .../Bambu Support For PLA-PETG @BBL H2DP.json | 192 +- ...port For PLA-PETG @BBL H2S 0.2 nozzle.json | 204 +- ...port For PLA-PETG @BBL H2S 0.6 nozzle.json | 89 + ...port For PLA-PETG @BBL H2S 0.8 nozzle.json | 80 + .../Bambu Support For PLA-PETG @BBL H2S.json | 209 +- ...port For PLA-PETG @BBL P1P 0.2 nozzle.json | 207 +- .../Bambu Support For PLA-PETG @BBL P1P.json | 211 +- ...port For PLA-PETG @BBL P2S 0.2 nozzle.json | 242 +- ...port For PLA-PETG @BBL P2S 0.6 nozzle.json | 91 + ...port For PLA-PETG @BBL P2S 0.8 nozzle.json | 81 + .../Bambu Support For PLA-PETG @BBL P2S.json | 248 +- ...port For PLA-PETG @BBL X1C 0.2 nozzle.json | 189 +- .../Bambu Support For PLA-PETG @BBL X1C.json | 205 +- ...port For PLA-PETG @BBL X2D 0.2 nozzle.json | 368 +- ...port For PLA-PETG @BBL X2D 0.4 nozzle.json | 372 +- ...port For PLA-PETG @BBL X2D 0.8 nozzle.json | 104 + .../Bambu Support For PLA-PETG @BBL X2D.json | 373 +- .../Bambu Support For PLA-PETG @base.json | 118 +- .../BBL/filament/Bambu Support G @BBL A1.json | 24 +- .../Bambu Support G @BBL H2C 0.4 nozzle.json | 268 +- .../filament/Bambu Support G @BBL H2C.json | 270 +- .../filament/Bambu Support G @BBL H2D.json | 193 +- .../filament/Bambu Support G @BBL H2DP.json | 185 +- .../filament/Bambu Support G @BBL H2S.json | 198 +- .../filament/Bambu Support G @BBL P2S.json | 232 +- .../filament/Bambu Support G @BBL X1C.json | 179 +- .../filament/Bambu Support G @BBL X1E.json | 173 +- .../Bambu Support G @BBL X2D 0.4 nozzle.json | 351 +- .../filament/Bambu Support G @BBL X2D.json | 353 +- .../BBL/filament/Bambu Support G @base.json | 76 +- .../Bambu Support W @BBL A1 0.2 nozzle.json | 80 +- .../BBL/filament/Bambu Support W @BBL A1.json | 66 +- .../Bambu Support W @BBL A1M 0.2 nozzle.json | 80 +- .../filament/Bambu Support W @BBL A1M.json | 66 +- .../Bambu Support W @BBL A2L 0.2 nozzle.json | 110 +- .../filament/Bambu Support W @BBL A2L.json | 90 +- .../Bambu Support W @BBL H2C 0.2 nozzle.json | 269 +- .../Bambu Support W @BBL H2C 0.4 nozzle.json | 280 +- .../filament/Bambu Support W @BBL H2C.json | 282 +- .../Bambu Support W @BBL H2D 0.2 nozzle.json | 195 +- .../filament/Bambu Support W @BBL H2D.json | 206 +- .../Bambu Support W @BBL H2DP 0.2 nozzle.json | 195 +- .../filament/Bambu Support W @BBL H2DP.json | 199 +- .../Bambu Support W @BBL H2S 0.2 nozzle.json | 223 +- .../filament/Bambu Support W @BBL H2S.json | 233 +- .../Bambu Support W @BBL P2S 0.2 nozzle.json | 241 +- .../filament/Bambu Support W @BBL P2S.json | 250 +- .../BBL/filament/Bambu Support W @BBL X1.json | 167 +- .../Bambu Support W @BBL X1C 0.2 nozzle.json | 169 +- .../filament/Bambu Support W @BBL X1C.json | 179 +- .../Bambu Support W @BBL X2D 0.2 nozzle.json | 353 +- .../Bambu Support W @BBL X2D 0.4 nozzle.json | 363 +- .../filament/Bambu Support W @BBL X2D.json | 365 +- .../BBL/filament/Bambu Support W @base.json | 76 +- .../Bambu Support for ABS @BBL A1.json | 36 +- ...u Support for ABS @BBL H2C 0.4 nozzle.json | 256 +- ...u Support for ABS @BBL H2C 0.8 nozzle.json | 89 + .../Bambu Support for ABS @BBL H2C.json | 257 +- ...u Support for ABS @BBL H2D 0.6 nozzle.json | 70 + ...u Support for ABS @BBL H2D 0.8 nozzle.json | 63 + .../Bambu Support for ABS @BBL H2D.json | 181 +- ... Support for ABS @BBL H2DP 0.6 nozzle.json | 59 + ... Support for ABS @BBL H2DP 0.8 nozzle.json | 59 + .../Bambu Support for ABS @BBL H2DP.json | 173 +- ...u Support for ABS @BBL H2S 0.6 nozzle.json | 75 + ...u Support for ABS @BBL H2S 0.8 nozzle.json | 67 + .../Bambu Support for ABS @BBL H2S.json | 189 +- ...u Support for ABS @BBL P2S 0.6 nozzle.json | 80 + ...u Support for ABS @BBL P2S 0.8 nozzle.json | 71 + .../Bambu Support for ABS @BBL P2S.json | 234 +- .../Bambu Support for ABS @BBL X1C.json | 195 +- ...u Support for ABS @BBL X2D 0.4 nozzle.json | 357 +- ...u Support for ABS @BBL X2D 0.8 nozzle.json | 95 + .../Bambu Support for ABS @BBL X2D.json | 358 +- .../filament/Bambu Support for ABS @base.json | 82 +- .../Bambu TPU 85A @BBL A2L 0.6 nozzle.json | 152 +- .../Bambu TPU 85A @BBL A2L 0.8 nozzle.json | 158 +- .../BBL/filament/Bambu TPU 85A @BBL H2C.json | 348 +- .../Bambu TPU 85A @BBL H2D 0.4 nozzle.json | 215 +- .../BBL/filament/Bambu TPU 85A @BBL H2D.json | 460 +- .../Bambu TPU 85A @BBL H2DP 0.4 nozzle.json | 215 +- .../BBL/filament/Bambu TPU 85A @BBL H2DP.json | 418 +- .../Bambu TPU 85A @BBL H2S 0.6 nozzle.json | 281 +- .../Bambu TPU 85A @BBL H2S 0.8 nozzle.json | 237 +- .../BBL/filament/Bambu TPU 85A @BBL H2S.json | 255 +- .../BBL/filament/Bambu TPU 85A @BBL P1P.json | 165 +- .../Bambu TPU 85A @BBL P2S 0.8 nozzle.json | 223 +- .../BBL/filament/Bambu TPU 85A @BBL P2S.json | 234 +- .../BBL/filament/Bambu TPU 85A @BBL X1C.json | 177 +- .../Bambu TPU 85A @BBL X2D 0.8 nozzle.json | 359 +- .../BBL/filament/Bambu TPU 85A @BBL X2D.json | 383 +- .../BBL/filament/Bambu TPU 85A @base.json | 64 +- .../BBL/filament/Bambu TPU 90A @BBL A1.json | 66 +- .../BBL/filament/Bambu TPU 90A @BBL A1M.json | 66 +- .../Bambu TPU 90A @BBL A2L 0.6 nozzle.json | 86 +- .../Bambu TPU 90A @BBL A2L 0.8 nozzle.json | 92 +- .../BBL/filament/Bambu TPU 90A @BBL A2L.json | 74 +- .../Bambu TPU 90A @BBL H2C 0.4 nozzle.json | 345 +- .../BBL/filament/Bambu TPU 90A @BBL H2C.json | 347 +- .../Bambu TPU 90A @BBL H2D 0.6 nozzle.json | 493 +- .../Bambu TPU 90A @BBL H2D 0.8 nozzle.json | 263 +- .../BBL/filament/Bambu TPU 90A @BBL H2D.json | 458 +- .../Bambu TPU 90A @BBL H2DP 0.6 nozzle.json | 451 +- .../Bambu TPU 90A @BBL H2DP 0.8 nozzle.json | 263 +- .../BBL/filament/Bambu TPU 90A @BBL H2DP.json | 416 +- .../Bambu TPU 90A @BBL H2S 0.6 nozzle.json | 245 +- .../Bambu TPU 90A @BBL H2S 0.8 nozzle.json | 233 +- .../BBL/filament/Bambu TPU 90A @BBL H2S.json | 245 +- .../BBL/filament/Bambu TPU 90A @BBL P1P.json | 167 +- .../Bambu TPU 90A @BBL P2S 0.6 nozzle.json | 255 +- .../Bambu TPU 90A @BBL P2S 0.8 nozzle.json | 223 +- .../BBL/filament/Bambu TPU 90A @BBL P2S.json | 240 +- .../BBL/filament/Bambu TPU 90A @BBL X1C.json | 196 +- .../Bambu TPU 90A @BBL X2D 0.4 nozzle.json | 383 +- .../Bambu TPU 90A @BBL X2D 0.8 nozzle.json | 383 +- .../BBL/filament/Bambu TPU 90A @BBL X2D.json | 405 +- .../BBL/filament/Bambu TPU 90A @base.json | 64 +- .../BBL/filament/Bambu TPU 95A @BBL A1.json | 54 +- .../BBL/filament/Bambu TPU 95A @BBL A1M.json | 54 +- .../BBL/filament/Bambu TPU 95A @BBL A2L.json | 54 +- .../Bambu TPU 95A @BBL H2C 0.4 nozzle.json | 315 +- .../BBL/filament/Bambu TPU 95A @BBL H2C.json | 317 +- .../BBL/filament/Bambu TPU 95A @BBL H2D.json | 447 +- .../BBL/filament/Bambu TPU 95A @BBL H2DP.json | 405 +- .../BBL/filament/Bambu TPU 95A @BBL H2S.json | 239 +- .../BBL/filament/Bambu TPU 95A @BBL P2S.json | 244 +- .../BBL/filament/Bambu TPU 95A @BBL X1.json | 167 +- .../BBL/filament/Bambu TPU 95A @BBL X1C.json | 179 +- .../Bambu TPU 95A @BBL X2D 0.4 nozzle.json | 375 +- .../BBL/filament/Bambu TPU 95A @BBL X2D.json | 377 +- .../BBL/filament/Bambu TPU 95A @base.json | 52 +- .../filament/Bambu TPU 95A HF @BBL A1.json | 66 +- .../filament/Bambu TPU 95A HF @BBL A1M.json | 66 +- .../Bambu TPU 95A HF @BBL A2L 0.6 nozzle.json | 68 +- .../Bambu TPU 95A HF @BBL A2L 0.8 nozzle.json | 68 +- .../filament/Bambu TPU 95A HF @BBL A2L.json | 80 +- .../Bambu TPU 95A HF @BBL H2C 0.4 nozzle.json | 319 +- .../Bambu TPU 95A HF @BBL H2C 0.8 nozzle.json | 134 + .../filament/Bambu TPU 95A HF @BBL H2C.json | 320 +- .../Bambu TPU 95A HF @BBL H2D 0.4 nozzle.json | 107 +- .../Bambu TPU 95A HF @BBL H2D 0.8 nozzle.json | 101 + .../filament/Bambu TPU 95A HF @BBL H2D.json | 442 +- ...Bambu TPU 95A HF @BBL H2DP 0.4 nozzle.json | 105 +- ...Bambu TPU 95A HF @BBL H2DP 0.8 nozzle.json | 101 + .../filament/Bambu TPU 95A HF @BBL H2DP.json | 400 +- .../Bambu TPU 95A HF @BBL H2S 0.6 nozzle.json | 109 + .../Bambu TPU 95A HF @BBL H2S 0.8 nozzle.json | 96 + .../filament/Bambu TPU 95A HF @BBL H2S.json | 235 +- .../filament/Bambu TPU 95A HF @BBL P1P.json | 191 +- .../filament/Bambu TPU 95A HF @BBL P1S.json | 167 +- .../Bambu TPU 95A HF @BBL P2S 0.6 nozzle.json | 86 + .../Bambu TPU 95A HF @BBL P2S 0.8 nozzle.json | 77 + .../filament/Bambu TPU 95A HF @BBL P2S.json | 246 +- .../filament/Bambu TPU 95A HF @BBL X1.json | 167 +- .../filament/Bambu TPU 95A HF @BBL X1C.json | 167 +- .../filament/Bambu TPU 95A HF @BBL X1E.json | 167 +- .../Bambu TPU 95A HF @BBL X2D 0.4 nozzle.json | 373 +- .../Bambu TPU 95A HF @BBL X2D 0.8 nozzle.json | 101 + .../filament/Bambu TPU 95A HF @BBL X2D.json | 374 +- .../BBL/filament/Bambu TPU 95A HF @base.json | 76 +- .../filament/Bambu TPU for AMS @BBL A1.json | 48 +- .../filament/Bambu TPU for AMS @BBL A1M.json | 48 +- ...Bambu TPU for AMS @BBL A2L 0.6 nozzle.json | 74 +- ...Bambu TPU for AMS @BBL A2L 0.8 nozzle.json | 74 +- .../filament/Bambu TPU for AMS @BBL A2L.json | 92 +- ...Bambu TPU for AMS @BBL H2C 0.4 nozzle.json | 305 +- ...Bambu TPU for AMS @BBL H2C 0.8 nozzle.json | 121 + .../filament/Bambu TPU for AMS @BBL H2C.json | 306 +- ...Bambu TPU for AMS @BBL H2D 0.6 nozzle.json | 99 + ...Bambu TPU for AMS @BBL H2D 0.8 nozzle.json | 88 + .../filament/Bambu TPU for AMS @BBL H2D.json | 219 +- ...ambu TPU for AMS @BBL H2DP 0.6 nozzle.json | 84 + ...ambu TPU for AMS @BBL H2DP 0.8 nozzle.json | 84 + .../filament/Bambu TPU for AMS @BBL H2DP.json | 207 +- ...Bambu TPU for AMS @BBL H2S 0.6 nozzle.json | 129 + ...Bambu TPU for AMS @BBL H2S 0.8 nozzle.json | 115 + .../filament/Bambu TPU for AMS @BBL H2S.json | 231 +- ...Bambu TPU for AMS @BBL P1P 0.6 nozzle.json | 61 + .../filament/Bambu TPU for AMS @BBL P1P.json | 178 +- ...Bambu TPU for AMS @BBL P2S 0.6 nozzle.json | 92 + ...Bambu TPU for AMS @BBL P2S 0.8 nozzle.json | 83 + .../filament/Bambu TPU for AMS @BBL P2S.json | 258 +- ...Bambu TPU for AMS @BBL X1C 0.6 nozzle.json | 62 + .../filament/Bambu TPU for AMS @BBL X1C.json | 183 +- ...Bambu TPU for AMS @BBL X2D 0.4 nozzle.json | 376 +- ...Bambu TPU for AMS @BBL X2D 0.8 nozzle.json | 101 + .../filament/Bambu TPU for AMS @BBL X2D.json | 374 +- .../BBL/filament/Bambu TPU for AMS @base.json | 130 +- .../BBL/filament/Generic ABS @0.2 nozzle.json | 30 +- .../Generic ABS @BBL A1 0.2 nozzle.json | 62 +- .../BBL/filament/Generic ABS @BBL A1.json | 69 +- .../Generic ABS @BBL H2C 0.2 nozzle.json | 261 +- .../Generic ABS @BBL H2C 0.4 nozzle.json | 277 +- .../BBL/filament/Generic ABS @BBL H2C.json | 279 +- .../Generic ABS @BBL H2D 0.2 nozzle.json | 173 +- .../BBL/filament/Generic ABS @BBL H2D.json | 183 +- .../Generic ABS @BBL H2DP 0.2 nozzle.json | 173 +- .../BBL/filament/Generic ABS @BBL H2DP.json | 177 +- .../Generic ABS @BBL H2S 0.2 nozzle.json | 191 +- .../Generic ABS @BBL H2S 0.4 nozzle.json | 207 +- .../Generic ABS @BBL P2S 0.2 nozzle.json | 219 +- .../BBL/filament/Generic ABS @BBL P2S.json | 227 +- .../Generic ABS @BBL X1E 0.2 nozzle.json | 159 +- .../BBL/filament/Generic ABS @BBL X1E.json | 163 +- .../Generic ABS @BBL X2D 0.2 nozzle.json | 341 +- .../Generic ABS @BBL X2D 0.4 nozzle.json | 351 +- .../BBL/filament/Generic ABS @BBL X2D.json | 353 +- .../BBL/filament/Generic ABS @base.json | 28 +- .../profiles/BBL/filament/Generic ABS.json | 45 +- .../BBL/filament/Generic ASA @0.2 nozzle.json | 30 +- .../Generic ASA @BBL A1 0.2 nozzle.json | 26 +- .../BBL/filament/Generic ASA @BBL A1.json | 24 +- .../Generic ASA @BBL H2C 0.2 nozzle.json | 255 +- .../Generic ASA @BBL H2C 0.4 nozzle.json | 283 +- .../BBL/filament/Generic ASA @BBL H2C.json | 285 +- .../Generic ASA @BBL H2D 0.2 nozzle.json | 173 +- .../BBL/filament/Generic ASA @BBL H2D.json | 183 +- .../Generic ASA @BBL H2DP 0.2 nozzle.json | 173 +- .../BBL/filament/Generic ASA @BBL H2DP.json | 177 +- .../Generic ASA @BBL H2S 0.2 nozzle.json | 221 +- .../Generic ASA @BBL H2S 0.4 nozzle.json | 249 +- .../Generic ASA @BBL P2S 0.2 nozzle.json | 255 +- .../BBL/filament/Generic ASA @BBL P2S.json | 263 +- .../Generic ASA @BBL X1E 0.2 nozzle.json | 159 +- .../BBL/filament/Generic ASA @BBL X1E.json | 163 +- .../Generic ASA @BBL X2D 0.2 nozzle.json | 341 +- .../Generic ASA @BBL X2D 0.4 nozzle.json | 351 +- .../BBL/filament/Generic ASA @BBL X2D.json | 353 +- .../BBL/filament/Generic ASA @base.json | 64 +- .../profiles/BBL/filament/Generic ASA.json | 36 +- .../BBL/filament/Generic BVOH @BBL A1.json | 24 +- .../BBL/filament/Generic BVOH @BBL A1M.json | 24 +- .../BBL/filament/Generic BVOH @BBL A2L.json | 36 +- .../Generic BVOH @BBL H2C 0.4 nozzle.json | 269 +- .../BBL/filament/Generic BVOH @BBL H2C.json | 271 +- .../BBL/filament/Generic BVOH @BBL H2D.json | 194 +- .../BBL/filament/Generic BVOH @BBL H2DP.json | 187 +- .../Generic BVOH @BBL H2S 0.4 nozzle.json | 210 +- .../BBL/filament/Generic BVOH @BBL P2S.json | 244 +- .../BBL/filament/Generic BVOH @BBL X1C.json | 191 +- .../Generic BVOH @BBL X2D 0.4 nozzle.json | 363 +- .../BBL/filament/Generic BVOH @BBL X2D.json | 365 +- .../BBL/filament/Generic BVOH @base.json | 20 +- .../BBL/filament/Generic EVA @BBL A1.json | 26 +- .../BBL/filament/Generic EVA @BBL A1M.json | 26 +- .../BBL/filament/Generic EVA @BBL A2L.json | 38 +- .../Generic EVA @BBL H2C 0.4 nozzle.json | 271 +- .../BBL/filament/Generic EVA @BBL H2C.json | 273 +- .../BBL/filament/Generic EVA @BBL H2D.json | 196 +- .../BBL/filament/Generic EVA @BBL H2DP.json | 189 +- .../Generic EVA @BBL H2S 0.4 nozzle.json | 212 +- .../BBL/filament/Generic EVA @BBL P2S.json | 246 +- .../BBL/filament/Generic EVA @BBL X1C.json | 193 +- .../Generic EVA @BBL X2D 0.4 nozzle.json | 365 +- .../BBL/filament/Generic EVA @BBL X2D.json | 367 +- .../BBL/filament/Generic EVA @base.json | 167 +- .../Generic HIPS @BBL A1 0.2 nozzle.json | 62 +- .../BBL/filament/Generic HIPS @BBL A1.json | 60 +- .../Generic HIPS @BBL A1M 0.2 nozzle.json | 62 +- .../BBL/filament/Generic HIPS @BBL A1M.json | 60 +- .../Generic HIPS @BBL A2L 0.2 nozzle.json | 80 +- .../BBL/filament/Generic HIPS @BBL A2L.json | 72 +- .../Generic HIPS @BBL H2C 0.2 nozzle.json | 247 +- .../Generic HIPS @BBL H2C 0.4 nozzle.json | 257 +- .../BBL/filament/Generic HIPS @BBL H2C.json | 259 +- .../Generic HIPS @BBL H2D 0.2 nozzle.json | 171 +- .../BBL/filament/Generic HIPS @BBL H2D.json | 182 +- .../Generic HIPS @BBL H2DP 0.2 nozzle.json | 171 +- .../BBL/filament/Generic HIPS @BBL H2DP.json | 175 +- .../Generic HIPS @BBL H2S 0.2 nozzle.json | 171 +- .../Generic HIPS @BBL H2S 0.4 nozzle.json | 180 +- .../Generic HIPS @BBL P2S 0.2 nozzle.json | 223 +- .../BBL/filament/Generic HIPS @BBL P2S.json | 232 +- .../Generic HIPS @BBL X1C 0.2 nozzle.json | 171 +- .../BBL/filament/Generic HIPS @BBL X1C.json | 191 +- .../Generic HIPS @BBL X2D 0.2 nozzle.json | 341 +- .../Generic HIPS @BBL X2D 0.4 nozzle.json | 351 +- .../BBL/filament/Generic HIPS @BBL X2D.json | 353 +- .../BBL/filament/Generic HIPS @base.json | 20 +- .../BBL/filament/Generic PA @BBL A1.json | 30 +- .../Generic PA @BBL H2C 0.4 nozzle.json | 257 +- .../BBL/filament/Generic PA @BBL H2C.json | 259 +- .../BBL/filament/Generic PA @BBL H2D.json | 182 +- .../BBL/filament/Generic PA @BBL H2DP.json | 175 +- .../Generic PA @BBL H2S 0.4 nozzle.json | 193 +- .../BBL/filament/Generic PA @BBL P2S.json | 221 +- .../Generic PA @BBL X2D 0.4 nozzle.json | 337 +- .../BBL/filament/Generic PA @BBL X2D.json | 339 +- .../BBL/filament/Generic PA @base.json | 100 +- .../BBL/filament/Generic PA-CF @BBL A1.json | 30 +- .../Generic PA-CF @BBL H2C 0.4 nozzle.json | 263 +- .../BBL/filament/Generic PA-CF @BBL H2C.json | 265 +- .../BBL/filament/Generic PA-CF @BBL H2D.json | 188 +- .../BBL/filament/Generic PA-CF @BBL H2DP.json | 181 +- .../Generic PA-CF @BBL H2S 0.4 nozzle.json | 204 +- .../BBL/filament/Generic PA-CF @BBL P2S.json | 232 +- .../BBL/filament/Generic PA-CF @BBL X1E.json | 173 +- .../Generic PA-CF @BBL X2D 0.4 nozzle.json | 351 +- .../BBL/filament/Generic PA-CF @BBL X2D.json | 353 +- .../BBL/filament/Generic PA-CF @base.json | 67 +- .../profiles/BBL/filament/Generic PA-CF.json | 36 +- .../profiles/BBL/filament/Generic PA.json | 42 +- .../BBL/filament/Generic PC @0.2 nozzle.json | 28 +- .../Generic PC @BBL A1 0.2 nozzle.json | 74 +- .../BBL/filament/Generic PC @BBL A1.json | 72 +- .../Generic PC @BBL H2C 0.2 nozzle.json | 253 +- .../Generic PC @BBL H2C 0.4 nozzle.json | 283 +- .../BBL/filament/Generic PC @BBL H2C.json | 285 +- .../Generic PC @BBL H2D 0.2 nozzle.json | 177 +- .../BBL/filament/Generic PC @BBL H2D.json | 188 +- .../Generic PC @BBL H2DP 0.2 nozzle.json | 177 +- .../BBL/filament/Generic PC @BBL H2DP.json | 181 +- .../Generic PC @BBL H2S 0.2 nozzle.json | 195 +- .../BBL/filament/Generic PC @BBL H2S.json | 224 +- .../Generic PC @BBL P1S 0.2 nozzle.json | 199 +- .../BBL/filament/Generic PC @BBL P1S.json | 203 +- .../Generic PC @BBL P2S 0.2 nozzle.json | 259 +- .../BBL/filament/Generic PC @BBL P2S.json | 268 +- .../Generic PC @BBL X1E 0.2 nozzle.json | 169 +- .../BBL/filament/Generic PC @BBL X1E.json | 173 +- .../Generic PC @BBL X2D 0.2 nozzle.json | 341 +- .../Generic PC @BBL X2D 0.4 nozzle.json | 351 +- .../BBL/filament/Generic PC @BBL X2D.json | 353 +- .../BBL/filament/Generic PC @base.json | 28 +- .../profiles/BBL/filament/Generic PC.json | 30 +- .../BBL/filament/Generic PCTG @BBL A1.json | 24 +- .../BBL/filament/Generic PCTG @BBL A1M.json | 24 +- .../BBL/filament/Generic PCTG @BBL A2L.json | 36 +- .../Generic PCTG @BBL H2C 0.4 nozzle.json | 247 +- .../BBL/filament/Generic PCTG @BBL H2C.json | 249 +- .../BBL/filament/Generic PCTG @BBL H2D.json | 172 +- .../BBL/filament/Generic PCTG @BBL H2DP.json | 167 +- .../Generic PCTG @BBL H2S 0.4 nozzle.json | 188 +- .../BBL/filament/Generic PCTG @BBL P2S.json | 222 +- .../BBL/filament/Generic PCTG @BBL X1C.json | 183 +- .../Generic PCTG @BBL X2D 0.4 nozzle.json | 343 +- .../BBL/filament/Generic PCTG @BBL X2D.json | 345 +- .../BBL/filament/Generic PCTG @base.json | 146 +- .../BBL/filament/Generic PE @BBL A1.json | 26 +- .../BBL/filament/Generic PE @BBL A1M.json | 26 +- .../BBL/filament/Generic PE @BBL A2L.json | 38 +- .../Generic PE @BBL H2C 0.4 nozzle.json | 271 +- .../BBL/filament/Generic PE @BBL H2C.json | 273 +- .../BBL/filament/Generic PE @BBL H2D.json | 196 +- .../BBL/filament/Generic PE @BBL H2DP.json | 189 +- .../Generic PE @BBL H2S 0.4 nozzle.json | 212 +- .../BBL/filament/Generic PE @BBL P2S.json | 246 +- .../BBL/filament/Generic PE @BBL X1C.json | 193 +- .../Generic PE @BBL X2D 0.4 nozzle.json | 365 +- .../BBL/filament/Generic PE @BBL X2D.json | 367 +- .../BBL/filament/Generic PE @base.json | 74 +- .../BBL/filament/Generic PE-CF @BBL A1.json | 26 +- .../BBL/filament/Generic PE-CF @BBL A1M.json | 26 +- .../BBL/filament/Generic PE-CF @BBL A2L.json | 38 +- .../Generic PE-CF @BBL H2C 0.4 nozzle.json | 269 +- .../BBL/filament/Generic PE-CF @BBL H2C.json | 271 +- .../BBL/filament/Generic PE-CF @BBL H2D.json | 194 +- .../BBL/filament/Generic PE-CF @BBL H2DP.json | 187 +- .../Generic PE-CF @BBL H2S 0.4 nozzle.json | 210 +- .../BBL/filament/Generic PE-CF @BBL P2S.json | 244 +- .../BBL/filament/Generic PE-CF @BBL X1C.json | 191 +- .../Generic PE-CF @BBL X2D 0.4 nozzle.json | 363 +- .../BBL/filament/Generic PE-CF @BBL X2D.json | 365 +- .../BBL/filament/Generic PE-CF @base.json | 80 +- .../filament/Generic PETG @0.2 nozzle.json | 32 +- .../Generic PETG @BBL A1 0.2 nozzle.json | 50 +- .../BBL/filament/Generic PETG @BBL A1.json | 54 +- .../Generic PETG @BBL A1M 0.2 nozzle.json | 26 +- .../BBL/filament/Generic PETG @BBL A1M.json | 30 +- .../Generic PETG @BBL A2L 0.2 nozzle.json | 50 +- .../BBL/filament/Generic PETG @BBL A2L.json | 48 +- .../Generic PETG @BBL H2C 0.2 nozzle.json | 253 +- .../Generic PETG @BBL H2C 0.4 nozzle.json | 288 +- .../BBL/filament/Generic PETG @BBL H2C.json | 290 +- .../Generic PETG @BBL H2D 0.2 nozzle.json | 167 +- .../BBL/filament/Generic PETG @BBL H2D.json | 177 +- .../Generic PETG @BBL H2DP 0.2 nozzle.json | 167 +- .../BBL/filament/Generic PETG @BBL H2DP.json | 171 +- .../Generic PETG @BBL H2S 0.2 nozzle.json | 179 +- .../BBL/filament/Generic PETG @BBL H2S.json | 207 +- .../Generic PETG @BBL P2S 0.2 nozzle.json | 219 +- .../BBL/filament/Generic PETG @BBL P2S.json | 227 +- .../Generic PETG @BBL X2D 0.2 nozzle.json | 341 +- .../Generic PETG @BBL X2D 0.4 nozzle.json | 351 +- .../BBL/filament/Generic PETG @BBL X2D.json | 353 +- .../BBL/filament/Generic PETG @base.json | 128 +- .../Generic PETG HF @BBL A1 0.2 nozzle.json | 26 +- .../BBL/filament/Generic PETG HF @BBL A1.json | 30 +- .../Generic PETG HF @BBL A1M 0.2 nozzle.json | 20 +- .../filament/Generic PETG HF @BBL A1M.json | 30 +- .../Generic PETG HF @BBL A2L 0.2 nozzle.json | 44 +- .../filament/Generic PETG HF @BBL A2L.json | 48 +- .../Generic PETG HF @BBL H2C 0.2 nozzle.json | 249 +- .../Generic PETG HF @BBL H2C 0.4 nozzle.json | 283 +- .../filament/Generic PETG HF @BBL H2C.json | 285 +- .../Generic PETG HF @BBL H2D 0.2 nozzle.json | 163 +- .../filament/Generic PETG HF @BBL H2D.json | 177 +- .../Generic PETG HF @BBL H2DP 0.2 nozzle.json | 163 +- .../filament/Generic PETG HF @BBL H2DP.json | 171 +- .../Generic PETG HF @BBL H2S 0.2 nozzle.json | 163 +- .../Generic PETG HF @BBL H2S 0.4 nozzle.json | 190 +- .../Generic PETG HF @BBL P1P 0.2 nozzle.json | 155 +- .../filament/Generic PETG HF @BBL P1P.json | 163 +- .../Generic PETG HF @BBL P1S 0.4 nozzle.json | 42 + .../Generic PETG HF @BBL P1S 0.6 nozzle.json | 42 + .../Generic PETG HF @BBL P2S 0.2 nozzle.json | 215 +- .../Generic PETG HF @BBL P2S 0.4 nozzle.json | 229 +- .../filament/Generic PETG HF @BBL P2S.json | 225 +- .../Generic PETG HF @BBL X1 0.6 nozzle.json | 44 + .../Generic PETG HF @BBL X1C 0.2 nozzle.json | 161 +- .../filament/Generic PETG HF @BBL X1C.json | 176 +- .../Generic PETG HF @BBL X2D 0.2 nozzle.json | 335 +- .../Generic PETG HF @BBL X2D 0.4 nozzle.json | 351 +- .../filament/Generic PETG HF @BBL X2D.json | 353 +- .../BBL/filament/Generic PETG HF @base.json | 140 +- .../BBL/filament/Generic PETG-CF @BBL A1.json | 54 +- .../filament/Generic PETG-CF @BBL A2L.json | 48 +- .../Generic PETG-CF @BBL H2C 0.4 nozzle.json | 271 +- .../filament/Generic PETG-CF @BBL H2C.json | 273 +- .../filament/Generic PETG-CF @BBL H2D.json | 196 +- .../filament/Generic PETG-CF @BBL H2DP.json | 191 +- .../filament/Generic PETG-CF @BBL H2S.json | 211 +- .../filament/Generic PETG-CF @BBL P2S.json | 246 +- .../filament/Generic PETG-CF @BBL X1C.json | 201 +- .../Generic PETG-CF @BBL X2D 0.4 nozzle.json | 367 +- .../filament/Generic PETG-CF @BBL X2D.json | 369 +- .../BBL/filament/Generic PETG-CF @base.json | 146 +- .../profiles/BBL/filament/Generic PETG.json | 42 +- .../BBL/filament/Generic PHA @BBL A1.json | 26 +- .../BBL/filament/Generic PHA @BBL A1M.json | 26 +- .../BBL/filament/Generic PHA @BBL A2L.json | 38 +- .../Generic PHA @BBL H2C 0.4 nozzle.json | 271 +- .../BBL/filament/Generic PHA @BBL H2C.json | 273 +- .../BBL/filament/Generic PHA @BBL H2D.json | 196 +- .../BBL/filament/Generic PHA @BBL H2DP.json | 189 +- .../Generic PHA @BBL H2S 0.4 nozzle.json | 212 +- .../BBL/filament/Generic PHA @BBL P2S.json | 246 +- .../BBL/filament/Generic PHA @BBL X1C.json | 193 +- .../Generic PHA @BBL X2D 0.4 nozzle.json | 365 +- .../BBL/filament/Generic PHA @BBL X2D.json | 367 +- .../BBL/filament/Generic PHA @base.json | 14 +- .../BBL/filament/Generic PLA @0.2 nozzle.json | 44 +- .../Generic PLA @BBL A1 0.2 nozzle.json | 74 +- .../BBL/filament/Generic PLA @BBL A1.json | 66 +- .../Generic PLA @BBL A1M 0.2 nozzle.json | 74 +- .../BBL/filament/Generic PLA @BBL A1M.json | 66 +- .../Generic PLA @BBL A2L 0.2 nozzle.json | 86 +- .../BBL/filament/Generic PLA @BBL A2L.json | 78 +- .../Generic PLA @BBL H2C 0.2 nozzle.json | 269 +- .../Generic PLA @BBL H2C 0.4 nozzle.json | 300 +- .../BBL/filament/Generic PLA @BBL H2C.json | 302 +- .../Generic PLA @BBL H2D 0.2 nozzle.json | 183 +- .../BBL/filament/Generic PLA @BBL H2D.json | 194 +- .../Generic PLA @BBL H2DP 0.2 nozzle.json | 183 +- .../BBL/filament/Generic PLA @BBL H2DP.json | 187 +- .../Generic PLA @BBL H2S 0.2 nozzle.json | 201 +- .../BBL/filament/Generic PLA @BBL H2S.json | 230 +- .../Generic PLA @BBL P2S 0.2 nozzle.json | 235 +- .../BBL/filament/Generic PLA @BBL P2S.json | 244 +- .../Generic PLA @BBL X2D 0.2 nozzle.json | 353 +- .../Generic PLA @BBL X2D 0.4 nozzle.json | 363 +- .../BBL/filament/Generic PLA @BBL X2D.json | 365 +- .../BBL/filament/Generic PLA @base.json | 34 +- ...ric PLA High Speed @BBL A1 0.2 nozzle.json | 74 +- .../Generic PLA High Speed @BBL A1.json | 72 +- ...ic PLA High Speed @BBL A1M 0.2 nozzle.json | 26 +- .../Generic PLA High Speed @BBL A1M.json | 72 +- ...ic PLA High Speed @BBL A2L 0.2 nozzle.json | 92 +- .../Generic PLA High Speed @BBL A2L.json | 84 +- ...ic PLA High Speed @BBL H2C 0.2 nozzle.json | 269 +- ...ic PLA High Speed @BBL H2C 0.4 nozzle.json | 306 +- .../Generic PLA High Speed @BBL H2C.json | 308 +- ...ic PLA High Speed @BBL H2D 0.2 nozzle.json | 183 +- .../Generic PLA High Speed @BBL H2D.json | 200 +- ...c PLA High Speed @BBL H2DP 0.2 nozzle.json | 183 +- .../Generic PLA High Speed @BBL H2DP.json | 193 +- ...ic PLA High Speed @BBL H2S 0.2 nozzle.json | 207 +- .../Generic PLA High Speed @BBL H2S.json | 236 +- ...ic PLA High Speed @BBL P1P 0.2 nozzle.json | 28 +- .../Generic PLA High Speed @BBL P1P.json | 203 +- ...ic PLA High Speed @BBL P2S 0.2 nozzle.json | 241 +- .../Generic PLA High Speed @BBL P2S.json | 250 +- ...ic PLA High Speed @BBL X1C 0.2 nozzle.json | 34 +- .../Generic PLA High Speed @BBL X1C.json | 197 +- ...ic PLA High Speed @BBL X2D 0.2 nozzle.json | 82 +- ...ic PLA High Speed @BBL X2D 0.4 nozzle.json | 369 +- .../Generic PLA High Speed @BBL X2D.json | 371 +- .../Generic PLA High Speed @base.json | 32 +- .../filament/Generic PLA Silk @BBL A1.json | 54 +- .../filament/Generic PLA Silk @BBL A1M.json | 78 +- .../filament/Generic PLA Silk @BBL A2L.json | 90 +- .../Generic PLA Silk @BBL H2C 0.4 nozzle.json | 300 +- .../filament/Generic PLA Silk @BBL H2C.json | 302 +- .../filament/Generic PLA Silk @BBL H2D.json | 194 +- .../filament/Generic PLA Silk @BBL H2DP.json | 187 +- .../filament/Generic PLA Silk @BBL H2S.json | 236 +- .../filament/Generic PLA Silk @BBL P2S.json | 249 +- .../Generic PLA Silk @BBL X2D 0.4 nozzle.json | 371 +- .../filament/Generic PLA Silk @BBL X2D.json | 373 +- .../BBL/filament/Generic PLA Silk @base.json | 46 +- .../BBL/filament/Generic PLA Silk.json | 66 +- .../BBL/filament/Generic PLA-CF @BBL A1.json | 72 +- .../BBL/filament/Generic PLA-CF @BBL A1M.json | 72 +- .../BBL/filament/Generic PLA-CF @BBL A2L.json | 84 +- .../Generic PLA-CF @BBL H2C 0.4 nozzle.json | 263 +- .../BBL/filament/Generic PLA-CF @BBL H2C.json | 265 +- .../BBL/filament/Generic PLA-CF @BBL H2D.json | 189 +- .../filament/Generic PLA-CF @BBL H2DP.json | 183 +- .../BBL/filament/Generic PLA-CF @BBL H2S.json | 204 +- .../BBL/filament/Generic PLA-CF @BBL P2S.json | 239 +- .../Generic PLA-CF @BBL X2D 0.4 nozzle.json | 363 +- .../BBL/filament/Generic PLA-CF @BBL X2D.json | 365 +- .../BBL/filament/Generic PLA-CF @base.json | 74 +- .../profiles/BBL/filament/Generic PLA-CF.json | 48 +- .../profiles/BBL/filament/Generic PLA.json | 54 +- .../BBL/filament/Generic PP @BBL A1.json | 26 +- .../BBL/filament/Generic PP @BBL A1M.json | 26 +- .../BBL/filament/Generic PP @BBL A2L.json | 38 +- .../Generic PP @BBL H2C 0.4 nozzle.json | 271 +- .../BBL/filament/Generic PP @BBL H2C.json | 273 +- .../BBL/filament/Generic PP @BBL H2D.json | 196 +- .../BBL/filament/Generic PP @BBL H2DP.json | 189 +- .../Generic PP @BBL H2S 0.4 nozzle.json | 212 +- .../BBL/filament/Generic PP @BBL P2S.json | 246 +- .../BBL/filament/Generic PP @BBL X1C.json | 193 +- .../Generic PP @BBL X2D 0.4 nozzle.json | 365 +- .../BBL/filament/Generic PP @BBL X2D.json | 367 +- .../BBL/filament/Generic PP @base.json | 14 +- .../BBL/filament/Generic PP-CF @BBL A1.json | 26 +- .../Generic PP-CF @BBL H2C 0.4 nozzle.json | 271 +- .../BBL/filament/Generic PP-CF @BBL H2C.json | 273 +- .../BBL/filament/Generic PP-CF @BBL H2D.json | 196 +- .../BBL/filament/Generic PP-CF @BBL H2DP.json | 189 +- .../Generic PP-CF @BBL H2S 0.4 nozzle.json | 212 +- .../BBL/filament/Generic PP-CF @BBL P2S.json | 246 +- .../BBL/filament/Generic PP-CF @BBL X1C.json | 193 +- .../Generic PP-CF @BBL X2D 0.4 nozzle.json | 365 +- .../BBL/filament/Generic PP-CF @BBL X2D.json | 367 +- .../BBL/filament/Generic PP-CF @base.json | 38 +- .../BBL/filament/Generic PP-GF @BBL A1.json | 26 +- .../Generic PP-GF @BBL H2C 0.4 nozzle.json | 271 +- .../BBL/filament/Generic PP-GF @BBL H2C.json | 273 +- .../BBL/filament/Generic PP-GF @BBL H2D.json | 196 +- .../BBL/filament/Generic PP-GF @BBL H2DP.json | 189 +- .../Generic PP-GF @BBL H2S 0.4 nozzle.json | 212 +- .../BBL/filament/Generic PP-GF @BBL P2S.json | 246 +- .../BBL/filament/Generic PP-GF @BBL X1C.json | 193 +- .../Generic PP-GF @BBL X2D 0.4 nozzle.json | 365 +- .../BBL/filament/Generic PP-GF @BBL X2D.json | 367 +- .../BBL/filament/Generic PP-GF @base.json | 38 +- .../Generic PPA-CF @BBL H2C 0.4 nozzle.json | 275 +- .../BBL/filament/Generic PPA-CF @BBL H2C.json | 283 +- .../BBL/filament/Generic PPA-CF @BBL H2D.json | 206 +- .../filament/Generic PPA-CF @BBL H2DP.json | 199 +- .../Generic PPA-CF @BBL H2S 0.4 nozzle.json | 210 +- .../BBL/filament/Generic PPA-CF @BBL P2S.json | 244 +- .../BBL/filament/Generic PPA-CF @BBL X1C.json | 197 +- .../BBL/filament/Generic PPA-CF @BBL X1E.json | 185 +- .../Generic PPA-CF @BBL X2D 0.4 nozzle.json | 369 +- .../BBL/filament/Generic PPA-CF @BBL X2D.json | 371 +- .../BBL/filament/Generic PPA-CF @base.json | 28 +- .../Generic PPA-GF @BBL H2C 0.4 nozzle.json | 263 +- .../BBL/filament/Generic PPA-GF @BBL H2C.json | 265 +- .../BBL/filament/Generic PPA-GF @BBL H2D.json | 188 +- .../filament/Generic PPA-GF @BBL H2DP.json | 181 +- .../Generic PPA-GF @BBL H2S 0.4 nozzle.json | 198 +- .../BBL/filament/Generic PPA-GF @BBL P2S.json | 232 +- .../BBL/filament/Generic PPA-GF @BBL X1C.json | 185 +- .../BBL/filament/Generic PPA-GF @BBL X1E.json | 173 +- .../Generic PPA-GF @BBL X2D 0.4 nozzle.json | 351 +- .../BBL/filament/Generic PPA-GF @BBL X2D.json | 353 +- .../BBL/filament/Generic PPA-GF @base.json | 32 +- .../Generic PPS @BBL H2C 0.4 nozzle.json | 252 +- .../BBL/filament/Generic PPS @BBL H2C.json | 254 +- .../BBL/filament/Generic PPS @BBL H2D.json | 177 +- .../BBL/filament/Generic PPS @BBL H2DP.json | 171 +- .../Generic PPS @BBL H2S 0.4 nozzle.json | 187 +- .../BBL/filament/Generic PPS @BBL X1E.json | 163 +- .../BBL/filament/Generic PPS @base.json | 12 +- .../Generic PPS-CF @BBL H2C 0.4 nozzle.json | 246 +- .../BBL/filament/Generic PPS-CF @BBL H2C.json | 254 +- .../BBL/filament/Generic PPS-CF @BBL H2D.json | 180 +- .../filament/Generic PPS-CF @BBL H2DP.json | 174 +- .../Generic PPS-CF @BBL H2S 0.4 nozzle.json | 181 +- .../BBL/filament/Generic PPS-CF @BBL X1E.json | 163 +- .../BBL/filament/Generic PPS-CF @base.json | 70 +- .../BBL/filament/Generic PVA @0.2 nozzle.json | 32 +- .../Generic PVA @BBL A1 0.2 nozzle.json | 74 +- .../BBL/filament/Generic PVA @BBL A1.json | 72 +- .../Generic PVA @BBL A1M 0.2 nozzle.json | 74 +- .../BBL/filament/Generic PVA @BBL A1M.json | 72 +- .../Generic PVA @BBL A2L 0.2 nozzle.json | 92 +- .../BBL/filament/Generic PVA @BBL A2L.json | 84 +- .../Generic PVA @BBL H2C 0.2 nozzle.json | 253 +- .../Generic PVA @BBL H2C 0.4 nozzle.json | 263 +- .../BBL/filament/Generic PVA @BBL H2C.json | 265 +- .../BBL/filament/Generic PVA @BBL H2D.json | 194 +- .../BBL/filament/Generic PVA @BBL H2DP.json | 187 +- .../Generic PVA @BBL H2S 0.4 nozzle.json | 199 +- .../Generic PVA @BBL P2S 0.2 nozzle.json | 231 +- .../BBL/filament/Generic PVA @BBL P2S.json | 239 +- .../Generic PVA @BBL X2D 0.2 nozzle.json | 353 +- .../Generic PVA @BBL X2D 0.4 nozzle.json | 363 +- .../BBL/filament/Generic PVA @BBL X2D.json | 365 +- .../BBL/filament/Generic PVA @base.json | 40 +- .../profiles/BBL/filament/Generic PVA.json | 42 +- .../BBL/filament/Generic SBS @base.json | 17 - .../profiles/BBL/filament/Generic SBS.json | 26 - .../BBL/filament/Generic TPU @BBL A1.json | 54 +- .../BBL/filament/Generic TPU @BBL A1M.json | 54 +- .../BBL/filament/Generic TPU @BBL A2L.json | 60 +- .../Generic TPU @BBL H2C 0.4 nozzle.json | 306 +- .../BBL/filament/Generic TPU @BBL H2C.json | 308 +- .../BBL/filament/Generic TPU @BBL H2D.json | 450 +- .../BBL/filament/Generic TPU @BBL H2DP.json | 408 +- .../BBL/filament/Generic TPU @BBL H2S.json | 218 +- .../BBL/filament/Generic TPU @BBL P2S.json | 244 +- .../Generic TPU @BBL X2D 0.4 nozzle.json | 369 +- .../BBL/filament/Generic TPU @BBL X2D.json | 371 +- .../BBL/filament/Generic TPU @base.json | 28 +- .../filament/Generic TPU for AMS @BBL A1.json | 54 +- .../Generic TPU for AMS @BBL A1M.json | 54 +- .../Generic TPU for AMS @BBL A2L.json | 66 +- ...neric TPU for AMS @BBL H2C 0.4 nozzle.json | 320 +- .../Generic TPU for AMS @BBL H2C.json | 322 +- .../Generic TPU for AMS @BBL H2D.json | 235 +- .../Generic TPU for AMS @BBL H2DP.json | 227 +- .../Generic TPU for AMS @BBL H2S.json | 253 +- .../Generic TPU for AMS @BBL P1P.json | 203 +- .../Generic TPU for AMS @BBL P2S.json | 274 +- .../Generic TPU for AMS @BBL X1C.json | 209 +- ...neric TPU for AMS @BBL X2D 0.4 nozzle.json | 393 +- .../Generic TPU for AMS @BBL X2D.json | 395 +- .../filament/Generic TPU for AMS @base.json | 58 +- .../profiles/BBL/filament/Generic TPU.json | 42 +- ...Overture Matte PLA @BBL A1 0.2 nozzle.json | 38 + .../filament/Overture Matte PLA @BBL A1.json | 37 + ...verture Matte PLA @BBL A1M 0.2 nozzle.json | 14 + .../filament/Overture Matte PLA @BBL A1M.json | 37 + ...verture Matte PLA @BBL H2D 0.2 nozzle.json | 183 +- .../filament/Overture Matte PLA @BBL H2D.json | 194 +- ...erture Matte PLA @BBL H2DP 0.2 nozzle.json | 183 +- .../Overture Matte PLA @BBL H2DP.json | 187 +- ...verture Matte PLA @BBL H2S 0.2 nozzle.json | 205 +- .../filament/Overture Matte PLA @BBL H2S.json | 215 +- ...verture Matte PLA @BBL P1P 0.2 nozzle.json | 15 + .../filament/Overture Matte PLA @BBL P1P.json | 69 + .../filament/Overture Matte PLA @BBL X1.json | 54 + ...verture Matte PLA @BBL X1C 0.2 nozzle.json | 18 + .../filament/Overture Matte PLA @BBL X1C.json | 57 + .../filament/Overture Matte PLA @base.json | 26 + .../Overture PLA @BBL A1 0.2 nozzle.json | 26 + .../BBL/filament/Overture PLA @BBL A1.json | 25 + .../Overture PLA @BBL A1M 0.2 nozzle.json | 14 + .../BBL/filament/Overture PLA @BBL A1M.json | 37 + .../Overture PLA @BBL H2D 0.2 nozzle.json | 183 +- .../BBL/filament/Overture PLA @BBL H2D.json | 194 +- .../Overture PLA @BBL H2DP 0.2 nozzle.json | 183 +- .../BBL/filament/Overture PLA @BBL H2DP.json | 187 +- .../Overture PLA @BBL H2S 0.2 nozzle.json | 205 +- .../BBL/filament/Overture PLA @BBL H2S.json | 215 +- .../Overture PLA @BBL P1P 0.2 nozzle.json | 15 + .../BBL/filament/Overture PLA @BBL P1P.json | 57 + .../BBL/filament/Overture PLA @BBL X1.json | 54 + .../Overture PLA @BBL X1C 0.2 nozzle.json | 18 + .../BBL/filament/Overture PLA @BBL X1C.json | 57 + .../BBL/filament/Overture PLA @base.json | 26 + ...Overture Matte PLA @BBL A1 0.2 nozzle.json | 38 - .../Overture/Overture Matte PLA @BBL A1.json | 37 - ...verture Matte PLA @BBL A1M 0.2 nozzle.json | 14 - .../Overture/Overture Matte PLA @BBL A1M.json | 37 - ...verture Matte PLA @BBL P1P 0.2 nozzle.json | 15 - .../Overture/Overture Matte PLA @BBL P1P.json | 142 - .../Overture/Overture Matte PLA @BBL X1.json | 127 - ...verture Matte PLA @BBL X1C 0.2 nozzle.json | 18 - .../Overture/Overture Matte PLA @BBL X1C.json | 130 - .../Overture/Overture Matte PLA @base.json | 26 - .../Overture PLA @BBL A1 0.2 nozzle.json | 26 - .../Overture/Overture PLA @BBL A1.json | 25 - .../Overture PLA @BBL A1M 0.2 nozzle.json | 14 - .../Overture/Overture PLA @BBL A1M.json | 37 - .../Overture PLA @BBL P1P 0.2 nozzle.json | 15 - .../Overture/Overture PLA @BBL P1P.json | 130 - .../Overture/Overture PLA @BBL X1.json | 127 - .../Overture PLA @BBL X1C 0.2 nozzle.json | 18 - .../Overture/Overture PLA @BBL X1C.json | 130 - .../filament/Overture/Overture PLA @base.json | 26 - .../P1P/Bambu ABS @BBL P1P 0.2 nozzle.json | 209 +- .../P1P/Bambu ABS @BBL P1P 0.6 nozzle.json | 87 + .../BBL/filament/P1P/Bambu ABS @BBL P1P.json | 228 +- .../filament/P1P/Bambu PA-CF @BBL P1P.json | 194 +- .../Bambu PAHT-CF @BBL P1P 0.6 nozzle.json | 55 + .../filament/P1P/Bambu PAHT-CF @BBL P1P.json | 169 +- .../P1P/Bambu PC @BBL P1P 0.2 nozzle.json | 217 +- .../P1P/Bambu PC @BBL P1P 0.6 nozzle.json | 85 + .../BBL/filament/P1P/Bambu PC @BBL P1P.json | 220 +- .../filament/P1P/Bambu PET-CF @BBL P1P.json | 203 +- .../Bambu PETG-CF @BBL P1P 0.4 nozzle.json | 195 +- .../filament/P1P/Bambu PETG-CF @BBL P1P.json | 197 +- .../filament/P1P/Bambu PLA Aero @BBL P1P.json | 209 +- .../Bambu PLA Basic @BBL P1P 0.2 nozzle.json | 207 +- .../Bambu PLA Basic @BBL P1P 0.6 nozzle.json | 91 + .../P1P/Bambu PLA Basic @BBL P1P.json | 232 +- .../Bambu PLA Marble @BBL P1P 0.6 nozzle.json | 92 + .../P1P/Bambu PLA Marble @BBL P1P.json | 231 +- .../Bambu PLA Matte @BBL P1P 0.2 nozzle.json | 207 +- .../Bambu PLA Matte @BBL P1P 0.6 nozzle.json | 91 + .../P1P/Bambu PLA Matte @BBL P1P.json | 232 +- .../Bambu PLA Metal @BBL P1P 0.2 nozzle.json | 199 +- .../Bambu PLA Metal @BBL P1P 0.6 nozzle.json | 83 + .../P1P/Bambu PLA Metal @BBL P1P.json | 224 +- .../Bambu PLA Silk @BBL P1P 0.2 nozzle.json | 187 +- .../filament/P1P/Bambu PLA Silk @BBL P1P.json | 197 +- ...Bambu PLA Sparkle @BBL P1P 0.6 nozzle.json | 83 + .../P1P/Bambu PLA Sparkle @BBL P1P.json | 224 +- .../Bambu PLA Tough @BBL P1P 0.2 nozzle.json | 199 +- .../P1P/Bambu PLA Tough @BBL P1P.json | 209 +- .../Bambu PLA Tough+ @BBL P1P 0.2 nozzle.json | 219 +- .../Bambu PLA Tough+ @BBL P1P 0.6 nozzle.json | 83 + .../P1P/Bambu PLA Tough+ @BBL P1P.json | 224 +- .../P1P/Bambu PLA-CF @BBL P1P 0.8 nozzle.json | 221 +- .../filament/P1P/Bambu PLA-CF @BBL P1P.json | 215 +- .../Bambu Support For PA PET @BBL P1P.json | 167 +- ...u Support For PLA @BBL P1P 0.2 nozzle.json | 199 +- .../P1P/Bambu Support For PLA @BBL P1P.json | 203 +- .../P1P/Bambu Support G @BBL P1P.json | 167 +- .../Bambu Support W @BBL P1P 0.2 nozzle.json | 199 +- .../P1P/Bambu Support W @BBL P1P.json | 203 +- .../filament/P1P/Bambu TPU 95A @BBL P1P.json | 191 +- .../P1P/Generic ABS @BBL P1P 0.2 nozzle.json | 195 +- .../filament/P1P/Generic ABS @BBL P1P.json | 203 +- .../P1P/Generic ASA @BBL P1P 0.2 nozzle.json | 159 +- .../filament/P1P/Generic ASA @BBL P1P.json | 163 +- .../BBL/filament/P1P/Generic PA @BBL P1P.json | 169 +- .../filament/P1P/Generic PA-CF @BBL P1P.json | 167 +- .../P1P/Generic PC @BBL P1P 0.2 nozzle.json | 211 +- .../BBL/filament/P1P/Generic PC @BBL P1P.json | 215 +- .../P1P/Generic PETG @BBL P1P 0.2 nozzle.json | 183 +- .../filament/P1P/Generic PETG @BBL P1P.json | 187 +- .../P1P/Generic PETG-CF @BBL A1M.json | 30 +- .../P1P/Generic PETG-CF @BBL P1P.json | 183 +- .../P1P/Generic PLA @BBL P1P 0.2 nozzle.json | 205 +- .../filament/P1P/Generic PLA @BBL P1P.json | 203 +- .../P1P/Generic PLA Silk @BBL P1P.json | 171 +- .../filament/P1P/Generic PLA-CF @BBL P1P.json | 187 +- .../P1P/Generic PVA @BBL P1P 0.2 nozzle.json | 183 +- .../filament/P1P/Generic PVA @BBL P1P.json | 199 +- .../filament/P1P/Generic TPU @BBL P1P.json | 197 +- .../P1P/PolyLite PLA @BBL P1P 0.2 nozzle.json | 64 +- .../filament/P1P/PolyLite PLA @BBL P1P.json | 205 +- .../PolyTerra PLA @BBL P1P 0.2 nozzle.json | 64 +- .../filament/P1P/PolyTerra PLA @BBL P1P.json | 215 +- .../P1P/eSUN PLA+ @BBL P1P 0.2 nozzle.json | 199 +- .../BBL/filament/P1P/eSUN PLA+ @BBL P1P.json | 209 +- .../PolyLite ABS @BBL A1 0.2 nozzle.json | 32 + .../BBL/filament/PolyLite ABS @BBL A1.json | 31 + .../PolyLite ABS @BBL H2D 0.2 nozzle.json | 47 + .../BBL/filament/PolyLite ABS @BBL H2D.json | 55 + .../PolyLite ABS @BBL H2DP 0.2 nozzle.json | 173 +- .../BBL/filament/PolyLite ABS @BBL H2DP.json | 177 +- .../PolyLite ABS @BBL P1P 0.2 nozzle.json | 15 + .../BBL/filament/PolyLite ABS @BBL P1P.json | 62 + .../PolyLite ABS @BBL X1C 0.2 nozzle.json | 17 + .../BBL/filament/PolyLite ABS @BBL X1C.json | 50 + .../PolyLite ABS @BBL X1E 0.2 nozzle.json | 42 + .../BBL/filament/PolyLite ABS @BBL X1E.json | 44 + .../BBL/filament/PolyLite ABS @base.json | 23 + .../PolyLite ASA @BBL A1 0.2 nozzle.json | 14 + .../BBL/filament/PolyLite ASA @BBL A1.json | 13 + .../PolyLite ASA @BBL H2D 0.2 nozzle.json | 47 + .../BBL/filament/PolyLite ASA @BBL H2D.json | 55 + .../PolyLite ASA @BBL H2DP 0.2 nozzle.json | 173 +- .../BBL/filament/PolyLite ASA @BBL H2DP.json | 177 +- .../PolyLite ASA @BBL P1P 0.2 nozzle.json | 15 + .../BBL/filament/PolyLite ASA @BBL P1P.json | 44 + .../PolyLite ASA @BBL X1C 0.2 nozzle.json | 17 + .../BBL/filament/PolyLite ASA @BBL X1C.json | 50 + .../PolyLite ASA @BBL X1E 0.2 nozzle.json | 15 + .../BBL/filament/PolyLite ASA @BBL X1E.json | 44 + .../BBL/filament/PolyLite ASA @base.json | 41 + .../PolyLite PETG @BBL A1 0.2 nozzle.json | 29 + .../BBL/filament/PolyLite PETG @BBL A1.json | 31 + .../PolyLite PETG @BBL A1M 0.2 nozzle.json | 14 + .../BBL/filament/PolyLite PETG @BBL A1M.json | 19 + .../PolyLite PETG @BBL H2D 0.2 nozzle.json | 44 + .../BBL/filament/PolyLite PETG @BBL H2D.json | 55 + .../PolyLite PETG @BBL H2DP 0.2 nozzle.json | 167 +- .../BBL/filament/PolyLite PETG @BBL H2DP.json | 177 +- .../PolyLite PETG @BBL H2S 0.2 nozzle.json | 189 +- .../BBL/filament/PolyLite PETG @BBL H2S.json | 198 +- .../PolyLite PETG @BBL P1P 0.2 nozzle.json | 15 + .../BBL/filament/PolyLite PETG @BBL P1P.json | 59 + .../PolyLite PETG @BBL X1C 0.2 nozzle.json | 18 + .../BBL/filament/PolyLite PETG @BBL X1C.json | 56 + .../BBL/filament/PolyLite PETG @base.json | 59 + .../PolyLite PLA @BBL A1 0.2 nozzle.json | 38 + .../BBL/filament/PolyLite PLA @BBL A1.json | 40 + .../PolyLite PLA @BBL A1M 0.2 nozzle.json | 38 + .../BBL/filament/PolyLite PLA @BBL A1M.json | 40 + .../PolyLite PLA @BBL H2D 0.2 nozzle.json | 50 + .../BBL/filament/PolyLite PLA @BBL H2D.json | 58 + .../PolyLite PLA @BBL H2DP 0.2 nozzle.json | 179 +- .../BBL/filament/PolyLite PLA @BBL H2DP.json | 183 +- .../PolyLite PLA @BBL H2S 0.2 nozzle.json | 201 +- .../BBL/filament/PolyLite PLA @BBL H2S.json | 210 +- .../BBL/filament/PolyLite PLA @BBL X1.json | 50 + .../PolyLite PLA @BBL X1C 0.2 nozzle.json | 18 + .../BBL/filament/PolyLite PLA @BBL X1C.json | 53 + .../BBL/filament/PolyLite PLA @base.json | 17 + .../PolyTerra PLA @BBL A1 0.2 nozzle.json | 38 + .../BBL/filament/PolyTerra PLA @BBL A1.json | 40 + .../PolyTerra PLA @BBL A1M 0.2 nozzle.json | 38 + .../BBL/filament/PolyTerra PLA @BBL A1M.json | 40 + .../PolyTerra PLA @BBL H2D 0.2 nozzle.json | 54 + .../BBL/filament/PolyTerra PLA @BBL H2D.json | 63 + .../PolyTerra PLA @BBL H2DP 0.2 nozzle.json | 183 +- .../BBL/filament/PolyTerra PLA @BBL H2DP.json | 187 +- .../PolyTerra PLA @BBL H2S 0.2 nozzle.json | 205 +- .../BBL/filament/PolyTerra PLA @BBL H2S.json | 215 +- .../BBL/filament/PolyTerra PLA @BBL X1.json | 54 + .../PolyTerra PLA @BBL X1C 0.2 nozzle.json | 18 + .../BBL/filament/PolyTerra PLA @BBL X1C.json | 57 + .../BBL/filament/PolyTerra PLA @base.json | 20 + .../Polymaker/Fiberon PA12-CF @BBL H2D.json | 188 +- .../Polymaker/Fiberon PA12-CF @BBL X1C.json | 169 +- .../Polymaker/Fiberon PA12-CF @base.json | 143 +- .../Polymaker/Fiberon PA6-CF @BBL H2D.json | 187 +- .../Polymaker/Fiberon PA6-CF @BBL X1C.json | 169 +- .../Polymaker/Fiberon PA6-CF @base.json | 134 +- .../Polymaker/Fiberon PA6-GF @BBL H2D.json | 193 +- .../Polymaker/Fiberon PA6-GF @BBL X1C.json | 175 +- .../Polymaker/Fiberon PA6-GF @base.json | 143 +- .../Polymaker/Fiberon PA612-CF @BBL H2D.json | 187 +- .../Polymaker/Fiberon PA612-CF @BBL X1C.json | 173 +- .../Polymaker/Fiberon PA612-CF @base.json | 83 +- .../Polymaker/Fiberon PET-CF @BBL H2D.json | 199 +- .../Polymaker/Fiberon PET-CF @BBL X1C.json | 169 +- .../Polymaker/Fiberon PET-CF @base.json | 176 +- .../Polymaker/Fiberon PETG-ESD @BBL H2D.json | 193 +- .../Polymaker/Fiberon PETG-ESD @BBL X1C.json | 175 +- .../Polymaker/Fiberon PETG-ESD @base.json | 152 +- .../Polymaker/Fiberon PETG-rCF @BBL H2D.json | 205 +- .../Polymaker/Fiberon PETG-rCF @BBL X1C.json | 169 +- .../Polymaker/Fiberon PETG-rCF @base.json | 158 +- .../PolyLite ABS @BBL A1 0.2 nozzle.json | 32 - .../Polymaker/PolyLite ABS @BBL A1.json | 31 - .../PolyLite ABS @BBL H2D 0.2 nozzle.json | 128 - .../Polymaker/PolyLite ABS @BBL H2D.json | 130 - .../PolyLite ABS @BBL P1P 0.2 nozzle.json | 15 - .../Polymaker/PolyLite ABS @BBL P1P.json | 139 - .../PolyLite ABS @BBL X1C 0.2 nozzle.json | 17 - .../Polymaker/PolyLite ABS @BBL X1C.json | 127 - .../PolyLite ABS @BBL X1E 0.2 nozzle.json | 119 - .../Polymaker/PolyLite ABS @BBL X1E.json | 121 - .../Polymaker/PolyLite ABS @base.json | 23 - .../PolyLite ASA @BBL A1 0.2 nozzle.json | 14 - .../Polymaker/PolyLite ASA @BBL A1.json | 13 - .../PolyLite ASA @BBL H2D 0.2 nozzle.json | 128 - .../Polymaker/PolyLite ASA @BBL H2D.json | 130 - .../PolyLite ASA @BBL P1P 0.2 nozzle.json | 15 - .../Polymaker/PolyLite ASA @BBL P1P.json | 121 - .../PolyLite ASA @BBL X1C 0.2 nozzle.json | 17 - .../Polymaker/PolyLite ASA @BBL X1C.json | 127 - .../PolyLite ASA @BBL X1E 0.2 nozzle.json | 15 - .../Polymaker/PolyLite ASA @BBL X1E.json | 121 - .../Polymaker/PolyLite ASA @base.json | 41 - .../PolyLite PETG @BBL A1 0.2 nozzle.json | 29 - .../Polymaker/PolyLite PETG @BBL A1.json | 31 - .../PolyLite PETG @BBL A1M 0.2 nozzle.json | 14 - .../Polymaker/PolyLite PETG @BBL A1M.json | 19 - .../PolyLite PETG @BBL H2D 0.2 nozzle.json | 125 - .../Polymaker/PolyLite PETG @BBL H2D.json | 130 - .../PolyLite PETG @BBL P1P 0.2 nozzle.json | 15 - .../Polymaker/PolyLite PETG @BBL P1P.json | 136 - .../PolyLite PETG @BBL X1C 0.2 nozzle.json | 18 - .../Polymaker/PolyLite PETG @BBL X1C.json | 133 - .../Polymaker/PolyLite PETG @base.json | 59 - .../PolyLite PLA @BBL A1 0.2 nozzle.json | 38 - .../Polymaker/PolyLite PLA @BBL A1.json | 67 - .../PolyLite PLA @BBL A1M 0.2 nozzle.json | 38 - .../Polymaker/PolyLite PLA @BBL A1M.json | 67 - .../PolyLite PLA @BBL H2D 0.2 nozzle.json | 131 - .../Polymaker/PolyLite PLA @BBL H2D.json | 133 - .../Polymaker/PolyLite PLA @BBL X1.json | 64 - .../PolyLite PLA @BBL X1C 0.2 nozzle.json | 18 - .../Polymaker/PolyLite PLA @BBL X1C.json | 130 - .../Polymaker/PolyLite PLA @base.json | 17 - .../PolyTerra PLA @BBL A1 0.2 nozzle.json | 38 - .../Polymaker/PolyTerra PLA @BBL A1.json | 73 - .../PolyTerra PLA @BBL A1M 0.2 nozzle.json | 38 - .../Polymaker/PolyTerra PLA @BBL A1M.json | 73 - .../PolyTerra PLA @BBL H2D 0.2 nozzle.json | 131 - .../Polymaker/PolyTerra PLA @BBL H2D.json | 133 - .../Polymaker/PolyTerra PLA @BBL X1.json | 64 - .../PolyTerra PLA @BBL X1C 0.2 nozzle.json | 18 - .../Polymaker/PolyTerra PLA @BBL X1C.json | 130 - .../Polymaker/PolyTerra PLA @base.json | 20 - .../SUNLU/SUNLU Marble PLA @BBL A1.json | 84 +- .../SUNLU/SUNLU Marble PLA @BBL A1M.json | 84 +- .../SUNLU/SUNLU Marble PLA @BBL P1P.json | 217 +- .../SUNLU/SUNLU Marble PLA @BBL X1.json | 181 +- .../SUNLU/SUNLU Marble PLA @BBL X1C.json | 193 +- .../SUNLU/SUNLU Marble PLA @base.json | 56 +- .../SUNLU/SUNLU PETG @BBL A1 0.2 nozzle.json | 32 +- .../SUNLU/SUNLU PETG @BBL A1 0.8 nozzle.json | 46 +- .../filament/SUNLU/SUNLU PETG @BBL A1.json | 32 +- .../SUNLU/SUNLU PETG @BBL A1M 0.2 nozzle.json | 32 +- .../SUNLU/SUNLU PETG @BBL A1M 0.8 nozzle.json | 40 +- .../filament/SUNLU/SUNLU PETG @BBL A1M.json | 32 +- .../SUNLU/SUNLU PETG @BBL X1C 0.2 nozzle.json | 171 +- .../SUNLU/SUNLU PETG @BBL X1C 0.8 nozzle.json | 193 +- .../filament/SUNLU/SUNLU PETG @BBL X1C.json | 171 +- .../BBL/filament/SUNLU/SUNLU PETG @base.json | 166 +- .../SUNLU PLA Matte @BBL A1 0.2 nozzle.json | 74 +- .../SUNLU/SUNLU PLA Matte @BBL A1.json | 72 +- .../SUNLU PLA Matte @BBL A1M 0.2 nozzle.json | 74 +- .../SUNLU/SUNLU PLA Matte @BBL A1M.json | 72 +- .../SUNLU PLA Matte @BBL P1P 0.2 nozzle.json | 207 +- .../SUNLU/SUNLU PLA Matte @BBL P1P.json | 217 +- .../SUNLU/SUNLU PLA Matte @BBL X1.json | 187 +- .../SUNLU PLA Matte @BBL X1C 0.2 nozzle.json | 183 +- .../SUNLU/SUNLU PLA Matte @BBL X1C.json | 193 +- .../filament/SUNLU/SUNLU PLA Matte @base.json | 104 +- .../SUNLU PLA+ 2.0 @BBL A1 0.2 nozzle.json | 74 +- .../SUNLU/SUNLU PLA+ 2.0 @BBL A1.json | 72 +- .../SUNLU PLA+ 2.0 @BBL A1M 0.2 nozzle.json | 74 +- .../SUNLU/SUNLU PLA+ 2.0 @BBL A1M.json | 72 +- .../SUNLU PLA+ 2.0 @BBL P1P 0.2 nozzle.json | 207 +- .../SUNLU/SUNLU PLA+ 2.0 @BBL P1P.json | 217 +- .../SUNLU/SUNLU PLA+ 2.0 @BBL X1.json | 187 +- .../SUNLU PLA+ 2.0 @BBL X1C 0.2 nozzle.json | 183 +- .../SUNLU/SUNLU PLA+ 2.0 @BBL X1C.json | 193 +- .../filament/SUNLU/SUNLU PLA+ 2.0 @base.json | 92 +- .../SUNLU/SUNLU PLA+ @BBL A1 0.2 nozzle.json | 74 +- .../filament/SUNLU/SUNLU PLA+ @BBL A1.json | 72 +- .../SUNLU/SUNLU PLA+ @BBL A1M 0.2 nozzle.json | 74 +- .../filament/SUNLU/SUNLU PLA+ @BBL A1M.json | 72 +- .../SUNLU/SUNLU PLA+ @BBL P1P 0.2 nozzle.json | 207 +- .../filament/SUNLU/SUNLU PLA+ @BBL P1P.json | 217 +- .../filament/SUNLU/SUNLU PLA+ @BBL X1.json | 187 +- .../SUNLU/SUNLU PLA+ @BBL X1C 0.2 nozzle.json | 183 +- .../filament/SUNLU/SUNLU PLA+ @BBL X1C.json | 187 +- .../BBL/filament/SUNLU/SUNLU PLA+ @base.json | 92 +- .../SUNLU Silk PLA+ @BBL A1 0.2 nozzle.json | 74 +- .../SUNLU/SUNLU Silk PLA+ @BBL A1.json | 72 +- .../SUNLU Silk PLA+ @BBL A1M 0.2 nozzle.json | 74 +- .../SUNLU/SUNLU Silk PLA+ @BBL A1M.json | 72 +- .../SUNLU Silk PLA+ @BBL P1P 0.2 nozzle.json | 195 +- .../SUNLU/SUNLU Silk PLA+ @BBL P1P.json | 205 +- .../SUNLU/SUNLU Silk PLA+ @BBL X1.json | 181 +- .../SUNLU Silk PLA+ @BBL X1C 0.2 nozzle.json | 183 +- .../SUNLU/SUNLU Silk PLA+ @BBL X1C.json | 193 +- .../filament/SUNLU/SUNLU Silk PLA+ @base.json | 106 +- .../SUNLU/SUNLU Wood PLA @BBL A1.json | 78 +- .../SUNLU/SUNLU Wood PLA @BBL A1M.json | 78 +- .../SUNLU/SUNLU Wood PLA @BBL P1P.json | 235 +- .../SUNLU/SUNLU Wood PLA @BBL X1.json | 199 +- .../SUNLU/SUNLU Wood PLA @BBL X1C.json | 199 +- .../filament/SUNLU/SUNLU Wood PLA @base.json | 122 +- .../eSUN PLA+ @BBL A1 0.2 nozzle.json | 38 + .../BBL/filament/eSUN PLA+ @BBL A1.json | 37 + .../eSUN PLA+ @BBL A1M 0.2 nozzle.json | 38 + .../BBL/filament/eSUN PLA+ @BBL A1M.json | 37 + .../eSUN PLA+ @BBL H2D 0.2 nozzle.json | 54 + .../BBL/filament/eSUN PLA+ @BBL H2D.json | 63 + .../eSUN PLA+ @BBL H2DP 0.2 nozzle.json | 183 +- .../BBL/filament/eSUN PLA+ @BBL H2DP.json | 187 +- .../eSUN PLA+ @BBL H2S 0.2 nozzle.json | 205 +- .../BBL/filament/eSUN PLA+ @BBL H2S.json | 215 +- .../BBL/filament/eSUN PLA+ @BBL X1.json | 51 + .../eSUN PLA+ @BBL X1C 0.2 nozzle.json | 49 + .../BBL/filament/eSUN PLA+ @BBL X1C.json | 54 + .../BBL/filament/eSUN PLA+ @base.json | 29 + .../eSUN/eSUN PLA+ @BBL A1 0.2 nozzle.json | 38 - .../BBL/filament/eSUN/eSUN PLA+ @BBL A1.json | 37 - .../eSUN/eSUN PLA+ @BBL A1M 0.2 nozzle.json | 38 - .../BBL/filament/eSUN/eSUN PLA+ @BBL A1M.json | 37 - .../eSUN/eSUN PLA+ @BBL H2D 0.2 nozzle.json | 131 - .../BBL/filament/eSUN/eSUN PLA+ @BBL H2D.json | 133 - .../BBL/filament/eSUN/eSUN PLA+ @BBL X1.json | 124 - .../eSUN/eSUN PLA+ @BBL X1C 0.2 nozzle.json | 122 - .../BBL/filament/eSUN/eSUN PLA+ @BBL X1C.json | 127 - .../BBL/filament/eSUN/eSUN PLA+ @base.json | 29 - .../BBL/filament/fdm_filament_abs.json | 186 +- .../BBL/filament/fdm_filament_asa.json | 192 +- .../BBL/filament/fdm_filament_bvoh.json | 177 +- .../BBL/filament/fdm_filament_common.json | 697 +- .../filament/fdm_filament_dual_common.json | 75 - .../BBL/filament/fdm_filament_eva.json | 36 +- .../BBL/filament/fdm_filament_hips.json | 174 +- .../BBL/filament/fdm_filament_pa.json | 189 +- .../BBL/filament/fdm_filament_pc.json | 186 +- .../BBL/filament/fdm_filament_pctg.json | 147 +- .../BBL/filament/fdm_filament_pe.json | 177 +- .../BBL/filament/fdm_filament_pet.json | 153 +- .../BBL/filament/fdm_filament_pha.json | 177 +- .../BBL/filament/fdm_filament_pla.json | 177 +- .../BBL/filament/fdm_filament_pp.json | 195 +- .../BBL/filament/fdm_filament_ppa.json | 205 +- .../BBL/filament/fdm_filament_pps.json | 184 +- .../BBL/filament/fdm_filament_pva.json | 195 +- .../BBL/filament/fdm_filament_sbs.json | 85 - .../fdm_filament_template_direct_bowden.json | 228 + ...m_filament_template_direct_bowden_e3d.json | 302 + .../fdm_filament_template_direct_dual.json | 162 + ...fdm_filament_template_direct_dual_e3d.json | 201 + .../BBL/filament/fdm_filament_tpu.json | 186 +- .../BBL/filament/filament_id_map.json | 242 + .../BBL/filament/filament_name_map.json | 245 + .../BBL/filament/filaments_color_codes.json | 14738 +++++++------- .../filament/support_recommended_params.json | 263 + .../BBL/machine/Bambu Lab A1 0.2 nozzle.json | 57 +- ...nozzle template change_filament_gcode.json | 6 + ....4 nozzle template layer_change_gcode.json | 6 + ...0.4 nozzle template machine_end_gcode.json | 6 + ...4 nozzle template machine_start_gcode.json | 6 + ... 0.4 nozzle template time_lapse_gcode.json | 6 + .../BBL/machine/Bambu Lab A1 0.4 nozzle.json | 159 +- .../BBL/machine/Bambu Lab A1 0.6 nozzle.json | 57 +- .../BBL/machine/Bambu Lab A1 0.8 nozzle.json | 57 +- .../machine/Bambu Lab A1 mini 0.2 nozzle.json | 75 +- ...nozzle template change_filament_gcode.json | 6 + ....4 nozzle template layer_change_gcode.json | 6 + ...0.4 nozzle template machine_end_gcode.json | 6 + ...4 nozzle template machine_start_gcode.json | 6 + ... 0.4 nozzle template time_lapse_gcode.json | 6 + .../machine/Bambu Lab A1 mini 0.4 nozzle.json | 172 +- .../machine/Bambu Lab A1 mini 0.6 nozzle.json | 84 +- .../machine/Bambu Lab A1 mini 0.8 nozzle.json | 84 +- .../BBL/machine/Bambu Lab A1 mini.json | 29 +- .../profiles/BBL/machine/Bambu Lab A1.json | 25 +- .../BBL/machine/Bambu Lab A2L 0.2 nozzle.json | 70 +- ...nozzle template change_filament_gcode.json | 6 + ....4 nozzle template layer_change_gcode.json | 6 + ...0.4 nozzle template machine_end_gcode.json | 6 + ...4 nozzle template machine_start_gcode.json | 6 + ... 0.4 nozzle template time_lapse_gcode.json | 6 + .../BBL/machine/Bambu Lab A2L 0.4 nozzle.json | 214 +- .../BBL/machine/Bambu Lab A2L 0.6 nozzle.json | 70 +- .../BBL/machine/Bambu Lab A2L 0.8 nozzle.json | 70 +- .../profiles/BBL/machine/Bambu Lab A2L.json | 33 +- .../BBL/machine/Bambu Lab H2C 0.2 nozzle.json | 366 +- ...nozzle template change_filament_gcode.json | 6 + ....4 nozzle template layer_change_gcode.json | 6 + ...0.4 nozzle template machine_end_gcode.json | 6 + ...4 nozzle template machine_start_gcode.json | 6 + ... 0.4 nozzle template time_lapse_gcode.json | 6 + ...zle template wrapping_detection_gcode.json | 6 + .../BBL/machine/Bambu Lab H2C 0.4 nozzle.json | 302 +- .../BBL/machine/Bambu Lab H2C 0.6 nozzle.json | 73 +- .../BBL/machine/Bambu Lab H2C 0.8 nozzle.json | 366 +- .../profiles/BBL/machine/Bambu Lab H2C.json | 31 +- .../BBL/machine/Bambu Lab H2D 0.2 nozzle.json | 658 +- ...nozzle template change_filament_gcode.json | 6 + ....4 nozzle template layer_change_gcode.json | 6 + ...0.4 nozzle template machine_end_gcode.json | 6 + ...4 nozzle template machine_start_gcode.json | 6 + ... 0.4 nozzle template time_lapse_gcode.json | 6 + ...zle template wrapping_detection_gcode.json | 6 + .../BBL/machine/Bambu Lab H2D 0.4 nozzle.json | 399 +- .../BBL/machine/Bambu Lab H2D 0.6 nozzle.json | 72 +- .../BBL/machine/Bambu Lab H2D 0.8 nozzle.json | 658 +- .../machine/Bambu Lab H2D Pro 0.2 nozzle.json | 652 +- ...nozzle template change_filament_gcode.json | 6 + ....4 nozzle template layer_change_gcode.json | 6 + ...0.4 nozzle template machine_end_gcode.json | 6 + ...4 nozzle template machine_start_gcode.json | 6 + ... 0.4 nozzle template time_lapse_gcode.json | 6 + ...zle template wrapping_detection_gcode.json | 6 + .../machine/Bambu Lab H2D Pro 0.4 nozzle.json | 295 +- .../machine/Bambu Lab H2D Pro 0.6 nozzle.json | 67 +- .../machine/Bambu Lab H2D Pro 0.8 nozzle.json | 652 +- .../BBL/machine/Bambu Lab H2D Pro.json | 28 +- .../profiles/BBL/machine/Bambu Lab H2D.json | 30 +- .../BBL/machine/Bambu Lab H2S 0.2 nozzle.json | 237 +- ...nozzle template change_filament_gcode.json | 6 + ....4 nozzle template layer_change_gcode.json | 6 + ...0.4 nozzle template machine_end_gcode.json | 6 + ...4 nozzle template machine_start_gcode.json | 6 + ... 0.4 nozzle template time_lapse_gcode.json | 6 + ...zle template wrapping_detection_gcode.json | 6 + .../BBL/machine/Bambu Lab H2S 0.4 nozzle.json | 192 +- .../BBL/machine/Bambu Lab H2S 0.6 nozzle.json | 53 +- .../BBL/machine/Bambu Lab H2S 0.8 nozzle.json | 237 +- .../profiles/BBL/machine/Bambu Lab H2S.json | 36 +- ...2 nozzle template machine_start_gcode.json | 6 + .../BBL/machine/Bambu Lab P1P 0.2 nozzle.json | 258 +- ...nozzle template change_filament_gcode.json | 6 + ....4 nozzle template layer_change_gcode.json | 6 + ...0.4 nozzle template machine_end_gcode.json | 6 + ...4 nozzle template machine_start_gcode.json | 6 + ... 0.4 nozzle template time_lapse_gcode.json | 6 + .../BBL/machine/Bambu Lab P1P 0.4 nozzle.json | 467 +- ...6 nozzle template machine_start_gcode.json | 6 + .../BBL/machine/Bambu Lab P1P 0.6 nozzle.json | 88 +- ...8 nozzle template machine_start_gcode.json | 6 + .../BBL/machine/Bambu Lab P1P 0.8 nozzle.json | 85 +- .../profiles/BBL/machine/Bambu Lab P1P.json | 25 +- ...2 nozzle template machine_start_gcode.json | 6 + .../BBL/machine/Bambu Lab P1S 0.2 nozzle.json | 258 +- ...nozzle template change_filament_gcode.json | 6 + ....4 nozzle template layer_change_gcode.json | 6 + ...0.4 nozzle template machine_end_gcode.json | 6 + ...4 nozzle template machine_start_gcode.json | 6 + ... 0.4 nozzle template time_lapse_gcode.json | 6 + .../BBL/machine/Bambu Lab P1S 0.4 nozzle.json | 465 +- ...6 nozzle template machine_start_gcode.json | 6 + .../BBL/machine/Bambu Lab P1S 0.6 nozzle.json | 88 +- ...8 nozzle template machine_start_gcode.json | 6 + .../BBL/machine/Bambu Lab P1S 0.8 nozzle.json | 91 +- .../profiles/BBL/machine/Bambu Lab P1S.json | 24 +- .../BBL/machine/Bambu Lab P2S 0.2 nozzle.json | 252 +- ...nozzle template change_filament_gcode.json | 6 + ....4 nozzle template layer_change_gcode.json | 6 + ...0.4 nozzle template machine_end_gcode.json | 6 + ...4 nozzle template machine_start_gcode.json | 6 + ... 0.4 nozzle template time_lapse_gcode.json | 6 + ...zle template wrapping_detection_gcode.json | 6 + .../BBL/machine/Bambu Lab P2S 0.4 nozzle.json | 107 +- .../BBL/machine/Bambu Lab P2S 0.6 nozzle.json | 66 +- .../BBL/machine/Bambu Lab P2S 0.8 nozzle.json | 256 +- .../profiles/BBL/machine/Bambu Lab P2S.json | 30 +- ...2 nozzle template machine_start_gcode.json | 6 + .../BBL/machine/Bambu Lab X1 0.2 nozzle.json | 258 +- ...nozzle template change_filament_gcode.json | 6 + ...0.4 nozzle template machine_end_gcode.json | 6 + ...4 nozzle template machine_start_gcode.json | 6 + ... 0.4 nozzle template time_lapse_gcode.json | 6 + .../BBL/machine/Bambu Lab X1 0.4 nozzle.json | 475 +- ...6 nozzle template machine_start_gcode.json | 6 + .../BBL/machine/Bambu Lab X1 0.6 nozzle.json | 85 +- ...8 nozzle template machine_start_gcode.json | 6 + .../BBL/machine/Bambu Lab X1 0.8 nozzle.json | 85 +- ...2 nozzle template machine_start_gcode.json | 6 + .../Bambu Lab X1 Carbon 0.2 nozzle.json | 258 +- ...nozzle template change_filament_gcode.json | 6 + ....4 nozzle template layer_change_gcode.json | 6 + ...0.4 nozzle template machine_end_gcode.json | 6 + ...4 nozzle template machine_start_gcode.json | 6 + ... 0.4 nozzle template time_lapse_gcode.json | 6 + .../Bambu Lab X1 Carbon 0.4 nozzle.json | 464 +- ...6 nozzle template machine_start_gcode.json | 6 + .../Bambu Lab X1 Carbon 0.6 nozzle.json | 84 +- ...8 nozzle template machine_start_gcode.json | 6 + .../Bambu Lab X1 Carbon 0.8 nozzle.json | 87 +- .../BBL/machine/Bambu Lab X1 Carbon.json | 24 +- .../profiles/BBL/machine/Bambu Lab X1.json | 24 +- ...2 nozzle template machine_start_gcode.json | 6 + .../BBL/machine/Bambu Lab X1E 0.2 nozzle.json | 258 +- ...nozzle template change_filament_gcode.json | 6 + ....4 nozzle template layer_change_gcode.json | 6 + ...0.4 nozzle template machine_end_gcode.json | 6 + ...4 nozzle template machine_start_gcode.json | 6 + ... 0.4 nozzle template time_lapse_gcode.json | 6 + .../BBL/machine/Bambu Lab X1E 0.4 nozzle.json | 467 +- ...6 nozzle template machine_start_gcode.json | 6 + .../BBL/machine/Bambu Lab X1E 0.6 nozzle.json | 81 +- ...8 nozzle template machine_start_gcode.json | 6 + .../BBL/machine/Bambu Lab X1E 0.8 nozzle.json | 87 +- .../profiles/BBL/machine/Bambu Lab X1E.json | 24 +- .../BBL/machine/Bambu Lab X2D 0.2 nozzle.json | 365 +- ...nozzle template change_filament_gcode.json | 6 + ....4 nozzle template layer_change_gcode.json | 6 + ...0.4 nozzle template machine_end_gcode.json | 6 + ...4 nozzle template machine_start_gcode.json | 6 + ... 0.4 nozzle template time_lapse_gcode.json | 6 + .../BBL/machine/Bambu Lab X2D 0.4 nozzle.json | 623 +- .../BBL/machine/Bambu Lab X2D 0.6 nozzle.json | 65 +- .../BBL/machine/Bambu Lab X2D 0.8 nozzle.json | 365 +- .../profiles/BBL/machine/Bambu Lab X2D.json | 34 +- .../BBL/machine/fdm_bbl_3dp_001_common.json | 3 - .../BBL/machine/fdm_bbl_3dp_002_common.json | 10 +- .../BBL/machine/fdm_machine_common.json | 34 +- .../0.06mm Fine @BBL A1 0.2 nozzle.json | 48 +- .../0.06mm Fine @BBL A1M 0.2 nozzle.json | 46 +- .../0.06mm Fine @BBL P1P 0.2 nozzle.json | 70 +- ....06mm High Quality @BBL A1 0.2 nozzle.json | 62 +- ...06mm High Quality @BBL A1M 0.2 nozzle.json | 60 +- ...06mm High Quality @BBL P1P 0.2 nozzle.json | 68 +- ...06mm High Quality @BBL X1C 0.2 nozzle.json | 68 +- .../0.06mm Standard @BBL X1C 0.2 nozzle.json | 70 +- .../process/0.08mm Extra Fine @BBL A1.json | 36 +- .../process/0.08mm Extra Fine @BBL A1M.json | 36 +- ...0.08mm Extra Fine @BBL H2D 0.2 nozzle.json | 75 +- .../process/0.08mm Extra Fine @BBL H2D.json | 355 +- ....08mm Extra Fine @BBL H2DP 0.2 nozzle.json | 74 +- .../process/0.08mm Extra Fine @BBL H2DP.json | 220 +- .../process/0.08mm Extra Fine @BBL P1P.json | 64 +- .../process/0.08mm Extra Fine @BBL X1C.json | 64 +- ....08mm High Quality @BBL A1 0.2 nozzle.json | 62 +- .../process/0.08mm High Quality @BBL A1.json | 80 +- ...08mm High Quality @BBL A1M 0.2 nozzle.json | 60 +- .../process/0.08mm High Quality @BBL A1M.json | 80 +- ...08mm High Quality @BBL A2L 0.2 nozzle.json | 2 +- .../process/0.08mm High Quality @BBL A2L.json | 4 - ...08mm High Quality @BBL H2C 0.2 nozzle.json | 88 +- .../process/0.08mm High Quality @BBL H2C.json | 202 + ...08mm High Quality @BBL H2S 0.2 nozzle.json | 197 +- .../process/0.08mm High Quality @BBL H2S.json | 227 +- ...08mm High Quality @BBL P1P 0.2 nozzle.json | 68 +- .../process/0.08mm High Quality @BBL P1P.json | 66 +- ...08mm High Quality @BBL P2S 0.2 nozzle.json | 81 +- .../process/0.08mm High Quality @BBL P2S.json | 187 +- ...08mm High Quality @BBL X1C 0.2 nozzle.json | 68 +- .../process/0.08mm High Quality @BBL X1C.json | 66 +- ...08mm High Quality @BBL X2D 0.2 nozzle.json | 140 +- .../process/0.08mm High Quality @BBL X2D.json | 238 +- .../0.08mm Optimal @BBL A1 0.2 nozzle.json | 48 +- .../0.08mm Optimal @BBL A1M 0.2 nozzle.json | 46 +- .../0.08mm Optimal @BBL P1P 0.2 nozzle.json | 70 +- .../0.08mm Standard @BBL X1C 0.2 nozzle.json | 70 +- ....10mm High Quality @BBL A1 0.2 nozzle.json | 62 +- ...10mm High Quality @BBL A1M 0.2 nozzle.json | 60 +- ...10mm High Quality @BBL P1P 0.2 nozzle.json | 68 +- ...10mm High Quality @BBL X1C 0.2 nozzle.json | 68 +- .../0.10mm Standard @BBL A1 0.2 nozzle.json | 48 +- .../0.10mm Standard @BBL A1M 0.2 nozzle.json | 46 +- .../0.10mm Standard @BBL A2L 0.2 nozzle.json | 2 +- .../0.10mm Standard @BBL H2C 0.2 nozzle.json | 90 +- .../0.10mm Standard @BBL H2D 0.2 nozzle.json | 61 +- .../0.10mm Standard @BBL H2DP 0.2 nozzle.json | 60 +- .../0.10mm Standard @BBL H2S 0.2 nozzle.json | 89 +- .../0.10mm Standard @BBL P1P 0.2 nozzle.json | 70 +- .../0.10mm Standard @BBL P2S 0.2 nozzle.json | 77 +- .../0.10mm Standard @BBL X1C 0.2 nozzle.json | 70 +- .../0.10mm Standard @BBL X2D 0.2 nozzle.json | 136 +- ... Balanced Quality @BBL A2L 0.2 nozzle.json | 2 +- ... Balanced Quality @BBL H2C 0.2 nozzle.json | 86 +- ... Balanced Quality @BBL H2D 0.2 nozzle.json | 73 +- ...Balanced Quality @BBL H2DP 0.2 nozzle.json | 72 +- ... Balanced Quality @BBL H2S 0.2 nozzle.json | 195 +- ... Balanced Quality @BBL P2S 0.2 nozzle.json | 83 +- ... Balanced Quality @BBL X2D 0.2 nozzle.json | 134 +- .../0.12mm Draft @BBL A1 0.2 nozzle.json | 48 +- .../0.12mm Draft @BBL A1M 0.2 nozzle.json | 46 +- .../0.12mm Draft @BBL P1P 0.2 nozzle.json | 70 +- .../BBL/process/0.12mm Fine @BBL A1.json | 36 +- .../BBL/process/0.12mm Fine @BBL A1M.json | 36 +- .../BBL/process/0.12mm Fine @BBL H2D.json | 361 +- .../BBL/process/0.12mm Fine @BBL H2DP.json | 214 +- .../BBL/process/0.12mm Fine @BBL P1P.json | 64 +- .../BBL/process/0.12mm Fine @BBL X1C.json | 64 +- .../process/0.12mm High Quality @BBL A1.json | 80 +- .../process/0.12mm High Quality @BBL A1M.json | 80 +- .../process/0.12mm High Quality @BBL A2L.json | 4 - .../process/0.12mm High Quality @BBL H2C.json | 202 + .../process/0.12mm High Quality @BBL H2S.json | 227 +- .../process/0.12mm High Quality @BBL P1P.json | 66 +- .../process/0.12mm High Quality @BBL P2S.json | 125 +- .../process/0.12mm High Quality @BBL X1C.json | 66 +- .../process/0.12mm High Quality @BBL X2D.json | 240 +- .../0.12mm Standard @BBL X1C 0.2 nozzle.json | 70 +- ...0.14mm Extra Draft @BBL A1 0.2 nozzle.json | 48 +- ....14mm Extra Draft @BBL A1M 0.2 nozzle.json | 46 +- ....14mm Extra Draft @BBL P1P 0.2 nozzle.json | 70 +- .../0.14mm Standard @BBL X1C 0.2 nozzle.json | 70 +- .../0.16mm Balanced Quality @BBL H2D.json | 367 +- .../0.16mm Balanced Quality @BBL H2DP.json | 238 +- .../process/0.16mm High Quality @BBL A1.json | 80 +- .../process/0.16mm High Quality @BBL A1M.json | 80 +- .../process/0.16mm High Quality @BBL A2L.json | 4 - .../process/0.16mm High Quality @BBL H2C.json | 216 +- .../process/0.16mm High Quality @BBL H2S.json | 227 +- .../process/0.16mm High Quality @BBL P1P.json | 66 +- .../process/0.16mm High Quality @BBL P2S.json | 123 +- .../process/0.16mm High Quality @BBL X1C.json | 66 +- .../process/0.16mm High Quality @BBL X2D.json | 244 +- .../BBL/process/0.16mm Optimal @BBL A1.json | 36 +- .../BBL/process/0.16mm Optimal @BBL A1M.json | 36 +- .../BBL/process/0.16mm Optimal @BBL P1P.json | 64 +- .../BBL/process/0.16mm Optimal @BBL X1C.json | 64 +- .../BBL/process/0.16mm Standard @BBL A2L.json | 4 - .../BBL/process/0.16mm Standard @BBL H2C.json | 226 + .../BBL/process/0.16mm Standard @BBL H2D.json | 339 +- .../process/0.16mm Standard @BBL H2DP.json | 246 +- .../BBL/process/0.16mm Standard @BBL H2S.json | 173 +- .../BBL/process/0.16mm Standard @BBL P2S.json | 127 +- .../BBL/process/0.16mm Standard @BBL X2D.json | 250 +- ... Balanced Quality @BBL A2L 0.6 nozzle.json | 2 +- ... Balanced Quality @BBL H2C 0.6 nozzle.json | 220 + ... Balanced Quality @BBL H2D 0.6 nozzle.json | 327 +- ...Balanced Quality @BBL H2DP 0.6 nozzle.json | 228 +- ... Balanced Quality @BBL H2S 0.6 nozzle.json | 201 +- ... Balanced Quality @BBL P2S 0.6 nozzle.json | 129 +- ... Balanced Quality @BBL X2D 0.6 nozzle.json | 244 +- .../0.18mm Fine @BBL A1 0.6 nozzle.json | 36 +- .../0.18mm Fine @BBL A1M 0.6 nozzle.json | 34 +- .../0.18mm Fine @BBL P1P 0.6 nozzle.json | 76 +- .../0.18mm Standard @BBL X1C 0.6 nozzle.json | 76 +- .../0.20mm Balanced Strength @BBL H2D.json | 353 +- .../0.20mm Balanced Strength @BBL H2DP.json | 250 +- .../process/0.20mm High Quality @BBL A2L.json | 4 - .../process/0.20mm High Quality @BBL H2C.json | 214 + .../process/0.20mm High Quality @BBL H2S.json | 219 +- .../process/0.20mm High Quality @BBL P2S.json | 135 +- .../process/0.20mm High Quality @BBL X2D.json | 238 +- .../BBL/process/0.20mm Standard @BBL A1.json | 36 +- .../BBL/process/0.20mm Standard @BBL A1M.json | 36 +- .../BBL/process/0.20mm Standard @BBL A2L.json | 4 - .../BBL/process/0.20mm Standard @BBL H2C.json | 232 + .../BBL/process/0.20mm Standard @BBL H2D.json | 327 +- .../process/0.20mm Standard @BBL H2DP.json | 232 +- .../BBL/process/0.20mm Standard @BBL H2S.json | 126 +- .../BBL/process/0.20mm Standard @BBL P1P.json | 74 +- .../BBL/process/0.20mm Standard @BBL P2S.json | 127 +- .../BBL/process/0.20mm Standard @BBL X1C.json | 74 +- .../BBL/process/0.20mm Standard @BBL X2D.json | 244 +- .../BBL/process/0.20mm Steady @BBL A2L.json | 1 - .../BBL/process/0.20mm Strength @BBL A1.json | 50 +- .../BBL/process/0.20mm Strength @BBL A1M.json | 50 +- .../BBL/process/0.20mm Strength @BBL P1P.json | 56 +- .../BBL/process/0.20mm Strength @BBL X1C.json | 56 +- ... Balanced Quality @BBL A2L 0.6 nozzle.json | 2 +- ... Balanced Quality @BBL A2L 0.8 nozzle.json | 2 +- ... Balanced Quality @BBL H2C 0.6 nozzle.json | 295 + ... Balanced Quality @BBL H2C 0.8 nozzle.json | 160 +- ... Balanced Quality @BBL H2D 0.8 nozzle.json | 183 +- ...Balanced Quality @BBL H2DP 0.8 nozzle.json | 182 +- ... Balanced Quality @BBL H2S 0.6 nozzle.json | 201 +- ... Balanced Quality @BBL H2S 0.8 nozzle.json | 141 +- ... Balanced Quality @BBL P2S 0.6 nozzle.json | 129 +- ... Balanced Quality @BBL P2S 0.8 nozzle.json | 85 +- ... Balanced Quality @BBL X2D 0.6 nozzle.json | 244 +- ... Balanced Quality @BBL X2D 0.8 nozzle.json | 198 +- ...Balanced Strength @BBL H2C 0.6 nozzle.json | 172 +- ...Balanced Strength @BBL H2D 0.6 nozzle.json | 327 +- ...alanced Strength @BBL H2DP 0.6 nozzle.json | 226 +- .../BBL/process/0.24mm Draft @BBL A1.json | 36 +- .../BBL/process/0.24mm Draft @BBL A1M.json | 36 +- .../BBL/process/0.24mm Draft @BBL P1P.json | 56 +- .../BBL/process/0.24mm Draft @BBL X1C.json | 56 +- .../0.24mm Fine @BBL A1 0.8 nozzle.json | 36 +- .../0.24mm Fine @BBL A1M 0.8 nozzle.json | 34 +- .../0.24mm Fine @BBL P1P 0.8 nozzle.json | 80 +- .../0.24mm Optimal @BBL A1 0.6 nozzle.json | 36 +- .../0.24mm Optimal @BBL A1M 0.6 nozzle.json | 34 +- .../0.24mm Optimal @BBL P1P 0.6 nozzle.json | 76 +- .../BBL/process/0.24mm Standard @BBL A2L.json | 4 - .../BBL/process/0.24mm Standard @BBL H2C.json | 244 + .../BBL/process/0.24mm Standard @BBL H2D.json | 325 +- .../process/0.24mm Standard @BBL H2DP.json | 232 +- .../BBL/process/0.24mm Standard @BBL H2S.json | 187 +- .../BBL/process/0.24mm Standard @BBL P2S.json | 123 +- .../0.24mm Standard @BBL X1C 0.6 nozzle.json | 76 +- .../0.24mm Standard @BBL X1C 0.8 nozzle.json | 80 +- .../BBL/process/0.24mm Standard @BBL X2D.json | 280 +- .../process/0.28mm Extra Draft @BBL A1.json | 36 +- .../process/0.28mm Extra Draft @BBL A1M.json | 36 +- .../process/0.28mm Extra Draft @BBL P1P.json | 56 +- .../process/0.28mm Extra Draft @BBL X1C.json | 56 +- .../0.30mm Standard @BBL A1 0.6 nozzle.json | 36 +- .../0.30mm Standard @BBL A1M 0.6 nozzle.json | 34 +- .../0.30mm Standard @BBL A2L 0.6 nozzle.json | 2 +- .../0.30mm Standard @BBL H2C 0.6 nozzle.json | 220 + .../0.30mm Standard @BBL H2D 0.6 nozzle.json | 327 +- .../0.30mm Standard @BBL H2DP 0.6 nozzle.json | 228 +- .../0.30mm Standard @BBL H2S 0.6 nozzle.json | 138 +- .../0.30mm Standard @BBL P1P 0.6 nozzle.json | 86 +- .../0.30mm Standard @BBL P2S 0.6 nozzle.json | 127 +- .../0.30mm Standard @BBL X1 0.6 nozzle.json | 76 +- .../0.30mm Standard @BBL X1C 0.6 nozzle.json | 86 +- .../0.30mm Standard @BBL X2D 0.6 nozzle.json | 268 +- .../0.30mm Strength @BBL A1 0.6 nozzle.json | 44 +- .../0.30mm Strength @BBL A1M 0.6 nozzle.json | 34 +- .../0.30mm Strength @BBL P1P 0.6 nozzle.json | 76 +- .../0.30mm Strength @BBL X1C 0.6 nozzle.json | 76 +- ... Balanced Quality @BBL A2L 0.8 nozzle.json | 2 +- ... Balanced Quality @BBL H2C 0.8 nozzle.json | 81 + ... Balanced Quality @BBL H2S 0.8 nozzle.json | 141 +- ... Balanced Quality @BBL P2S 0.8 nozzle.json | 85 +- ... Balanced Quality @BBL X2D 0.8 nozzle.json | 198 +- ...Balanced Strength @BBL H2C 0.8 nozzle.json | 184 +- ...Balanced Strength @BBL H2D 0.8 nozzle.json | 183 +- ...alanced Strength @BBL H2DP 0.8 nozzle.json | 182 +- .../0.32mm Optimal @BBL A1 0.8 nozzle.json | 36 +- .../0.32mm Optimal @BBL A1M 0.8 nozzle.json | 34 +- .../0.32mm Optimal @BBL P1P 0.8 nozzle.json | 80 +- .../0.32mm Standard @BBL X1C 0.8 nozzle.json | 80 +- .../0.36mm Draft @BBL A1 0.6 nozzle.json | 36 +- .../0.36mm Draft @BBL A1M 0.6 nozzle.json | 34 +- .../0.36mm Draft @BBL P1P 0.6 nozzle.json | 76 +- .../0.36mm Standard @BBL X1C 0.6 nozzle.json | 76 +- .../0.40mm Standard @BBL A1 0.8 nozzle.json | 36 +- .../0.40mm Standard @BBL A1M 0.8 nozzle.json | 34 +- .../0.40mm Standard @BBL A2L 0.8 nozzle.json | 2 +- .../0.40mm Standard @BBL H2C 0.8 nozzle.json | 162 +- .../0.40mm Standard @BBL H2D 0.8 nozzle.json | 183 +- .../0.40mm Standard @BBL H2DP 0.8 nozzle.json | 182 +- .../0.40mm Standard @BBL H2S 0.8 nozzle.json | 98 +- .../0.40mm Standard @BBL P1P 0.8 nozzle.json | 80 +- .../0.40mm Standard @BBL P2S 0.8 nozzle.json | 83 +- .../0.40mm Standard @BBL X1 0.8 nozzle.json | 80 +- .../0.40mm Standard @BBL X1C 0.8 nozzle.json | 80 +- .../0.40mm Standard @BBL X2D 0.8 nozzle.json | 160 +- ...0.42mm Extra Draft @BBL A1 0.6 nozzle.json | 36 +- ....42mm Extra Draft @BBL A1M 0.6 nozzle.json | 34 +- ....42mm Extra Draft @BBL P1P 0.6 nozzle.json | 76 +- .../0.42mm Standard @BBL X1C 0.6 nozzle.json | 76 +- .../0.48mm Draft @BBL A1 0.8 nozzle.json | 36 +- .../0.48mm Draft @BBL A1M 0.8 nozzle.json | 34 +- .../0.48mm Draft @BBL P1P 0.8 nozzle.json | 80 +- .../0.48mm Standard @BBL X1C 0.8 nozzle.json | 80 +- ...0.56mm Extra Draft @BBL A1 0.8 nozzle.json | 36 +- ....56mm Extra Draft @BBL A1M 0.8 nozzle.json | 34 +- ....56mm Extra Draft @BBL P1P 0.8 nozzle.json | 80 +- .../0.56mm Standard @BBL X1C 0.8 nozzle.json | 80 +- .../BBL/process/fdm_process_common.json | 46 +- .../fdm_process_dual_0.06_nozzle_0.2.json | 105 +- .../fdm_process_dual_0.08_nozzle_0.2.json | 105 +- .../fdm_process_dual_0.08_nozzle_0.4.json | 108 +- .../fdm_process_dual_0.10_nozzle_0.2.json | 105 +- .../fdm_process_dual_0.12_nozzle_0.2.json | 105 +- .../fdm_process_dual_0.12_nozzle_0.4.json | 106 +- .../fdm_process_dual_0.14_nozzle_0.2.json | 105 +- .../fdm_process_dual_0.16_nozzle_0.4.json | 106 +- .../fdm_process_dual_0.18_nozzle_0.6.json | 119 +- .../fdm_process_dual_0.20_nozzle_0.4.json | 94 +- .../fdm_process_dual_0.24_nozzle_0.4.json | 100 +- .../fdm_process_dual_0.24_nozzle_0.6.json | 115 +- .../fdm_process_dual_0.24_nozzle_0.8.json | 129 +- .../fdm_process_dual_0.28_nozzle_0.4.json | 100 +- .../fdm_process_dual_0.30_nozzle_0.6.json | 115 +- .../fdm_process_dual_0.32_nozzle_0.8.json | 129 +- .../fdm_process_dual_0.36_nozzle_0.6.json | 115 +- .../fdm_process_dual_0.40_nozzle_0.8.json | 129 +- .../fdm_process_dual_0.42_nozzle_0.6.json | 115 +- .../fdm_process_dual_0.48_nozzle_0.8.json | 129 +- .../fdm_process_dual_0.56_nozzle_0.8.json | 129 +- .../BBL/process/fdm_process_dual_common.json | 116 +- .../fdm_process_single_0.06_nozzle_0.2.json | 79 +- .../BBL/process/fdm_process_single_0.08.json | 94 +- .../fdm_process_single_0.08_nozzle_0.2.json | 79 +- .../fdm_process_single_0.10_nozzle_0.2.json | 79 +- .../BBL/process/fdm_process_single_0.12.json | 94 +- .../fdm_process_single_0.12_nozzle_0.2.json | 79 +- .../fdm_process_single_0.14_nozzle_0.2.json | 79 +- .../BBL/process/fdm_process_single_0.16.json | 94 +- .../fdm_process_single_0.18_nozzle_0.6.json | 81 +- .../BBL/process/fdm_process_single_0.20.json | 64 +- .../BBL/process/fdm_process_single_0.24.json | 70 +- .../fdm_process_single_0.24_nozzle_0.6.json | 77 +- .../fdm_process_single_0.24_nozzle_0.8.json | 85 +- .../BBL/process/fdm_process_single_0.28.json | 70 +- .../fdm_process_single_0.30_nozzle_0.6.json | 77 +- .../fdm_process_single_0.32_nozzle_0.8.json | 85 +- .../fdm_process_single_0.36_nozzle_0.6.json | 77 +- .../fdm_process_single_0.40_nozzle_0.8.json | 85 +- .../fdm_process_single_0.42_nozzle_0.6.json | 77 +- .../fdm_process_single_0.48_nozzle_0.8.json | 85 +- .../fdm_process_single_0.56_nozzle_0.8.json | 85 +- .../process/fdm_process_single_common.json | 210 +- scripts/orca_profile_tool.py | 8 +- 2606 files changed, 199024 insertions(+), 264792 deletions(-) create mode 100644 resources/profiles/BBL/filament/Bambu ABS @BBL P1S 0.4 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu ABS @BBL P1S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu ABS @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu ASA @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2D 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2DP 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2DP 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PA6-CF @BBL H2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PA6-CF @BBL P2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PA6-CF @BBL P2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PA6-CF @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PA6-CF @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2D 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2DP 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2DP 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PAHT-CF @BBL H2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PAHT-CF @BBL P2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PAHT-CF @BBL P2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PAHT-CF @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2DP 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Basic @BBL P2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG HF @BBL P1P 0.4 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG HF @BBL P1S 0.4 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG HF @BBL P2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG HF @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1M 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1M 0.4 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1M 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL A2L 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL A2L 0.4 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL A2L 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL A2L 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2C 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2C 0.4 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2C.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2D 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2D 0.4 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2D 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2DP 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2DP 0.4 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2DP 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2DP 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2S 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2S.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL P1P 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL P1P 0.4 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL P1P 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL P2S 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL P2S 0.4 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL P2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL P2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL X1C 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL X1C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL X1C.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL X2D 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL X2D 0.4 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @BBL X2D.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Matte @base.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2DP 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Translucent @BBL P2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2DP 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PETG-CF @BBL P2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Basic @BBL P1S 0.4 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Basic @BBL P1S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.8 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P1P 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P1P 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X1C 0.6 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2S 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Glow @BBL P1P 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2D 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Lite @BBL P1P 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Lite @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Marble @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Matte @BBL P1S 0.4 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Matte @BBL P1S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Metal @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1M 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1M 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1M.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2D 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2DP 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL P1P 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL P1P 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL P1P.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL P2S 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL P2S 0.4 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL P2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL P2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL X1C 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL X1C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL X1C.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL X2D 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL X2D 0.4 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL X2D 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Pure @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2D 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2DP 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2DP 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1P 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1S 0.4 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2D 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2DP 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Wood @BBL P1P 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2DP 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA-CF @BBL P2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PPA-CF @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PVA @BBL H2C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PVA @BBL H2D 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PVA @BBL H2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PVA @BBL H2DP 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PVA @BBL H2DP 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PVA @BBL H2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PVA @BBL H2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PVA @BBL P2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PVA @BBL P2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu PVA @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2D 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2DP 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2DP 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA @BBL P2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA @BBL P2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2D 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2DP 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2DP 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2D 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2DP 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2DP 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support for ABS @BBL P2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support for ABS @BBL P2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2DP 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2C 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2D 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2DP 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2DP 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P1P 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P2S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P2S 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X1C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D 0.8 nozzle.json create mode 100644 resources/profiles/BBL/filament/Generic PETG HF @BBL P1S 0.4 nozzle.json create mode 100644 resources/profiles/BBL/filament/Generic PETG HF @BBL P1S 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/Generic PETG HF @BBL X1 0.6 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Generic SBS @base.json delete mode 100644 resources/profiles/BBL/filament/Generic SBS.json create mode 100644 resources/profiles/BBL/filament/Overture Matte PLA @BBL A1 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Overture Matte PLA @BBL A1.json create mode 100644 resources/profiles/BBL/filament/Overture Matte PLA @BBL A1M 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Overture Matte PLA @BBL A1M.json create mode 100644 resources/profiles/BBL/filament/Overture Matte PLA @BBL P1P 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Overture Matte PLA @BBL P1P.json create mode 100644 resources/profiles/BBL/filament/Overture Matte PLA @BBL X1.json create mode 100644 resources/profiles/BBL/filament/Overture Matte PLA @BBL X1C 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Overture Matte PLA @BBL X1C.json create mode 100644 resources/profiles/BBL/filament/Overture Matte PLA @base.json create mode 100644 resources/profiles/BBL/filament/Overture PLA @BBL A1 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Overture PLA @BBL A1.json create mode 100644 resources/profiles/BBL/filament/Overture PLA @BBL A1M 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Overture PLA @BBL A1M.json create mode 100644 resources/profiles/BBL/filament/Overture PLA @BBL P1P 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Overture PLA @BBL P1P.json create mode 100644 resources/profiles/BBL/filament/Overture PLA @BBL X1.json create mode 100644 resources/profiles/BBL/filament/Overture PLA @BBL X1C 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/Overture PLA @BBL X1C.json create mode 100644 resources/profiles/BBL/filament/Overture PLA @base.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1M 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1M.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL P1P 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL P1P.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL X1.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL X1C 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL X1C.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture Matte PLA @base.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture PLA @BBL A1 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture PLA @BBL A1.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture PLA @BBL A1M 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture PLA @BBL A1M.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture PLA @BBL P1P 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture PLA @BBL P1P.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture PLA @BBL X1.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture PLA @BBL X1C 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture PLA @BBL X1C.json delete mode 100644 resources/profiles/BBL/filament/Overture/Overture PLA @base.json create mode 100644 resources/profiles/BBL/filament/P1P/Bambu ABS @BBL P1P 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/P1P/Bambu PAHT-CF @BBL P1P 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/P1P/Bambu PC @BBL P1P 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/P1P/Bambu PLA Basic @BBL P1P 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/P1P/Bambu PLA Marble @BBL P1P 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/P1P/Bambu PLA Matte @BBL P1P 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/P1P/Bambu PLA Metal @BBL P1P 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/P1P/Bambu PLA Sparkle @BBL P1P 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/P1P/Bambu PLA Tough+ @BBL P1P 0.6 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite ABS @BBL A1 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite ABS @BBL A1.json create mode 100644 resources/profiles/BBL/filament/PolyLite ABS @BBL H2D 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite ABS @BBL H2D.json create mode 100644 resources/profiles/BBL/filament/PolyLite ABS @BBL P1P 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite ABS @BBL P1P.json create mode 100644 resources/profiles/BBL/filament/PolyLite ABS @BBL X1C 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite ABS @BBL X1C.json create mode 100644 resources/profiles/BBL/filament/PolyLite ABS @BBL X1E 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite ABS @BBL X1E.json create mode 100644 resources/profiles/BBL/filament/PolyLite ABS @base.json create mode 100644 resources/profiles/BBL/filament/PolyLite ASA @BBL A1 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite ASA @BBL A1.json create mode 100644 resources/profiles/BBL/filament/PolyLite ASA @BBL H2D 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite ASA @BBL H2D.json create mode 100644 resources/profiles/BBL/filament/PolyLite ASA @BBL P1P 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite ASA @BBL P1P.json create mode 100644 resources/profiles/BBL/filament/PolyLite ASA @BBL X1C 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite ASA @BBL X1C.json create mode 100644 resources/profiles/BBL/filament/PolyLite ASA @BBL X1E 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite ASA @BBL X1E.json create mode 100644 resources/profiles/BBL/filament/PolyLite ASA @base.json create mode 100644 resources/profiles/BBL/filament/PolyLite PETG @BBL A1 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite PETG @BBL A1.json create mode 100644 resources/profiles/BBL/filament/PolyLite PETG @BBL A1M 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite PETG @BBL A1M.json create mode 100644 resources/profiles/BBL/filament/PolyLite PETG @BBL H2D 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite PETG @BBL H2D.json create mode 100644 resources/profiles/BBL/filament/PolyLite PETG @BBL P1P 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite PETG @BBL P1P.json create mode 100644 resources/profiles/BBL/filament/PolyLite PETG @BBL X1C 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite PETG @BBL X1C.json create mode 100644 resources/profiles/BBL/filament/PolyLite PETG @base.json create mode 100644 resources/profiles/BBL/filament/PolyLite PLA @BBL A1 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite PLA @BBL A1.json create mode 100644 resources/profiles/BBL/filament/PolyLite PLA @BBL A1M 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite PLA @BBL A1M.json create mode 100644 resources/profiles/BBL/filament/PolyLite PLA @BBL H2D 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite PLA @BBL H2D.json create mode 100644 resources/profiles/BBL/filament/PolyLite PLA @BBL X1.json create mode 100644 resources/profiles/BBL/filament/PolyLite PLA @BBL X1C 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyLite PLA @BBL X1C.json create mode 100644 resources/profiles/BBL/filament/PolyLite PLA @base.json create mode 100644 resources/profiles/BBL/filament/PolyTerra PLA @BBL A1 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyTerra PLA @BBL A1.json create mode 100644 resources/profiles/BBL/filament/PolyTerra PLA @BBL A1M 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyTerra PLA @BBL A1M.json create mode 100644 resources/profiles/BBL/filament/PolyTerra PLA @BBL H2D 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyTerra PLA @BBL H2D.json create mode 100644 resources/profiles/BBL/filament/PolyTerra PLA @BBL X1.json create mode 100644 resources/profiles/BBL/filament/PolyTerra PLA @BBL X1C 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/PolyTerra PLA @BBL X1C.json create mode 100644 resources/profiles/BBL/filament/PolyTerra PLA @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL A1 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL A1.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL H2D 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL H2D.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL P1P 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL P1P.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL X1C 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL X1C.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL X1E 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL X1E.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ABS @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL A1 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL A1.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL H2D 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL H2D.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL P1P 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL P1P.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL X1C 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL X1C.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL X1E 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL X1E.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite ASA @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL A1 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL A1.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL A1M 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL A1M.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL H2D 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL H2D.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL P1P 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL P1P.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL X1C 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL X1C.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PETG @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL A1 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL A1.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL A1M 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL A1M.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL H2D 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL H2D.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL X1.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL X1C 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL X1C.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyLite PLA @base.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL A1 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL A1.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL A1M 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL A1M.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL H2D 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL H2D.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL X1.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL X1C 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL X1C.json delete mode 100644 resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @base.json create mode 100644 resources/profiles/BBL/filament/eSUN PLA+ @BBL A1 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/eSUN PLA+ @BBL A1.json create mode 100644 resources/profiles/BBL/filament/eSUN PLA+ @BBL A1M 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/eSUN PLA+ @BBL A1M.json create mode 100644 resources/profiles/BBL/filament/eSUN PLA+ @BBL H2D 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/eSUN PLA+ @BBL H2D.json create mode 100644 resources/profiles/BBL/filament/eSUN PLA+ @BBL X1.json create mode 100644 resources/profiles/BBL/filament/eSUN PLA+ @BBL X1C 0.2 nozzle.json create mode 100644 resources/profiles/BBL/filament/eSUN PLA+ @BBL X1C.json create mode 100644 resources/profiles/BBL/filament/eSUN PLA+ @base.json delete mode 100644 resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL A1 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL A1.json delete mode 100644 resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL A1M 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL A1M.json delete mode 100644 resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL H2D 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL H2D.json delete mode 100644 resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL X1.json delete mode 100644 resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL X1C 0.2 nozzle.json delete mode 100644 resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL X1C.json delete mode 100644 resources/profiles/BBL/filament/eSUN/eSUN PLA+ @base.json delete mode 100644 resources/profiles/BBL/filament/fdm_filament_dual_common.json delete mode 100644 resources/profiles/BBL/filament/fdm_filament_sbs.json create mode 100644 resources/profiles/BBL/filament/fdm_filament_template_direct_bowden.json create mode 100644 resources/profiles/BBL/filament/fdm_filament_template_direct_bowden_e3d.json create mode 100644 resources/profiles/BBL/filament/fdm_filament_template_direct_dual.json create mode 100644 resources/profiles/BBL/filament/fdm_filament_template_direct_dual_e3d.json create mode 100644 resources/profiles/BBL/filament/filament_id_map.json create mode 100644 resources/profiles/BBL/filament/filament_name_map.json create mode 100644 resources/profiles/BBL/filament/support_recommended_params.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template change_filament_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template layer_change_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template machine_end_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template time_lapse_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template change_filament_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template layer_change_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template machine_end_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template time_lapse_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template change_filament_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template layer_change_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template machine_end_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template time_lapse_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template change_filament_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template layer_change_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template machine_end_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template time_lapse_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template wrapping_detection_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template change_filament_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template layer_change_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template machine_end_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template time_lapse_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template wrapping_detection_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template change_filament_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template layer_change_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template machine_end_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template time_lapse_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template wrapping_detection_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template change_filament_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template layer_change_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template machine_end_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template time_lapse_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template wrapping_detection_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P1P 0.2 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template change_filament_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template layer_change_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template machine_end_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template time_lapse_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P1P 0.6 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P1P 0.8 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P1S 0.2 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template change_filament_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template layer_change_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template machine_end_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template time_lapse_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P1S 0.6 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P1S 0.8 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template change_filament_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template layer_change_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template machine_end_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template time_lapse_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template wrapping_detection_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1 0.2 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle template change_filament_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle template machine_end_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle template time_lapse_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1 0.6 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1 0.8 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.2 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template change_filament_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template layer_change_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template machine_end_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template time_lapse_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.6 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.8 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1E 0.2 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template change_filament_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template layer_change_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template machine_end_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template time_lapse_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1E 0.6 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X1E 0.8 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template change_filament_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template layer_change_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template machine_end_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template machine_start_gcode.json create mode 100644 resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template time_lapse_gcode.json create mode 100644 resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2C 0.6 nozzle.json create mode 100644 resources/profiles/BBL/process/0.32mm Balanced Quality @BBL H2C 0.8 nozzle.json diff --git a/resources/profiles/BBL.json b/resources/profiles/BBL.json index fd52cf63a4..3b52c1e22e 100644 --- a/resources/profiles/BBL.json +++ b/resources/profiles/BBL.json @@ -1,9 +1,9 @@ { "name": "Bambulab", "url": "http://www.bambulab.com/Parameters/vendor/BBL.json", - "version": "02.01.00.30", + "version": "02.08.00.09", "force_update": "0", - "description": "BBL configurations", + "description": "the initial version of BBL configurations", "machine_model_list": [ { "name": "Bambu Lab A1", @@ -62,6 +62,8802 @@ "sub_path": "machine/Bambu Lab X2D.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_bvoh", + "sub_path": "filament/fdm_filament_bvoh.json" + }, + { + "name": "fdm_filament_eva", + "sub_path": "filament/fdm_filament_eva.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_pc", + "sub_path": "filament/fdm_filament_pc.json" + }, + { + "name": "fdm_filament_pctg", + "sub_path": "filament/fdm_filament_pctg.json" + }, + { + "name": "fdm_filament_pe", + "sub_path": "filament/fdm_filament_pe.json" + }, + { + "name": "fdm_filament_pet", + "sub_path": "filament/fdm_filament_pet.json" + }, + { + "name": "fdm_filament_pha", + "sub_path": "filament/fdm_filament_pha.json" + }, + { + "name": "fdm_filament_pla", + "sub_path": "filament/fdm_filament_pla.json" + }, + { + "name": "fdm_filament_pp", + "sub_path": "filament/fdm_filament_pp.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": "Bambu ABS @base", + "sub_path": "filament/Bambu ABS @base.json" + }, + { + "name": "Bambu ABS-GF @base", + "sub_path": "filament/Bambu ABS-GF @base.json" + }, + { + "name": "Bambu Support for ABS @base", + "sub_path": "filament/Bambu Support for ABS @base.json" + }, + { + "name": "Generic ABS @base", + "sub_path": "filament/Generic ABS @base.json" + }, + { + "name": "PolyLite ABS @base", + "sub_path": "filament/PolyLite ABS @base.json" + }, + { + "name": "Bambu ASA @base", + "sub_path": "filament/Bambu ASA @base.json" + }, + { + "name": "Bambu ASA-Aero @base", + "sub_path": "filament/Bambu ASA-Aero @base.json" + }, + { + "name": "Bambu ASA-CF @base", + "sub_path": "filament/Bambu ASA-CF @base.json" + }, + { + "name": "Generic ASA @base", + "sub_path": "filament/Generic ASA @base.json" + }, + { + "name": "PolyLite ASA @base", + "sub_path": "filament/PolyLite ASA @base.json" + }, + { + "name": "Generic BVOH @base", + "sub_path": "filament/Generic BVOH @base.json" + }, + { + "name": "Generic EVA @base", + "sub_path": "filament/Generic EVA @base.json" + }, + { + "name": "Generic HIPS @base", + "sub_path": "filament/Generic HIPS @base.json" + }, + { + "name": "Bambu PA-CF @base", + "sub_path": "filament/Bambu PA-CF @base.json" + }, + { + "name": "Bambu PA6-CF @base", + "sub_path": "filament/Bambu PA6-CF @base.json" + }, + { + "name": "Bambu PA6-GF @base", + "sub_path": "filament/Bambu PA6-GF @base.json" + }, + { + "name": "Bambu PAHT-CF @base", + "sub_path": "filament/Bambu PAHT-CF @base.json" + }, + { + "name": "Bambu Support For PA/PET @base", + "sub_path": "filament/Bambu Support For PA PET @base.json" + }, + { + "name": "Bambu Support G @base", + "sub_path": "filament/Bambu Support G @base.json" + }, + { + "name": "Fiberon PA12-CF @base", + "sub_path": "filament/Polymaker/Fiberon PA12-CF @base.json" + }, + { + "name": "Fiberon PA6-CF @base", + "sub_path": "filament/Polymaker/Fiberon PA6-CF @base.json" + }, + { + "name": "Fiberon PA6-GF @base", + "sub_path": "filament/Polymaker/Fiberon PA6-GF @base.json" + }, + { + "name": "Fiberon PA612-CF @base", + "sub_path": "filament/Polymaker/Fiberon PA612-CF @base.json" + }, + { + "name": "Generic PA @base", + "sub_path": "filament/Generic PA @base.json" + }, + { + "name": "Generic PA-CF @base", + "sub_path": "filament/Generic PA-CF @base.json" + }, + { + "name": "Bambu PC @base", + "sub_path": "filament/Bambu PC @base.json" + }, + { + "name": "Bambu PC FR @base", + "sub_path": "filament/Bambu PC FR @base.json" + }, + { + "name": "Generic PC @base", + "sub_path": "filament/Generic PC @base.json" + }, + { + "name": "Generic PCTG @base", + "sub_path": "filament/Generic PCTG @base.json" + }, + { + "name": "Generic PE @base", + "sub_path": "filament/Generic PE @base.json" + }, + { + "name": "Generic PE-CF @base", + "sub_path": "filament/Generic PE-CF @base.json" + }, + { + "name": "Bambu PET-CF @base", + "sub_path": "filament/Bambu PET-CF @base.json" + }, + { + "name": "Bambu PETG Basic @base", + "sub_path": "filament/Bambu PETG Basic @base.json" + }, + { + "name": "Bambu PETG HF @base", + "sub_path": "filament/Bambu PETG HF @base.json" + }, + { + "name": "Bambu PETG Matte @base", + "sub_path": "filament/Bambu PETG Matte @base.json" + }, + { + "name": "Bambu PETG Translucent @base", + "sub_path": "filament/Bambu PETG Translucent @base.json" + }, + { + "name": "Bambu PETG-CF @base", + "sub_path": "filament/Bambu PETG-CF @base.json" + }, + { + "name": "Fiberon PET-CF @base", + "sub_path": "filament/Polymaker/Fiberon PET-CF @base.json" + }, + { + "name": "Fiberon PETG-ESD @base", + "sub_path": "filament/Polymaker/Fiberon PETG-ESD @base.json" + }, + { + "name": "Fiberon PETG-rCF @base", + "sub_path": "filament/Polymaker/Fiberon PETG-rCF @base.json" + }, + { + "name": "Generic PETG @base", + "sub_path": "filament/Generic PETG @base.json" + }, + { + "name": "Generic PETG HF @base", + "sub_path": "filament/Generic PETG HF @base.json" + }, + { + "name": "Generic PETG-CF @base", + "sub_path": "filament/Generic PETG-CF @base.json" + }, + { + "name": "PolyLite PETG @base", + "sub_path": "filament/PolyLite PETG @base.json" + }, + { + "name": "SUNLU PETG @base", + "sub_path": "filament/SUNLU/SUNLU PETG @base.json" + }, + { + "name": "Generic PHA @base", + "sub_path": "filament/Generic PHA @base.json" + }, + { + "name": "Bambu PLA Aero @base", + "sub_path": "filament/Bambu PLA Aero @base.json" + }, + { + "name": "Bambu PLA Basic @base", + "sub_path": "filament/Bambu PLA Basic @base.json" + }, + { + "name": "Bambu PLA Dynamic @base", + "sub_path": "filament/Bambu PLA Dynamic @base.json" + }, + { + "name": "Bambu PLA Galaxy @base", + "sub_path": "filament/Bambu PLA Galaxy @base.json" + }, + { + "name": "Bambu PLA Glow @base", + "sub_path": "filament/Bambu PLA Glow @base.json" + }, + { + "name": "Bambu PLA Lite @base", + "sub_path": "filament/Bambu PLA Lite @base.json" + }, + { + "name": "Bambu PLA Marble @base", + "sub_path": "filament/Bambu PLA Marble @base.json" + }, + { + "name": "Bambu PLA Matte @base", + "sub_path": "filament/Bambu PLA Matte @base.json" + }, + { + "name": "Bambu PLA Metal @base", + "sub_path": "filament/Bambu PLA Metal @base.json" + }, + { + "name": "Bambu PLA Pure @base", + "sub_path": "filament/Bambu PLA Pure @base.json" + }, + { + "name": "Bambu PLA Silk @base", + "sub_path": "filament/Bambu PLA Silk @base.json" + }, + { + "name": "Bambu PLA Silk+ @base", + "sub_path": "filament/Bambu PLA Silk+ @base.json" + }, + { + "name": "Bambu PLA Sparkle @base", + "sub_path": "filament/Bambu PLA Sparkle @base.json" + }, + { + "name": "Bambu PLA Tough @base", + "sub_path": "filament/Bambu PLA Tough @base.json" + }, + { + "name": "Bambu PLA Tough+ @base", + "sub_path": "filament/Bambu PLA Tough+ @base.json" + }, + { + "name": "Bambu PLA Translucent @base", + "sub_path": "filament/Bambu PLA Translucent @base.json" + }, + { + "name": "Bambu PLA Wood @base", + "sub_path": "filament/Bambu PLA Wood @base.json" + }, + { + "name": "Bambu PLA-CF @base", + "sub_path": "filament/Bambu PLA-CF @base.json" + }, + { + "name": "Bambu Support For PLA @base", + "sub_path": "filament/Bambu Support For PLA @base.json" + }, + { + "name": "Bambu Support For PLA/PETG @base", + "sub_path": "filament/Bambu Support For PLA-PETG @base.json" + }, + { + "name": "Bambu Support W @base", + "sub_path": "filament/Bambu Support W @base.json" + }, + { + "name": "Generic PLA @base", + "sub_path": "filament/Generic PLA @base.json" + }, + { + "name": "Generic PLA High Speed @base", + "sub_path": "filament/Generic PLA High Speed @base.json" + }, + { + "name": "Generic PLA Silk @base", + "sub_path": "filament/Generic PLA Silk @base.json" + }, + { + "name": "Generic PLA-CF @base", + "sub_path": "filament/Generic PLA-CF @base.json" + }, + { + "name": "Overture Matte PLA @base", + "sub_path": "filament/Overture Matte PLA @base.json" + }, + { + "name": "Overture PLA @base", + "sub_path": "filament/Overture PLA @base.json" + }, + { + "name": "PolyLite PLA @base", + "sub_path": "filament/PolyLite PLA @base.json" + }, + { + "name": "PolyTerra PLA @base", + "sub_path": "filament/PolyTerra PLA @base.json" + }, + { + "name": "SUNLU PLA Marble @base", + "sub_path": "filament/SUNLU/SUNLU Marble PLA @base.json" + }, + { + "name": "SUNLU PLA Matte @base", + "sub_path": "filament/SUNLU/SUNLU PLA Matte @base.json" + }, + { + "name": "SUNLU PLA+ 2.0 @base", + "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @base.json" + }, + { + "name": "SUNLU PLA+ @base", + "sub_path": "filament/SUNLU/SUNLU PLA+ @base.json" + }, + { + "name": "SUNLU Silk PLA+ @base", + "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @base.json" + }, + { + "name": "SUNLU Wood PLA @base", + "sub_path": "filament/SUNLU/SUNLU Wood PLA @base.json" + }, + { + "name": "eSUN PLA+ @base", + "sub_path": "filament/eSUN PLA+ @base.json" + }, + { + "name": "Generic PP @base", + "sub_path": "filament/Generic PP @base.json" + }, + { + "name": "Generic PP-CF @base", + "sub_path": "filament/Generic PP-CF @base.json" + }, + { + "name": "Generic PP-GF @base", + "sub_path": "filament/Generic PP-GF @base.json" + }, + { + "name": "Bambu PPA-CF @base", + "sub_path": "filament/Bambu PPA-CF @base.json" + }, + { + "name": "Generic PPA-CF @base", + "sub_path": "filament/Generic PPA-CF @base.json" + }, + { + "name": "Generic PPA-GF @base", + "sub_path": "filament/Generic PPA-GF @base.json" + }, + { + "name": "Bambu PPS-CF @base", + "sub_path": "filament/Bambu PPS-CF @base.json" + }, + { + "name": "Generic PPS @base", + "sub_path": "filament/Generic PPS @base.json" + }, + { + "name": "Generic PPS-CF @base", + "sub_path": "filament/Generic PPS-CF @base.json" + }, + { + "name": "Bambu PVA @base", + "sub_path": "filament/Bambu PVA @base.json" + }, + { + "name": "Generic PVA @base", + "sub_path": "filament/Generic PVA @base.json" + }, + { + "name": "Bambu TPU 85A @base", + "sub_path": "filament/Bambu TPU 85A @base.json" + }, + { + "name": "Bambu TPU 90A @base", + "sub_path": "filament/Bambu TPU 90A @base.json" + }, + { + "name": "Bambu TPU 95A @base", + "sub_path": "filament/Bambu TPU 95A @base.json" + }, + { + "name": "Bambu TPU 95A HF @base", + "sub_path": "filament/Bambu TPU 95A HF @base.json" + }, + { + "name": "Bambu TPU for AMS @base", + "sub_path": "filament/Bambu TPU for AMS @base.json" + }, + { + "name": "Generic TPU @base", + "sub_path": "filament/Generic TPU @base.json" + }, + { + "name": "Generic TPU for AMS @base", + "sub_path": "filament/Generic TPU for AMS @base.json" + }, + { + "name": "Bambu ABS @BBL A1", + "sub_path": "filament/Bambu ABS @BBL A1.json" + }, + { + "name": "Bambu ABS @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu ABS @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu ABS @BBL H2C", + "sub_path": "filament/Bambu ABS @BBL H2C.json" + }, + { + "name": "Bambu ABS @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu ABS @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu ABS @BBL H2C 0.6 nozzle", + "sub_path": "filament/Bambu ABS @BBL H2C 0.6 nozzle.json" + }, + { + "name": "Bambu ABS @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu ABS @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu ABS @BBL H2D", + "sub_path": "filament/Bambu ABS @BBL H2D.json" + }, + { + "name": "Bambu ABS @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu ABS @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu ABS @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu ABS @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu ABS @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu ABS @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu ABS @BBL H2DP", + "sub_path": "filament/Bambu ABS @BBL H2DP.json" + }, + { + "name": "Bambu ABS @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu ABS @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu ABS @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu ABS @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu ABS @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu ABS @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu ABS @BBL H2S", + "sub_path": "filament/Bambu ABS @BBL H2S.json" + }, + { + "name": "Bambu ABS @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu ABS @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu ABS @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu ABS @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu ABS @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu ABS @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu ABS @BBL P1P", + "sub_path": "filament/P1P/Bambu ABS @BBL P1P.json" + }, + { + "name": "Bambu ABS @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/Bambu ABS @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu ABS @BBL P1P 0.6 nozzle", + "sub_path": "filament/P1P/Bambu ABS @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu ABS @BBL P1S 0.4 nozzle", + "sub_path": "filament/Bambu ABS @BBL P1S 0.4 nozzle.json" + }, + { + "name": "Bambu ABS @BBL P1S 0.6 nozzle", + "sub_path": "filament/Bambu ABS @BBL P1S 0.6 nozzle.json" + }, + { + "name": "Bambu ABS @BBL P2S", + "sub_path": "filament/Bambu ABS @BBL P2S.json" + }, + { + "name": "Bambu ABS @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu ABS @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu ABS @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu ABS @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu ABS @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu ABS @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu ABS @BBL X1C", + "sub_path": "filament/Bambu ABS @BBL X1C.json" + }, + { + "name": "Bambu ABS @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu ABS @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu ABS @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu ABS @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu ABS @BBL X1C 0.8 nozzle", + "sub_path": "filament/Bambu ABS @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Bambu ABS @BBL X1E", + "sub_path": "filament/Bambu ABS @BBL X1E.json" + }, + { + "name": "Bambu ABS @BBL X1E 0.2 nozzle", + "sub_path": "filament/Bambu ABS @BBL X1E 0.2 nozzle.json" + }, + { + "name": "Bambu ABS @BBL X1E 0.8 nozzle", + "sub_path": "filament/Bambu ABS @BBL X1E 0.8 nozzle.json" + }, + { + "name": "Bambu ABS @BBL X2D", + "sub_path": "filament/Bambu ABS @BBL X2D.json" + }, + { + "name": "Bambu ABS @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu ABS @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu ABS @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu ABS @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu ABS @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu ABS @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu ABS-GF @BBL A1", + "sub_path": "filament/Bambu ABS-GF @BBL A1.json" + }, + { + "name": "Bambu ABS-GF @BBL H2C", + "sub_path": "filament/Bambu ABS-GF @BBL H2C.json" + }, + { + "name": "Bambu ABS-GF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu ABS-GF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu ABS-GF @BBL H2D", + "sub_path": "filament/Bambu ABS-GF @BBL H2D.json" + }, + { + "name": "Bambu ABS-GF @BBL H2DP", + "sub_path": "filament/Bambu ABS-GF @BBL H2DP.json" + }, + { + "name": "Bambu ABS-GF @BBL H2S", + "sub_path": "filament/Bambu ABS-GF @BBL H2S.json" + }, + { + "name": "Bambu ABS-GF @BBL P1P", + "sub_path": "filament/Bambu ABS-GF @BBL P1P.json" + }, + { + "name": "Bambu ABS-GF @BBL P2S", + "sub_path": "filament/Bambu ABS-GF @BBL P2S.json" + }, + { + "name": "Bambu ABS-GF @BBL X1C", + "sub_path": "filament/Bambu ABS-GF @BBL X1C.json" + }, + { + "name": "Bambu ABS-GF @BBL X2D", + "sub_path": "filament/Bambu ABS-GF @BBL X2D.json" + }, + { + "name": "Bambu ABS-GF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu ABS-GF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu Support for ABS @BBL A1", + "sub_path": "filament/Bambu Support for ABS @BBL A1.json" + }, + { + "name": "Bambu Support for ABS @BBL H2C", + "sub_path": "filament/Bambu Support for ABS @BBL H2C.json" + }, + { + "name": "Bambu Support for ABS @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu Support for ABS @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu Support for ABS @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu Support for ABS @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu Support for ABS @BBL H2D", + "sub_path": "filament/Bambu Support for ABS @BBL H2D.json" + }, + { + "name": "Bambu Support for ABS @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu Support for ABS @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu Support for ABS @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu Support for ABS @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu Support for ABS @BBL H2DP", + "sub_path": "filament/Bambu Support for ABS @BBL H2DP.json" + }, + { + "name": "Bambu Support for ABS @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu Support for ABS @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu Support for ABS @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu Support for ABS @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu Support for ABS @BBL H2S", + "sub_path": "filament/Bambu Support for ABS @BBL H2S.json" + }, + { + "name": "Bambu Support for ABS @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu Support for ABS @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu Support for ABS @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu Support for ABS @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu Support for ABS @BBL P2S", + "sub_path": "filament/Bambu Support for ABS @BBL P2S.json" + }, + { + "name": "Bambu Support for ABS @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu Support for ABS @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu Support for ABS @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu Support for ABS @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu Support for ABS @BBL X1C", + "sub_path": "filament/Bambu Support for ABS @BBL X1C.json" + }, + { + "name": "Bambu Support for ABS @BBL X2D", + "sub_path": "filament/Bambu Support for ABS @BBL X2D.json" + }, + { + "name": "Bambu Support for ABS @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu Support for ABS @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu Support for ABS @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu Support for ABS @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Generic ABS", + "sub_path": "filament/Generic ABS.json" + }, + { + "name": "Generic ABS @0.2 nozzle", + "sub_path": "filament/Generic ABS @0.2 nozzle.json" + }, + { + "name": "Generic ABS @BBL A1", + "sub_path": "filament/Generic ABS @BBL A1.json" + }, + { + "name": "Generic ABS @BBL A1 0.2 nozzle", + "sub_path": "filament/Generic ABS @BBL A1 0.2 nozzle.json" + }, + { + "name": "Generic ABS @BBL H2C", + "sub_path": "filament/Generic ABS @BBL H2C.json" + }, + { + "name": "Generic ABS @BBL H2C 0.2 nozzle", + "sub_path": "filament/Generic ABS @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Generic ABS @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic ABS @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic ABS @BBL H2D", + "sub_path": "filament/Generic ABS @BBL H2D.json" + }, + { + "name": "Generic ABS @BBL H2D 0.2 nozzle", + "sub_path": "filament/Generic ABS @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Generic ABS @BBL H2S 0.2 nozzle", + "sub_path": "filament/Generic ABS @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Generic ABS @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic ABS @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic ABS @BBL P1P", + "sub_path": "filament/P1P/Generic ABS @BBL P1P.json" + }, + { + "name": "Generic ABS @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/Generic ABS @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Generic ABS @BBL P2S", + "sub_path": "filament/Generic ABS @BBL P2S.json" + }, + { + "name": "Generic ABS @BBL P2S 0.2 nozzle", + "sub_path": "filament/Generic ABS @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Generic ABS @BBL X2D", + "sub_path": "filament/Generic ABS @BBL X2D.json" + }, + { + "name": "Generic ABS @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic ABS @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Generic ABS @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic ABS @BBL X2D 0.4 nozzle.json" + }, + { + "name": "PolyLite ABS @BBL A1", + "sub_path": "filament/PolyLite ABS @BBL A1.json" + }, + { + "name": "PolyLite ABS @BBL A1 0.2 nozzle", + "sub_path": "filament/PolyLite ABS @BBL A1 0.2 nozzle.json" + }, + { + "name": "PolyLite ABS @BBL H2D", + "sub_path": "filament/PolyLite ABS @BBL H2D.json" + }, + { + "name": "PolyLite ABS @BBL H2D 0.2 nozzle", + "sub_path": "filament/PolyLite ABS @BBL H2D 0.2 nozzle.json" + }, + { + "name": "PolyLite ABS @BBL H2DP", + "sub_path": "filament/PolyLite ABS @BBL H2DP.json" + }, + { + "name": "PolyLite ABS @BBL H2DP 0.2 nozzle", + "sub_path": "filament/PolyLite ABS @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "PolyLite ABS @BBL P1P", + "sub_path": "filament/PolyLite ABS @BBL P1P.json" + }, + { + "name": "PolyLite ABS @BBL X1C", + "sub_path": "filament/PolyLite ABS @BBL X1C.json" + }, + { + "name": "PolyLite ABS @BBL X1E", + "sub_path": "filament/PolyLite ABS @BBL X1E.json" + }, + { + "name": "PolyLite ABS @BBL X1E 0.2 nozzle", + "sub_path": "filament/PolyLite ABS @BBL X1E 0.2 nozzle.json" + }, + { + "name": "Bambu ASA @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu ASA @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu ASA @BBL A1 0.4 nozzle", + "sub_path": "filament/Bambu ASA @BBL A1 0.4 nozzle.json" + }, + { + "name": "Bambu ASA @BBL A1 0.6 nozzle", + "sub_path": "filament/Bambu ASA @BBL A1 0.6 nozzle.json" + }, + { + "name": "Bambu ASA @BBL H2C", + "sub_path": "filament/Bambu ASA @BBL H2C.json" + }, + { + "name": "Bambu ASA @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu ASA @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu ASA @BBL H2C 0.6 nozzle", + "sub_path": "filament/Bambu ASA @BBL H2C 0.6 nozzle.json" + }, + { + "name": "Bambu ASA @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu ASA @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu ASA @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu ASA @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu ASA @BBL H2D 0.4 nozzle", + "sub_path": "filament/Bambu ASA @BBL H2D 0.4 nozzle.json" + }, + { + "name": "Bambu ASA @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu ASA @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu ASA @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu ASA @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu ASA @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu ASA @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu ASA @BBL H2DP 0.4 nozzle", + "sub_path": "filament/Bambu ASA @BBL H2DP 0.4 nozzle.json" + }, + { + "name": "Bambu ASA @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu ASA @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu ASA @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu ASA @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu ASA @BBL H2S", + "sub_path": "filament/Bambu ASA @BBL H2S.json" + }, + { + "name": "Bambu ASA @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu ASA @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu ASA @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu ASA @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu ASA @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu ASA @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu ASA @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu ASA @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu ASA @BBL P2S 0.4 nozzle", + "sub_path": "filament/Bambu ASA @BBL P2S 0.4 nozzle.json" + }, + { + "name": "Bambu ASA @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu ASA @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu ASA @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu ASA @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu ASA @BBL X1 0.2 nozzle", + "sub_path": "filament/Bambu ASA @BBL X1 0.2 nozzle.json" + }, + { + "name": "Bambu ASA @BBL X1 0.6 nozzle", + "sub_path": "filament/Bambu ASA @BBL X1 0.6 nozzle.json" + }, + { + "name": "Bambu ASA @BBL X1C", + "sub_path": "filament/Bambu ASA @BBL X1C.json" + }, + { + "name": "Bambu ASA @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu ASA @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu ASA @BBL X1C 0.4 nozzle", + "sub_path": "filament/Bambu ASA @BBL X1C 0.4 nozzle.json" + }, + { + "name": "Bambu ASA @BBL X1E", + "sub_path": "filament/Bambu ASA @BBL X1E.json" + }, + { + "name": "Bambu ASA @BBL X1E 0.2 nozzle", + "sub_path": "filament/Bambu ASA @BBL X1E 0.2 nozzle.json" + }, + { + "name": "Bambu ASA @BBL X1E 0.4 nozzle", + "sub_path": "filament/Bambu ASA @BBL X1E 0.4 nozzle.json" + }, + { + "name": "Bambu ASA @BBL X2D", + "sub_path": "filament/Bambu ASA @BBL X2D.json" + }, + { + "name": "Bambu ASA @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu ASA @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu ASA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu ASA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu ASA @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu ASA @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu ASA-Aero @BBL A1", + "sub_path": "filament/Bambu ASA-Aero @BBL A1.json" + }, + { + "name": "Bambu ASA-Aero @BBL H2C", + "sub_path": "filament/Bambu ASA-Aero @BBL H2C.json" + }, + { + "name": "Bambu ASA-Aero @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu ASA-Aero @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu ASA-Aero @BBL H2D", + "sub_path": "filament/Bambu ASA-Aero @BBL H2D.json" + }, + { + "name": "Bambu ASA-Aero @BBL H2DP", + "sub_path": "filament/Bambu ASA-Aero @BBL H2DP.json" + }, + { + "name": "Bambu ASA-Aero @BBL H2S", + "sub_path": "filament/Bambu ASA-Aero @BBL H2S.json" + }, + { + "name": "Bambu ASA-Aero @BBL P1P", + "sub_path": "filament/Bambu ASA-Aero @BBL P1P.json" + }, + { + "name": "Bambu ASA-Aero @BBL P2S", + "sub_path": "filament/Bambu ASA-Aero @BBL P2S.json" + }, + { + "name": "Bambu ASA-Aero @BBL X1C", + "sub_path": "filament/Bambu ASA-Aero @BBL X1C.json" + }, + { + "name": "Bambu ASA-Aero @BBL X2D", + "sub_path": "filament/Bambu ASA-Aero @BBL X2D.json" + }, + { + "name": "Bambu ASA-Aero @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu ASA-Aero @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu ASA-CF @BBL A1", + "sub_path": "filament/Bambu ASA-CF @BBL A1.json" + }, + { + "name": "Bambu ASA-CF @BBL A1 0.6 nozzle", + "sub_path": "filament/Bambu ASA-CF @BBL A1 0.6 nozzle.json" + }, + { + "name": "Bambu ASA-CF @BBL H2C", + "sub_path": "filament/Bambu ASA-CF @BBL H2C.json" + }, + { + "name": "Bambu ASA-CF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu ASA-CF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu ASA-CF @BBL H2D 0.4 nozzle", + "sub_path": "filament/Bambu ASA-CF @BBL H2D 0.4 nozzle.json" + }, + { + "name": "Bambu ASA-CF @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu ASA-CF @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu ASA-CF @BBL H2DP 0.4 nozzle", + "sub_path": "filament/Bambu ASA-CF @BBL H2DP 0.4 nozzle.json" + }, + { + "name": "Bambu ASA-CF @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu ASA-CF @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu ASA-CF @BBL H2S", + "sub_path": "filament/Bambu ASA-CF @BBL H2S.json" + }, + { + "name": "Bambu ASA-CF @BBL P1P", + "sub_path": "filament/Bambu ASA-CF @BBL P1P.json" + }, + { + "name": "Bambu ASA-CF @BBL P1P 0.6 nozzle", + "sub_path": "filament/Bambu ASA-CF @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu ASA-CF @BBL P2S 0.4 nozzle", + "sub_path": "filament/Bambu ASA-CF @BBL P2S 0.4 nozzle.json" + }, + { + "name": "Bambu ASA-CF @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu ASA-CF @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu ASA-CF @BBL X1C", + "sub_path": "filament/Bambu ASA-CF @BBL X1C.json" + }, + { + "name": "Bambu ASA-CF @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu ASA-CF @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu ASA-CF @BBL X2D", + "sub_path": "filament/Bambu ASA-CF @BBL X2D.json" + }, + { + "name": "Bambu ASA-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu ASA-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic ASA", + "sub_path": "filament/Generic ASA.json" + }, + { + "name": "Generic ASA @0.2 nozzle", + "sub_path": "filament/Generic ASA @0.2 nozzle.json" + }, + { + "name": "Generic ASA @BBL A1", + "sub_path": "filament/Generic ASA @BBL A1.json" + }, + { + "name": "Generic ASA @BBL A1 0.2 nozzle", + "sub_path": "filament/Generic ASA @BBL A1 0.2 nozzle.json" + }, + { + "name": "Generic ASA @BBL H2C", + "sub_path": "filament/Generic ASA @BBL H2C.json" + }, + { + "name": "Generic ASA @BBL H2C 0.2 nozzle", + "sub_path": "filament/Generic ASA @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Generic ASA @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic ASA @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic ASA @BBL H2D", + "sub_path": "filament/Generic ASA @BBL H2D.json" + }, + { + "name": "Generic ASA @BBL H2D 0.2 nozzle", + "sub_path": "filament/Generic ASA @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Generic ASA @BBL H2S 0.2 nozzle", + "sub_path": "filament/Generic ASA @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Generic ASA @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic ASA @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic ASA @BBL P1P", + "sub_path": "filament/P1P/Generic ASA @BBL P1P.json" + }, + { + "name": "Generic ASA @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/Generic ASA @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Generic ASA @BBL P2S", + "sub_path": "filament/Generic ASA @BBL P2S.json" + }, + { + "name": "Generic ASA @BBL P2S 0.2 nozzle", + "sub_path": "filament/Generic ASA @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Generic ASA @BBL X2D", + "sub_path": "filament/Generic ASA @BBL X2D.json" + }, + { + "name": "Generic ASA @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic ASA @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Generic ASA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic ASA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "PolyLite ASA @BBL A1", + "sub_path": "filament/PolyLite ASA @BBL A1.json" + }, + { + "name": "PolyLite ASA @BBL A1 0.2 nozzle", + "sub_path": "filament/PolyLite ASA @BBL A1 0.2 nozzle.json" + }, + { + "name": "PolyLite ASA @BBL H2D", + "sub_path": "filament/PolyLite ASA @BBL H2D.json" + }, + { + "name": "PolyLite ASA @BBL H2D 0.2 nozzle", + "sub_path": "filament/PolyLite ASA @BBL H2D 0.2 nozzle.json" + }, + { + "name": "PolyLite ASA @BBL H2DP", + "sub_path": "filament/PolyLite ASA @BBL H2DP.json" + }, + { + "name": "PolyLite ASA @BBL H2DP 0.2 nozzle", + "sub_path": "filament/PolyLite ASA @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "PolyLite ASA @BBL P1P", + "sub_path": "filament/PolyLite ASA @BBL P1P.json" + }, + { + "name": "PolyLite ASA @BBL X1C", + "sub_path": "filament/PolyLite ASA @BBL X1C.json" + }, + { + "name": "PolyLite ASA @BBL X1E", + "sub_path": "filament/PolyLite ASA @BBL X1E.json" + }, + { + "name": "Generic BVOH @BBL A1", + "sub_path": "filament/Generic BVOH @BBL A1.json" + }, + { + "name": "Generic BVOH @BBL A1M", + "sub_path": "filament/Generic BVOH @BBL A1M.json" + }, + { + "name": "Generic BVOH @BBL A2L", + "sub_path": "filament/Generic BVOH @BBL A2L.json" + }, + { + "name": "Generic BVOH @BBL H2C", + "sub_path": "filament/Generic BVOH @BBL H2C.json" + }, + { + "name": "Generic BVOH @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic BVOH @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic BVOH @BBL H2D", + "sub_path": "filament/Generic BVOH @BBL H2D.json" + }, + { + "name": "Generic BVOH @BBL H2DP", + "sub_path": "filament/Generic BVOH @BBL H2DP.json" + }, + { + "name": "Generic BVOH @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic BVOH @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic BVOH @BBL P2S", + "sub_path": "filament/Generic BVOH @BBL P2S.json" + }, + { + "name": "Generic BVOH @BBL X1C", + "sub_path": "filament/Generic BVOH @BBL X1C.json" + }, + { + "name": "Generic BVOH @BBL X2D", + "sub_path": "filament/Generic BVOH @BBL X2D.json" + }, + { + "name": "Generic BVOH @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic BVOH @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic EVA @BBL A1", + "sub_path": "filament/Generic EVA @BBL A1.json" + }, + { + "name": "Generic EVA @BBL A1M", + "sub_path": "filament/Generic EVA @BBL A1M.json" + }, + { + "name": "Generic EVA @BBL A2L", + "sub_path": "filament/Generic EVA @BBL A2L.json" + }, + { + "name": "Generic EVA @BBL H2C", + "sub_path": "filament/Generic EVA @BBL H2C.json" + }, + { + "name": "Generic EVA @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic EVA @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic EVA @BBL H2D", + "sub_path": "filament/Generic EVA @BBL H2D.json" + }, + { + "name": "Generic EVA @BBL H2DP", + "sub_path": "filament/Generic EVA @BBL H2DP.json" + }, + { + "name": "Generic EVA @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic EVA @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic EVA @BBL P2S", + "sub_path": "filament/Generic EVA @BBL P2S.json" + }, + { + "name": "Generic EVA @BBL X1C", + "sub_path": "filament/Generic EVA @BBL X1C.json" + }, + { + "name": "Generic EVA @BBL X2D", + "sub_path": "filament/Generic EVA @BBL X2D.json" + }, + { + "name": "Generic EVA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic EVA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic HIPS @BBL A1", + "sub_path": "filament/Generic HIPS @BBL A1.json" + }, + { + "name": "Generic HIPS @BBL A1 0.2 nozzle", + "sub_path": "filament/Generic HIPS @BBL A1 0.2 nozzle.json" + }, + { + "name": "Generic HIPS @BBL A1M", + "sub_path": "filament/Generic HIPS @BBL A1M.json" + }, + { + "name": "Generic HIPS @BBL A1M 0.2 nozzle", + "sub_path": "filament/Generic HIPS @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Generic HIPS @BBL A2L", + "sub_path": "filament/Generic HIPS @BBL A2L.json" + }, + { + "name": "Generic HIPS @BBL A2L 0.2 nozzle", + "sub_path": "filament/Generic HIPS @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Generic HIPS @BBL H2C", + "sub_path": "filament/Generic HIPS @BBL H2C.json" + }, + { + "name": "Generic HIPS @BBL H2C 0.2 nozzle", + "sub_path": "filament/Generic HIPS @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Generic HIPS @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic HIPS @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic HIPS @BBL H2D", + "sub_path": "filament/Generic HIPS @BBL H2D.json" + }, + { + "name": "Generic HIPS @BBL H2D 0.2 nozzle", + "sub_path": "filament/Generic HIPS @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Generic HIPS @BBL H2DP", + "sub_path": "filament/Generic HIPS @BBL H2DP.json" + }, + { + "name": "Generic HIPS @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Generic HIPS @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Generic HIPS @BBL H2S 0.2 nozzle", + "sub_path": "filament/Generic HIPS @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Generic HIPS @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic HIPS @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic HIPS @BBL P2S", + "sub_path": "filament/Generic HIPS @BBL P2S.json" + }, + { + "name": "Generic HIPS @BBL P2S 0.2 nozzle", + "sub_path": "filament/Generic HIPS @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Generic HIPS @BBL X1C", + "sub_path": "filament/Generic HIPS @BBL X1C.json" + }, + { + "name": "Generic HIPS @BBL X1C 0.2 nozzle", + "sub_path": "filament/Generic HIPS @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Generic HIPS @BBL X2D", + "sub_path": "filament/Generic HIPS @BBL X2D.json" + }, + { + "name": "Generic HIPS @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic HIPS @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Generic HIPS @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic HIPS @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PA-CF @BBL A1", + "sub_path": "filament/Bambu PA-CF @BBL A1.json" + }, + { + "name": "Bambu PA-CF @BBL H2C", + "sub_path": "filament/Bambu PA-CF @BBL H2C.json" + }, + { + "name": "Bambu PA-CF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PA-CF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PA-CF @BBL H2D", + "sub_path": "filament/Bambu PA-CF @BBL H2D.json" + }, + { + "name": "Bambu PA-CF @BBL H2DP", + "sub_path": "filament/Bambu PA-CF @BBL H2DP.json" + }, + { + "name": "Bambu PA-CF @BBL H2S", + "sub_path": "filament/Bambu PA-CF @BBL H2S.json" + }, + { + "name": "Bambu PA-CF @BBL P1P", + "sub_path": "filament/P1P/Bambu PA-CF @BBL P1P.json" + }, + { + "name": "Bambu PA-CF @BBL P2S", + "sub_path": "filament/Bambu PA-CF @BBL P2S.json" + }, + { + "name": "Bambu PA-CF @BBL X1C", + "sub_path": "filament/Bambu PA-CF @BBL X1C.json" + }, + { + "name": "Bambu PA-CF @BBL X1E", + "sub_path": "filament/Bambu PA-CF @BBL X1E.json" + }, + { + "name": "Bambu PA-CF @BBL X2D", + "sub_path": "filament/Bambu PA-CF @BBL X2D.json" + }, + { + "name": "Bambu PA-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PA-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PA6-CF @BBL A1", + "sub_path": "filament/Bambu PA6-CF @BBL A1.json" + }, + { + "name": "Bambu PA6-CF @BBL H2C", + "sub_path": "filament/Bambu PA6-CF @BBL H2C.json" + }, + { + "name": "Bambu PA6-CF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PA6-CF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PA6-CF @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu PA6-CF @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu PA6-CF @BBL H2D", + "sub_path": "filament/Bambu PA6-CF @BBL H2D.json" + }, + { + "name": "Bambu PA6-CF @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PA6-CF @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PA6-CF @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PA6-CF @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PA6-CF @BBL H2DP", + "sub_path": "filament/Bambu PA6-CF @BBL H2DP.json" + }, + { + "name": "Bambu PA6-CF @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PA6-CF @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PA6-CF @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PA6-CF @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PA6-CF @BBL H2S", + "sub_path": "filament/Bambu PA6-CF @BBL H2S.json" + }, + { + "name": "Bambu PA6-CF @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu PA6-CF @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu PA6-CF @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu PA6-CF @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu PA6-CF @BBL P2S", + "sub_path": "filament/Bambu PA6-CF @BBL P2S.json" + }, + { + "name": "Bambu PA6-CF @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PA6-CF @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PA6-CF @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PA6-CF @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PA6-CF @BBL X1C", + "sub_path": "filament/Bambu PA6-CF @BBL X1C.json" + }, + { + "name": "Bambu PA6-CF @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PA6-CF @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PA6-CF @BBL X1E", + "sub_path": "filament/Bambu PA6-CF @BBL X1E.json" + }, + { + "name": "Bambu PA6-CF @BBL X2D", + "sub_path": "filament/Bambu PA6-CF @BBL X2D.json" + }, + { + "name": "Bambu PA6-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PA6-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PA6-CF @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PA6-CF @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu PA6-GF @BBL A1", + "sub_path": "filament/Bambu PA6-GF @BBL A1.json" + }, + { + "name": "Bambu PA6-GF @BBL H2C", + "sub_path": "filament/Bambu PA6-GF @BBL H2C.json" + }, + { + "name": "Bambu PA6-GF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PA6-GF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PA6-GF @BBL H2D", + "sub_path": "filament/Bambu PA6-GF @BBL H2D.json" + }, + { + "name": "Bambu PA6-GF @BBL H2DP", + "sub_path": "filament/Bambu PA6-GF @BBL H2DP.json" + }, + { + "name": "Bambu PA6-GF @BBL H2S", + "sub_path": "filament/Bambu PA6-GF @BBL H2S.json" + }, + { + "name": "Bambu PA6-GF @BBL P1P", + "sub_path": "filament/Bambu PA6-GF @BBL P1P.json" + }, + { + "name": "Bambu PA6-GF @BBL P2S", + "sub_path": "filament/Bambu PA6-GF @BBL P2S.json" + }, + { + "name": "Bambu PA6-GF @BBL X1C", + "sub_path": "filament/Bambu PA6-GF @BBL X1C.json" + }, + { + "name": "Bambu PA6-GF @BBL X2D", + "sub_path": "filament/Bambu PA6-GF @BBL X2D.json" + }, + { + "name": "Bambu PA6-GF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PA6-GF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PAHT-CF @BBL A1", + "sub_path": "filament/Bambu PAHT-CF @BBL A1.json" + }, + { + "name": "Bambu PAHT-CF @BBL H2C", + "sub_path": "filament/Bambu PAHT-CF @BBL H2C.json" + }, + { + "name": "Bambu PAHT-CF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PAHT-CF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PAHT-CF @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu PAHT-CF @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu PAHT-CF @BBL H2D", + "sub_path": "filament/Bambu PAHT-CF @BBL H2D.json" + }, + { + "name": "Bambu PAHT-CF @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PAHT-CF @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PAHT-CF @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PAHT-CF @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PAHT-CF @BBL H2DP", + "sub_path": "filament/Bambu PAHT-CF @BBL H2DP.json" + }, + { + "name": "Bambu PAHT-CF @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PAHT-CF @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PAHT-CF @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PAHT-CF @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PAHT-CF @BBL H2S", + "sub_path": "filament/Bambu PAHT-CF @BBL H2S.json" + }, + { + "name": "Bambu PAHT-CF @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu PAHT-CF @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu PAHT-CF @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu PAHT-CF @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu PAHT-CF @BBL P1P", + "sub_path": "filament/P1P/Bambu PAHT-CF @BBL P1P.json" + }, + { + "name": "Bambu PAHT-CF @BBL P1P 0.6 nozzle", + "sub_path": "filament/P1P/Bambu PAHT-CF @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu PAHT-CF @BBL P2S", + "sub_path": "filament/Bambu PAHT-CF @BBL P2S.json" + }, + { + "name": "Bambu PAHT-CF @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PAHT-CF @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PAHT-CF @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PAHT-CF @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PAHT-CF @BBL X1C", + "sub_path": "filament/Bambu PAHT-CF @BBL X1C.json" + }, + { + "name": "Bambu PAHT-CF @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PAHT-CF @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PAHT-CF @BBL X2D", + "sub_path": "filament/Bambu PAHT-CF @BBL X2D.json" + }, + { + "name": "Bambu PAHT-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PAHT-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PAHT-CF @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PAHT-CF @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu Support For PA/PET @BBL A1", + "sub_path": "filament/Bambu Support For PA PET @BBL A1.json" + }, + { + "name": "Bambu Support For PA/PET @BBL H2C", + "sub_path": "filament/Bambu Support For PA PET @BBL H2C.json" + }, + { + "name": "Bambu Support For PA/PET @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu Support For PA PET @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu Support For PA/PET @BBL H2D", + "sub_path": "filament/Bambu Support For PA PET @BBL H2D.json" + }, + { + "name": "Bambu Support For PA/PET @BBL H2DP", + "sub_path": "filament/Bambu Support For PA PET @BBL H2DP.json" + }, + { + "name": "Bambu Support For PA/PET @BBL H2S", + "sub_path": "filament/Bambu Support For PA PET @BBL H2S.json" + }, + { + "name": "Bambu Support For PA/PET @BBL P1P", + "sub_path": "filament/P1P/Bambu Support For PA PET @BBL P1P.json" + }, + { + "name": "Bambu Support For PA/PET @BBL P2S", + "sub_path": "filament/Bambu Support For PA PET @BBL P2S.json" + }, + { + "name": "Bambu Support For PA/PET @BBL X1C", + "sub_path": "filament/Bambu Support For PA PET @BBL X1C.json" + }, + { + "name": "Bambu Support For PA/PET @BBL X2D", + "sub_path": "filament/Bambu Support For PA PET @BBL X2D.json" + }, + { + "name": "Bambu Support For PA/PET @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu Support For PA PET @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu Support G @BBL A1", + "sub_path": "filament/Bambu Support G @BBL A1.json" + }, + { + "name": "Bambu Support G @BBL H2C", + "sub_path": "filament/Bambu Support G @BBL H2C.json" + }, + { + "name": "Bambu Support G @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu Support G @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu Support G @BBL H2D", + "sub_path": "filament/Bambu Support G @BBL H2D.json" + }, + { + "name": "Bambu Support G @BBL H2DP", + "sub_path": "filament/Bambu Support G @BBL H2DP.json" + }, + { + "name": "Bambu Support G @BBL H2S", + "sub_path": "filament/Bambu Support G @BBL H2S.json" + }, + { + "name": "Bambu Support G @BBL P1P", + "sub_path": "filament/P1P/Bambu Support G @BBL P1P.json" + }, + { + "name": "Bambu Support G @BBL P2S", + "sub_path": "filament/Bambu Support G @BBL P2S.json" + }, + { + "name": "Bambu Support G @BBL X1C", + "sub_path": "filament/Bambu Support G @BBL X1C.json" + }, + { + "name": "Bambu Support G @BBL X1E", + "sub_path": "filament/Bambu Support G @BBL X1E.json" + }, + { + "name": "Bambu Support G @BBL X2D", + "sub_path": "filament/Bambu Support G @BBL X2D.json" + }, + { + "name": "Bambu Support G @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu Support G @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Fiberon PA12-CF @BBL H2D", + "sub_path": "filament/Polymaker/Fiberon PA12-CF @BBL H2D.json" + }, + { + "name": "Fiberon PA12-CF @BBL X1C", + "sub_path": "filament/Polymaker/Fiberon PA12-CF @BBL X1C.json" + }, + { + "name": "Fiberon PA6-CF @BBL H2D", + "sub_path": "filament/Polymaker/Fiberon PA6-CF @BBL H2D.json" + }, + { + "name": "Fiberon PA6-CF @BBL X1C", + "sub_path": "filament/Polymaker/Fiberon PA6-CF @BBL X1C.json" + }, + { + "name": "Fiberon PA6-GF @BBL H2D", + "sub_path": "filament/Polymaker/Fiberon PA6-GF @BBL H2D.json" + }, + { + "name": "Fiberon PA6-GF @BBL X1C", + "sub_path": "filament/Polymaker/Fiberon PA6-GF @BBL X1C.json" + }, + { + "name": "Fiberon PA612-CF @BBL H2D", + "sub_path": "filament/Polymaker/Fiberon PA612-CF @BBL H2D.json" + }, + { + "name": "Fiberon PA612-CF @BBL X1C", + "sub_path": "filament/Polymaker/Fiberon PA612-CF @BBL X1C.json" + }, + { + "name": "Generic PA", + "sub_path": "filament/Generic PA.json" + }, + { + "name": "Generic PA @BBL H2C", + "sub_path": "filament/Generic PA @BBL H2C.json" + }, + { + "name": "Generic PA @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PA @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PA @BBL H2D", + "sub_path": "filament/Generic PA @BBL H2D.json" + }, + { + "name": "Generic PA @BBL H2DP", + "sub_path": "filament/Generic PA @BBL H2DP.json" + }, + { + "name": "Generic PA @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic PA @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic PA @BBL P1P", + "sub_path": "filament/P1P/Generic PA @BBL P1P.json" + }, + { + "name": "Generic PA @BBL P2S", + "sub_path": "filament/Generic PA @BBL P2S.json" + }, + { + "name": "Generic PA @BBL X2D", + "sub_path": "filament/Generic PA @BBL X2D.json" + }, + { + "name": "Generic PA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PA-CF", + "sub_path": "filament/Generic PA-CF.json" + }, + { + "name": "Generic PA-CF @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic PA-CF @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic PA-CF @BBL P1P", + "sub_path": "filament/P1P/Generic PA-CF @BBL P1P.json" + }, + { + "name": "Generic PA-CF @BBL P2S", + "sub_path": "filament/Generic PA-CF @BBL P2S.json" + }, + { + "name": "Generic PA-CF @BBL X2D", + "sub_path": "filament/Generic PA-CF @BBL X2D.json" + }, + { + "name": "Generic PA-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PA-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PC @BBL A1", + "sub_path": "filament/Bambu PC @BBL A1.json" + }, + { + "name": "Bambu PC @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PC @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PC @BBL H2C", + "sub_path": "filament/Bambu PC @BBL H2C.json" + }, + { + "name": "Bambu PC @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PC @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PC @BBL H2C 0.6 nozzle", + "sub_path": "filament/Bambu PC @BBL H2C 0.6 nozzle.json" + }, + { + "name": "Bambu PC @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu PC @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu PC @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PC @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PC @BBL H2D 0.4 nozzle", + "sub_path": "filament/Bambu PC @BBL H2D 0.4 nozzle.json" + }, + { + "name": "Bambu PC @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PC @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PC @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PC @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PC @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PC @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PC @BBL H2DP 0.4 nozzle", + "sub_path": "filament/Bambu PC @BBL H2DP 0.4 nozzle.json" + }, + { + "name": "Bambu PC @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PC @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PC @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PC @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PC @BBL H2S", + "sub_path": "filament/Bambu PC @BBL H2S.json" + }, + { + "name": "Bambu PC @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PC @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PC @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu PC @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu PC @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu PC @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu PC @BBL P1P", + "sub_path": "filament/P1P/Bambu PC @BBL P1P.json" + }, + { + "name": "Bambu PC @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/Bambu PC @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu PC @BBL P1P 0.6 nozzle", + "sub_path": "filament/P1P/Bambu PC @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu PC @BBL P2S 0.4 nozzle", + "sub_path": "filament/Bambu PC @BBL P2S 0.4 nozzle.json" + }, + { + "name": "Bambu PC @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PC @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PC @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PC @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PC @BBL X1C", + "sub_path": "filament/Bambu PC @BBL X1C.json" + }, + { + "name": "Bambu PC @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PC @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PC @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PC @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PC @BBL X1C 0.8 nozzle", + "sub_path": "filament/Bambu PC @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Bambu PC @BBL X1E", + "sub_path": "filament/Bambu PC @BBL X1E.json" + }, + { + "name": "Bambu PC @BBL X1E 0.2 nozzle", + "sub_path": "filament/Bambu PC @BBL X1E 0.2 nozzle.json" + }, + { + "name": "Bambu PC @BBL X1E 0.6 nozzle", + "sub_path": "filament/Bambu PC @BBL X1E 0.6 nozzle.json" + }, + { + "name": "Bambu PC @BBL X1E 0.8 nozzle", + "sub_path": "filament/Bambu PC @BBL X1E 0.8 nozzle.json" + }, + { + "name": "Bambu PC @BBL X2D", + "sub_path": "filament/Bambu PC @BBL X2D.json" + }, + { + "name": "Bambu PC @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PC @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PC @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PC @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL A1", + "sub_path": "filament/Bambu PC FR @BBL A1.json" + }, + { + "name": "Bambu PC FR @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PC FR @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL H2C", + "sub_path": "filament/Bambu PC FR @BBL H2C.json" + }, + { + "name": "Bambu PC FR @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PC FR @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PC FR @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PC FR @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL H2D 0.4 nozzle", + "sub_path": "filament/Bambu PC FR @BBL H2D 0.4 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PC FR @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PC FR @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PC FR @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL H2DP 0.4 nozzle", + "sub_path": "filament/Bambu PC FR @BBL H2DP 0.4 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PC FR @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PC FR @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL H2S", + "sub_path": "filament/Bambu PC FR @BBL H2S.json" + }, + { + "name": "Bambu PC FR @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PC FR @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL P1P", + "sub_path": "filament/Bambu PC FR @BBL P1P.json" + }, + { + "name": "Bambu PC FR @BBL P1P 0.2 nozzle", + "sub_path": "filament/Bambu PC FR @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL P1S", + "sub_path": "filament/Bambu PC FR @BBL P1S.json" + }, + { + "name": "Bambu PC FR @BBL P1S 0.2 nozzle", + "sub_path": "filament/Bambu PC FR @BBL P1S 0.2 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL P1S 0.6 nozzle", + "sub_path": "filament/Bambu PC FR @BBL P1S 0.6 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL P1S 0.8 nozzle", + "sub_path": "filament/Bambu PC FR @BBL P1S 0.8 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL P2S 0.4 nozzle", + "sub_path": "filament/Bambu PC FR @BBL P2S 0.4 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PC FR @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PC FR @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL X1C", + "sub_path": "filament/Bambu PC FR @BBL X1C.json" + }, + { + "name": "Bambu PC FR @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PC FR @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PC FR @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL X1C 0.8 nozzle", + "sub_path": "filament/Bambu PC FR @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL X1E", + "sub_path": "filament/Bambu PC FR @BBL X1E.json" + }, + { + "name": "Bambu PC FR @BBL X1E 0.2 nozzle", + "sub_path": "filament/Bambu PC FR @BBL X1E 0.2 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL X1E 0.6 nozzle", + "sub_path": "filament/Bambu PC FR @BBL X1E 0.6 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL X1E 0.8 nozzle", + "sub_path": "filament/Bambu PC FR @BBL X1E 0.8 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL X2D", + "sub_path": "filament/Bambu PC FR @BBL X2D.json" + }, + { + "name": "Bambu PC FR @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PC FR @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PC FR @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PC FR @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Generic PC", + "sub_path": "filament/Generic PC.json" + }, + { + "name": "Generic PC @0.2 nozzle", + "sub_path": "filament/Generic PC @0.2 nozzle.json" + }, + { + "name": "Generic PC @BBL A1", + "sub_path": "filament/Generic PC @BBL A1.json" + }, + { + "name": "Generic PC @BBL A1 0.2 nozzle", + "sub_path": "filament/Generic PC @BBL A1 0.2 nozzle.json" + }, + { + "name": "Generic PC @BBL H2C", + "sub_path": "filament/Generic PC @BBL H2C.json" + }, + { + "name": "Generic PC @BBL H2C 0.2 nozzle", + "sub_path": "filament/Generic PC @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Generic PC @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PC @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PC @BBL H2D", + "sub_path": "filament/Generic PC @BBL H2D.json" + }, + { + "name": "Generic PC @BBL H2D 0.2 nozzle", + "sub_path": "filament/Generic PC @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Generic PC @BBL H2S", + "sub_path": "filament/Generic PC @BBL H2S.json" + }, + { + "name": "Generic PC @BBL H2S 0.2 nozzle", + "sub_path": "filament/Generic PC @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Generic PC @BBL P1P", + "sub_path": "filament/P1P/Generic PC @BBL P1P.json" + }, + { + "name": "Generic PC @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/Generic PC @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Generic PC @BBL X2D", + "sub_path": "filament/Generic PC @BBL X2D.json" + }, + { + "name": "Generic PC @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic PC @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Generic PC @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PC @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PCTG @BBL A1", + "sub_path": "filament/Generic PCTG @BBL A1.json" + }, + { + "name": "Generic PCTG @BBL A1M", + "sub_path": "filament/Generic PCTG @BBL A1M.json" + }, + { + "name": "Generic PCTG @BBL A2L", + "sub_path": "filament/Generic PCTG @BBL A2L.json" + }, + { + "name": "Generic PCTG @BBL H2C", + "sub_path": "filament/Generic PCTG @BBL H2C.json" + }, + { + "name": "Generic PCTG @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PCTG @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PCTG @BBL H2D", + "sub_path": "filament/Generic PCTG @BBL H2D.json" + }, + { + "name": "Generic PCTG @BBL H2DP", + "sub_path": "filament/Generic PCTG @BBL H2DP.json" + }, + { + "name": "Generic PCTG @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic PCTG @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic PCTG @BBL P2S", + "sub_path": "filament/Generic PCTG @BBL P2S.json" + }, + { + "name": "Generic PCTG @BBL X1C", + "sub_path": "filament/Generic PCTG @BBL X1C.json" + }, + { + "name": "Generic PCTG @BBL X2D", + "sub_path": "filament/Generic PCTG @BBL X2D.json" + }, + { + "name": "Generic PCTG @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PCTG @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PE @BBL A1", + "sub_path": "filament/Generic PE @BBL A1.json" + }, + { + "name": "Generic PE @BBL A1M", + "sub_path": "filament/Generic PE @BBL A1M.json" + }, + { + "name": "Generic PE @BBL A2L", + "sub_path": "filament/Generic PE @BBL A2L.json" + }, + { + "name": "Generic PE @BBL H2C", + "sub_path": "filament/Generic PE @BBL H2C.json" + }, + { + "name": "Generic PE @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PE @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PE @BBL H2D", + "sub_path": "filament/Generic PE @BBL H2D.json" + }, + { + "name": "Generic PE @BBL H2DP", + "sub_path": "filament/Generic PE @BBL H2DP.json" + }, + { + "name": "Generic PE @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic PE @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic PE @BBL P2S", + "sub_path": "filament/Generic PE @BBL P2S.json" + }, + { + "name": "Generic PE @BBL X1C", + "sub_path": "filament/Generic PE @BBL X1C.json" + }, + { + "name": "Generic PE @BBL X2D", + "sub_path": "filament/Generic PE @BBL X2D.json" + }, + { + "name": "Generic PE @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PE @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PE-CF @BBL A1", + "sub_path": "filament/Generic PE-CF @BBL A1.json" + }, + { + "name": "Generic PE-CF @BBL A1M", + "sub_path": "filament/Generic PE-CF @BBL A1M.json" + }, + { + "name": "Generic PE-CF @BBL A2L", + "sub_path": "filament/Generic PE-CF @BBL A2L.json" + }, + { + "name": "Generic PE-CF @BBL H2C", + "sub_path": "filament/Generic PE-CF @BBL H2C.json" + }, + { + "name": "Generic PE-CF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PE-CF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PE-CF @BBL H2D", + "sub_path": "filament/Generic PE-CF @BBL H2D.json" + }, + { + "name": "Generic PE-CF @BBL H2DP", + "sub_path": "filament/Generic PE-CF @BBL H2DP.json" + }, + { + "name": "Generic PE-CF @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic PE-CF @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic PE-CF @BBL P2S", + "sub_path": "filament/Generic PE-CF @BBL P2S.json" + }, + { + "name": "Generic PE-CF @BBL X1C", + "sub_path": "filament/Generic PE-CF @BBL X1C.json" + }, + { + "name": "Generic PE-CF @BBL X2D", + "sub_path": "filament/Generic PE-CF @BBL X2D.json" + }, + { + "name": "Generic PE-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PE-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PET-CF @BBL A1", + "sub_path": "filament/Bambu PET-CF @BBL A1.json" + }, + { + "name": "Bambu PET-CF @BBL H2C", + "sub_path": "filament/Bambu PET-CF @BBL H2C.json" + }, + { + "name": "Bambu PET-CF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PET-CF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PET-CF @BBL H2D", + "sub_path": "filament/Bambu PET-CF @BBL H2D.json" + }, + { + "name": "Bambu PET-CF @BBL H2DP", + "sub_path": "filament/Bambu PET-CF @BBL H2DP.json" + }, + { + "name": "Bambu PET-CF @BBL H2S", + "sub_path": "filament/Bambu PET-CF @BBL H2S.json" + }, + { + "name": "Bambu PET-CF @BBL P1P", + "sub_path": "filament/P1P/Bambu PET-CF @BBL P1P.json" + }, + { + "name": "Bambu PET-CF @BBL P2S", + "sub_path": "filament/Bambu PET-CF @BBL P2S.json" + }, + { + "name": "Bambu PET-CF @BBL X1C", + "sub_path": "filament/Bambu PET-CF @BBL X1C.json" + }, + { + "name": "Bambu PET-CF @BBL X1E", + "sub_path": "filament/Bambu PET-CF @BBL X1E.json" + }, + { + "name": "Bambu PET-CF @BBL X2D", + "sub_path": "filament/Bambu PET-CF @BBL X2D.json" + }, + { + "name": "Bambu PET-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PET-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL A1", + "sub_path": "filament/Bambu PETG Basic @BBL A1.json" + }, + { + "name": "Bambu PETG Basic @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL A1 0.8 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL A1 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL A1M 0.4 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL A1M 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL A1M 0.8 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL A1M 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL A2L 0.4 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL A2L 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL H2C", + "sub_path": "filament/Bambu PETG Basic @BBL H2C.json" + }, + { + "name": "Bambu PETG Basic @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL H2D 0.4 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL H2D 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL H2DP 0.4 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL H2DP 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL H2S", + "sub_path": "filament/Bambu PETG Basic @BBL H2S.json" + }, + { + "name": "Bambu PETG Basic @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL P2S 0.4 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL P2S 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL X1C", + "sub_path": "filament/Bambu PETG Basic @BBL X1C.json" + }, + { + "name": "Bambu PETG Basic @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL X1C 0.8 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL X2D", + "sub_path": "filament/Bambu PETG Basic @BBL X2D.json" + }, + { + "name": "Bambu PETG Basic @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Basic @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PETG Basic @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL A1", + "sub_path": "filament/Bambu PETG HF @BBL A1.json" + }, + { + "name": "Bambu PETG HF @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL A1 0.8 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL A1 0.8 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL A1M", + "sub_path": "filament/Bambu PETG HF @BBL A1M.json" + }, + { + "name": "Bambu PETG HF @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL A1M 0.8 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL A1M 0.8 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL A2L", + "sub_path": "filament/Bambu PETG HF @BBL A2L.json" + }, + { + "name": "Bambu PETG HF @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL H2C", + "sub_path": "filament/Bambu PETG HF @BBL H2C.json" + }, + { + "name": "Bambu PETG HF @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL H2C 0.6 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL H2C 0.6 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL H2D 0.4 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL H2D 0.4 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL H2DP 0.4 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL H2DP 0.4 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL H2S", + "sub_path": "filament/Bambu PETG HF @BBL H2S.json" + }, + { + "name": "Bambu PETG HF @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL P1P 0.4 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL P1P 0.4 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL P1S 0.4 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL P1S 0.4 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL P2S 0.4 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL P2S 0.4 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL X1C", + "sub_path": "filament/Bambu PETG HF @BBL X1C.json" + }, + { + "name": "Bambu PETG HF @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL X1C 0.8 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL X2D", + "sub_path": "filament/Bambu PETG HF @BBL X2D.json" + }, + { + "name": "Bambu PETG HF @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PETG HF @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PETG HF @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL A1", + "sub_path": "filament/Bambu PETG Matte @BBL A1.json" + }, + { + "name": "Bambu PETG Matte @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL A1 0.8 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL A1 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL A1M 0.4 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL A1M 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL A1M 0.8 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL A1M 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL A2L 0.4 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL A2L 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL H2C", + "sub_path": "filament/Bambu PETG Matte @BBL H2C.json" + }, + { + "name": "Bambu PETG Matte @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL H2D 0.4 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL H2D 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL H2DP 0.4 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL H2DP 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL H2S", + "sub_path": "filament/Bambu PETG Matte @BBL H2S.json" + }, + { + "name": "Bambu PETG Matte @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL P1P 0.2 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL P1P 0.4 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL P1P 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL P1P 0.6 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL P2S 0.4 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL P2S 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL X1C", + "sub_path": "filament/Bambu PETG Matte @BBL X1C.json" + }, + { + "name": "Bambu PETG Matte @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL X1C 0.8 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL X2D", + "sub_path": "filament/Bambu PETG Matte @BBL X2D.json" + }, + { + "name": "Bambu PETG Matte @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Matte @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PETG Matte @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL A1", + "sub_path": "filament/Bambu PETG Translucent @BBL A1.json" + }, + { + "name": "Bambu PETG Translucent @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL A1 0.8 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL A1 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL A1M", + "sub_path": "filament/Bambu PETG Translucent @BBL A1M.json" + }, + { + "name": "Bambu PETG Translucent @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL A1M 0.8 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL A1M 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL A2L", + "sub_path": "filament/Bambu PETG Translucent @BBL A2L.json" + }, + { + "name": "Bambu PETG Translucent @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL H2C", + "sub_path": "filament/Bambu PETG Translucent @BBL H2C.json" + }, + { + "name": "Bambu PETG Translucent @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL H2D 0.4 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL H2D 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL H2DP 0.4 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL H2DP 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL H2S", + "sub_path": "filament/Bambu PETG Translucent @BBL H2S.json" + }, + { + "name": "Bambu PETG Translucent @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL P2S 0.4 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL P2S 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL X1C", + "sub_path": "filament/Bambu PETG Translucent @BBL X1C.json" + }, + { + "name": "Bambu PETG Translucent @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL X1C 0.8 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL X2D", + "sub_path": "filament/Bambu PETG Translucent @BBL X2D.json" + }, + { + "name": "Bambu PETG Translucent @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PETG Translucent @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PETG Translucent @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL A1 0.4 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL A1 0.4 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL A1 0.8 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL A1 0.8 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL A1M", + "sub_path": "filament/Bambu PETG-CF @BBL A1M.json" + }, + { + "name": "Bambu PETG-CF @BBL A2L", + "sub_path": "filament/Bambu PETG-CF @BBL A2L.json" + }, + { + "name": "Bambu PETG-CF @BBL A2L 0.4 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL A2L 0.4 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL H2C", + "sub_path": "filament/Bambu PETG-CF @BBL H2C.json" + }, + { + "name": "Bambu PETG-CF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL H2D 0.4 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL H2D 0.4 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL H2DP 0.4 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL H2DP 0.4 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL H2S", + "sub_path": "filament/Bambu PETG-CF @BBL H2S.json" + }, + { + "name": "Bambu PETG-CF @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL P1P", + "sub_path": "filament/P1P/Bambu PETG-CF @BBL P1P.json" + }, + { + "name": "Bambu PETG-CF @BBL P1P 0.4 nozzle", + "sub_path": "filament/P1P/Bambu PETG-CF @BBL P1P 0.4 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL P2S 0.4 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL P2S 0.4 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL X1C", + "sub_path": "filament/Bambu PETG-CF @BBL X1C.json" + }, + { + "name": "Bambu PETG-CF @BBL X1C 0.4 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL X1C 0.4 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL X2D", + "sub_path": "filament/Bambu PETG-CF @BBL X2D.json" + }, + { + "name": "Bambu PETG-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Fiberon PET-CF @BBL H2D", + "sub_path": "filament/Polymaker/Fiberon PET-CF @BBL H2D.json" + }, + { + "name": "Fiberon PET-CF @BBL X1C", + "sub_path": "filament/Polymaker/Fiberon PET-CF @BBL X1C.json" + }, + { + "name": "Fiberon PETG-ESD @BBL H2D", + "sub_path": "filament/Polymaker/Fiberon PETG-ESD @BBL H2D.json" + }, + { + "name": "Fiberon PETG-ESD @BBL X1C", + "sub_path": "filament/Polymaker/Fiberon PETG-ESD @BBL X1C.json" + }, + { + "name": "Fiberon PETG-rCF @BBL H2D", + "sub_path": "filament/Polymaker/Fiberon PETG-rCF @BBL H2D.json" + }, + { + "name": "Fiberon PETG-rCF @BBL X1C", + "sub_path": "filament/Polymaker/Fiberon PETG-rCF @BBL X1C.json" + }, + { + "name": "Generic PETG", + "sub_path": "filament/Generic PETG.json" + }, + { + "name": "Generic PETG @0.2 nozzle", + "sub_path": "filament/Generic PETG @0.2 nozzle.json" + }, + { + "name": "Generic PETG @BBL A1", + "sub_path": "filament/Generic PETG @BBL A1.json" + }, + { + "name": "Generic PETG @BBL A1 0.2 nozzle", + "sub_path": "filament/Generic PETG @BBL A1 0.2 nozzle.json" + }, + { + "name": "Generic PETG @BBL A1M", + "sub_path": "filament/Generic PETG @BBL A1M.json" + }, + { + "name": "Generic PETG @BBL A1M 0.2 nozzle", + "sub_path": "filament/Generic PETG @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Generic PETG @BBL A2L", + "sub_path": "filament/Generic PETG @BBL A2L.json" + }, + { + "name": "Generic PETG @BBL A2L 0.2 nozzle", + "sub_path": "filament/Generic PETG @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Generic PETG @BBL H2C", + "sub_path": "filament/Generic PETG @BBL H2C.json" + }, + { + "name": "Generic PETG @BBL H2C 0.2 nozzle", + "sub_path": "filament/Generic PETG @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Generic PETG @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PETG @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PETG @BBL H2D", + "sub_path": "filament/Generic PETG @BBL H2D.json" + }, + { + "name": "Generic PETG @BBL H2D 0.2 nozzle", + "sub_path": "filament/Generic PETG @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Generic PETG @BBL H2DP", + "sub_path": "filament/Generic PETG @BBL H2DP.json" + }, + { + "name": "Generic PETG @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Generic PETG @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Generic PETG @BBL H2S", + "sub_path": "filament/Generic PETG @BBL H2S.json" + }, + { + "name": "Generic PETG @BBL H2S 0.2 nozzle", + "sub_path": "filament/Generic PETG @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Generic PETG @BBL P1P", + "sub_path": "filament/P1P/Generic PETG @BBL P1P.json" + }, + { + "name": "Generic PETG @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/Generic PETG @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Generic PETG @BBL P2S", + "sub_path": "filament/Generic PETG @BBL P2S.json" + }, + { + "name": "Generic PETG @BBL P2S 0.2 nozzle", + "sub_path": "filament/Generic PETG @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Generic PETG @BBL X2D", + "sub_path": "filament/Generic PETG @BBL X2D.json" + }, + { + "name": "Generic PETG @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic PETG @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Generic PETG @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PETG @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL A1", + "sub_path": "filament/Generic PETG HF @BBL A1.json" + }, + { + "name": "Generic PETG HF @BBL A1 0.2 nozzle", + "sub_path": "filament/Generic PETG HF @BBL A1 0.2 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL A1M", + "sub_path": "filament/Generic PETG HF @BBL A1M.json" + }, + { + "name": "Generic PETG HF @BBL A1M 0.2 nozzle", + "sub_path": "filament/Generic PETG HF @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL A2L", + "sub_path": "filament/Generic PETG HF @BBL A2L.json" + }, + { + "name": "Generic PETG HF @BBL A2L 0.2 nozzle", + "sub_path": "filament/Generic PETG HF @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL H2C", + "sub_path": "filament/Generic PETG HF @BBL H2C.json" + }, + { + "name": "Generic PETG HF @BBL H2C 0.2 nozzle", + "sub_path": "filament/Generic PETG HF @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PETG HF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL H2D", + "sub_path": "filament/Generic PETG HF @BBL H2D.json" + }, + { + "name": "Generic PETG HF @BBL H2D 0.2 nozzle", + "sub_path": "filament/Generic PETG HF @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL H2DP", + "sub_path": "filament/Generic PETG HF @BBL H2DP.json" + }, + { + "name": "Generic PETG HF @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Generic PETG HF @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL H2S 0.2 nozzle", + "sub_path": "filament/Generic PETG HF @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic PETG HF @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL P1P", + "sub_path": "filament/Generic PETG HF @BBL P1P.json" + }, + { + "name": "Generic PETG HF @BBL P1P 0.2 nozzle", + "sub_path": "filament/Generic PETG HF @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL P1S 0.4 nozzle", + "sub_path": "filament/Generic PETG HF @BBL P1S 0.4 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL P1S 0.6 nozzle", + "sub_path": "filament/Generic PETG HF @BBL P1S 0.6 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL P2S", + "sub_path": "filament/Generic PETG HF @BBL P2S.json" + }, + { + "name": "Generic PETG HF @BBL P2S 0.2 nozzle", + "sub_path": "filament/Generic PETG HF @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL P2S 0.4 nozzle", + "sub_path": "filament/Generic PETG HF @BBL P2S 0.4 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL X1 0.6 nozzle", + "sub_path": "filament/Generic PETG HF @BBL X1 0.6 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL X1C", + "sub_path": "filament/Generic PETG HF @BBL X1C.json" + }, + { + "name": "Generic PETG HF @BBL X1C 0.2 nozzle", + "sub_path": "filament/Generic PETG HF @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL X2D", + "sub_path": "filament/Generic PETG HF @BBL X2D.json" + }, + { + "name": "Generic PETG HF @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic PETG HF @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Generic PETG HF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PETG HF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PETG-CF @BBL A1", + "sub_path": "filament/Generic PETG-CF @BBL A1.json" + }, + { + "name": "Generic PETG-CF @BBL A1M", + "sub_path": "filament/P1P/Generic PETG-CF @BBL A1M.json" + }, + { + "name": "Generic PETG-CF @BBL A2L", + "sub_path": "filament/Generic PETG-CF @BBL A2L.json" + }, + { + "name": "Generic PETG-CF @BBL H2C", + "sub_path": "filament/Generic PETG-CF @BBL H2C.json" + }, + { + "name": "Generic PETG-CF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PETG-CF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PETG-CF @BBL H2D", + "sub_path": "filament/Generic PETG-CF @BBL H2D.json" + }, + { + "name": "Generic PETG-CF @BBL H2DP", + "sub_path": "filament/Generic PETG-CF @BBL H2DP.json" + }, + { + "name": "Generic PETG-CF @BBL H2S", + "sub_path": "filament/Generic PETG-CF @BBL H2S.json" + }, + { + "name": "Generic PETG-CF @BBL P1P", + "sub_path": "filament/P1P/Generic PETG-CF @BBL P1P.json" + }, + { + "name": "Generic PETG-CF @BBL P2S", + "sub_path": "filament/Generic PETG-CF @BBL P2S.json" + }, + { + "name": "Generic PETG-CF @BBL X1C", + "sub_path": "filament/Generic PETG-CF @BBL X1C.json" + }, + { + "name": "Generic PETG-CF @BBL X2D", + "sub_path": "filament/Generic PETG-CF @BBL X2D.json" + }, + { + "name": "Generic PETG-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PETG-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "PolyLite PETG @BBL A1", + "sub_path": "filament/PolyLite PETG @BBL A1.json" + }, + { + "name": "PolyLite PETG @BBL A1 0.2 nozzle", + "sub_path": "filament/PolyLite PETG @BBL A1 0.2 nozzle.json" + }, + { + "name": "PolyLite PETG @BBL A1M", + "sub_path": "filament/PolyLite PETG @BBL A1M.json" + }, + { + "name": "PolyLite PETG @BBL H2D", + "sub_path": "filament/PolyLite PETG @BBL H2D.json" + }, + { + "name": "PolyLite PETG @BBL H2D 0.2 nozzle", + "sub_path": "filament/PolyLite PETG @BBL H2D 0.2 nozzle.json" + }, + { + "name": "PolyLite PETG @BBL H2DP", + "sub_path": "filament/PolyLite PETG @BBL H2DP.json" + }, + { + "name": "PolyLite PETG @BBL H2DP 0.2 nozzle", + "sub_path": "filament/PolyLite PETG @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "PolyLite PETG @BBL H2S", + "sub_path": "filament/PolyLite PETG @BBL H2S.json" + }, + { + "name": "PolyLite PETG @BBL H2S 0.2 nozzle", + "sub_path": "filament/PolyLite PETG @BBL H2S 0.2 nozzle.json" + }, + { + "name": "PolyLite PETG @BBL P1P", + "sub_path": "filament/PolyLite PETG @BBL P1P.json" + }, + { + "name": "PolyLite PETG @BBL X1C", + "sub_path": "filament/PolyLite PETG @BBL X1C.json" + }, + { + "name": "SUNLU PETG @BBL A1", + "sub_path": "filament/SUNLU/SUNLU PETG @BBL A1.json" + }, + { + "name": "SUNLU PETG @BBL A1 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU PETG @BBL A1 0.2 nozzle.json" + }, + { + "name": "SUNLU PETG @BBL A1 0.8 nozzle", + "sub_path": "filament/SUNLU/SUNLU PETG @BBL A1 0.8 nozzle.json" + }, + { + "name": "SUNLU PETG @BBL A1M 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU PETG @BBL A1M 0.2 nozzle.json" + }, + { + "name": "SUNLU PETG @BBL A1M 0.4 nozzle", + "sub_path": "filament/SUNLU/SUNLU PETG @BBL A1M.json" + }, + { + "name": "SUNLU PETG @BBL A1M 0.8 nozzle", + "sub_path": "filament/SUNLU/SUNLU PETG @BBL A1M 0.8 nozzle.json" + }, + { + "name": "SUNLU PETG @BBL X1C", + "sub_path": "filament/SUNLU/SUNLU PETG @BBL X1C.json" + }, + { + "name": "SUNLU PETG @BBL X1C 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU PETG @BBL X1C 0.2 nozzle.json" + }, + { + "name": "SUNLU PETG @BBL X1C 0.8 nozzle", + "sub_path": "filament/SUNLU/SUNLU PETG @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Generic PHA @BBL A1", + "sub_path": "filament/Generic PHA @BBL A1.json" + }, + { + "name": "Generic PHA @BBL A1M", + "sub_path": "filament/Generic PHA @BBL A1M.json" + }, + { + "name": "Generic PHA @BBL A2L", + "sub_path": "filament/Generic PHA @BBL A2L.json" + }, + { + "name": "Generic PHA @BBL H2C", + "sub_path": "filament/Generic PHA @BBL H2C.json" + }, + { + "name": "Generic PHA @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PHA @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PHA @BBL H2D", + "sub_path": "filament/Generic PHA @BBL H2D.json" + }, + { + "name": "Generic PHA @BBL H2DP", + "sub_path": "filament/Generic PHA @BBL H2DP.json" + }, + { + "name": "Generic PHA @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic PHA @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic PHA @BBL P2S", + "sub_path": "filament/Generic PHA @BBL P2S.json" + }, + { + "name": "Generic PHA @BBL X1C", + "sub_path": "filament/Generic PHA @BBL X1C.json" + }, + { + "name": "Generic PHA @BBL X2D", + "sub_path": "filament/Generic PHA @BBL X2D.json" + }, + { + "name": "Generic PHA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PHA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Aero @BBL A1", + "sub_path": "filament/Bambu PLA Aero @BBL A1.json" + }, + { + "name": "Bambu PLA Aero @BBL A1M", + "sub_path": "filament/Bambu PLA Aero @BBL A1M.json" + }, + { + "name": "Bambu PLA Aero @BBL A2L", + "sub_path": "filament/Bambu PLA Aero @BBL A2L.json" + }, + { + "name": "Bambu PLA Aero @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PLA Aero @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Aero @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PLA Aero @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Aero @BBL H2C", + "sub_path": "filament/Bambu PLA Aero @BBL H2C.json" + }, + { + "name": "Bambu PLA Aero @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PLA Aero @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Aero @BBL H2D", + "sub_path": "filament/Bambu PLA Aero @BBL H2D.json" + }, + { + "name": "Bambu PLA Aero @BBL H2DP", + "sub_path": "filament/Bambu PLA Aero @BBL H2DP.json" + }, + { + "name": "Bambu PLA Aero @BBL H2S", + "sub_path": "filament/Bambu PLA Aero @BBL H2S.json" + }, + { + "name": "Bambu PLA Aero @BBL P1P", + "sub_path": "filament/P1P/Bambu PLA Aero @BBL P1P.json" + }, + { + "name": "Bambu PLA Aero @BBL P2S", + "sub_path": "filament/Bambu PLA Aero @BBL P2S.json" + }, + { + "name": "Bambu PLA Aero @BBL X1", + "sub_path": "filament/Bambu PLA Aero @BBL X1.json" + }, + { + "name": "Bambu PLA Aero @BBL X1C", + "sub_path": "filament/Bambu PLA Aero @BBL X1C.json" + }, + { + "name": "Bambu PLA Aero @BBL X2D", + "sub_path": "filament/Bambu PLA Aero @BBL X2D.json" + }, + { + "name": "Bambu PLA Aero @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Aero @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL A1", + "sub_path": "filament/Bambu PLA Basic @BBL A1.json" + }, + { + "name": "Bambu PLA Basic @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL A1M", + "sub_path": "filament/Bambu PLA Basic @BBL A1M.json" + }, + { + "name": "Bambu PLA Basic @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL A2L 0.4 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL A2L 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL H2C", + "sub_path": "filament/Bambu PLA Basic @BBL H2C.json" + }, + { + "name": "Bambu PLA Basic @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL H2C 0.6 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL H2C 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL H2D", + "sub_path": "filament/Bambu PLA Basic @BBL H2D.json" + }, + { + "name": "Bambu PLA Basic @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL H2DP", + "sub_path": "filament/Bambu PLA Basic @BBL H2DP.json" + }, + { + "name": "Bambu PLA Basic @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL H2S", + "sub_path": "filament/Bambu PLA Basic @BBL H2S.json" + }, + { + "name": "Bambu PLA Basic @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL P1P", + "sub_path": "filament/P1P/Bambu PLA Basic @BBL P1P.json" + }, + { + "name": "Bambu PLA Basic @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/Bambu PLA Basic @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL P1P 0.6 nozzle", + "sub_path": "filament/P1P/Bambu PLA Basic @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL P1S 0.4 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL P1S 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL P1S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL P1S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL P2S", + "sub_path": "filament/Bambu PLA Basic @BBL P2S.json" + }, + { + "name": "Bambu PLA Basic @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL X1", + "sub_path": "filament/Bambu PLA Basic @BBL X1.json" + }, + { + "name": "Bambu PLA Basic @BBL X1C", + "sub_path": "filament/Bambu PLA Basic @BBL X1C.json" + }, + { + "name": "Bambu PLA Basic @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL X1C 0.8 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL X2D 0.6 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL X2D 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Basic @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Basic @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL A1", + "sub_path": "filament/Bambu PLA Dynamic @BBL A1.json" + }, + { + "name": "Bambu PLA Dynamic @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL A1M", + "sub_path": "filament/Bambu PLA Dynamic @BBL A1M.json" + }, + { + "name": "Bambu PLA Dynamic @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL A2L", + "sub_path": "filament/Bambu PLA Dynamic @BBL A2L.json" + }, + { + "name": "Bambu PLA Dynamic @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL H2C", + "sub_path": "filament/Bambu PLA Dynamic @BBL H2C.json" + }, + { + "name": "Bambu PLA Dynamic @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL H2D", + "sub_path": "filament/Bambu PLA Dynamic @BBL H2D.json" + }, + { + "name": "Bambu PLA Dynamic @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL H2DP", + "sub_path": "filament/Bambu PLA Dynamic @BBL H2DP.json" + }, + { + "name": "Bambu PLA Dynamic @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL H2S", + "sub_path": "filament/Bambu PLA Dynamic @BBL H2S.json" + }, + { + "name": "Bambu PLA Dynamic @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL P1P", + "sub_path": "filament/Bambu PLA Dynamic @BBL P1P.json" + }, + { + "name": "Bambu PLA Dynamic @BBL P1P 0.2 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL P1P 0.6 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL P2S", + "sub_path": "filament/Bambu PLA Dynamic @BBL P2S.json" + }, + { + "name": "Bambu PLA Dynamic @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL X1C", + "sub_path": "filament/Bambu PLA Dynamic @BBL X1C.json" + }, + { + "name": "Bambu PLA Dynamic @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL X1C 0.8 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL X2D", + "sub_path": "filament/Bambu PLA Dynamic @BBL X2D.json" + }, + { + "name": "Bambu PLA Dynamic @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Dynamic @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Dynamic @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL A1", + "sub_path": "filament/Bambu PLA Galaxy @BBL A1.json" + }, + { + "name": "Bambu PLA Galaxy @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL A1M", + "sub_path": "filament/Bambu PLA Galaxy @BBL A1M.json" + }, + { + "name": "Bambu PLA Galaxy @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL A2L", + "sub_path": "filament/Bambu PLA Galaxy @BBL A2L.json" + }, + { + "name": "Bambu PLA Galaxy @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL H2C", + "sub_path": "filament/Bambu PLA Galaxy @BBL H2C.json" + }, + { + "name": "Bambu PLA Galaxy @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL H2D", + "sub_path": "filament/Bambu PLA Galaxy @BBL H2D.json" + }, + { + "name": "Bambu PLA Galaxy @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL H2DP", + "sub_path": "filament/Bambu PLA Galaxy @BBL H2DP.json" + }, + { + "name": "Bambu PLA Galaxy @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL H2S", + "sub_path": "filament/Bambu PLA Galaxy @BBL H2S.json" + }, + { + "name": "Bambu PLA Galaxy @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL P1P", + "sub_path": "filament/Bambu PLA Galaxy @BBL P1P.json" + }, + { + "name": "Bambu PLA Galaxy @BBL P1P 0.2 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL P1P 0.6 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL P2S", + "sub_path": "filament/Bambu PLA Galaxy @BBL P2S.json" + }, + { + "name": "Bambu PLA Galaxy @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL X1C", + "sub_path": "filament/Bambu PLA Galaxy @BBL X1C.json" + }, + { + "name": "Bambu PLA Galaxy @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL X1C 0.8 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL X2D", + "sub_path": "filament/Bambu PLA Galaxy @BBL X2D.json" + }, + { + "name": "Bambu PLA Galaxy @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Galaxy @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Galaxy @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL A1", + "sub_path": "filament/Bambu PLA Glow @BBL A1.json" + }, + { + "name": "Bambu PLA Glow @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL A1M", + "sub_path": "filament/Bambu PLA Glow @BBL A1M.json" + }, + { + "name": "Bambu PLA Glow @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL A2L 0.4 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL A2L 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL H2C", + "sub_path": "filament/Bambu PLA Glow @BBL H2C.json" + }, + { + "name": "Bambu PLA Glow @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL H2D", + "sub_path": "filament/Bambu PLA Glow @BBL H2D.json" + }, + { + "name": "Bambu PLA Glow @BBL H2DP", + "sub_path": "filament/Bambu PLA Glow @BBL H2DP.json" + }, + { + "name": "Bambu PLA Glow @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL H2S", + "sub_path": "filament/Bambu PLA Glow @BBL H2S.json" + }, + { + "name": "Bambu PLA Glow @BBL P1P", + "sub_path": "filament/Bambu PLA Glow @BBL P1P.json" + }, + { + "name": "Bambu PLA Glow @BBL P1P 0.6 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL P2S", + "sub_path": "filament/Bambu PLA Glow @BBL P2S.json" + }, + { + "name": "Bambu PLA Glow @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL X1", + "sub_path": "filament/Bambu PLA Glow @BBL X1.json" + }, + { + "name": "Bambu PLA Glow @BBL X1C", + "sub_path": "filament/Bambu PLA Glow @BBL X1C.json" + }, + { + "name": "Bambu PLA Glow @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL X1E", + "sub_path": "filament/Bambu PLA Glow @BBL X1E.json" + }, + { + "name": "Bambu PLA Glow @BBL X2D", + "sub_path": "filament/Bambu PLA Glow @BBL X2D.json" + }, + { + "name": "Bambu PLA Glow @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL A1", + "sub_path": "filament/Bambu PLA Lite @BBL A1.json" + }, + { + "name": "Bambu PLA Lite @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL A1M", + "sub_path": "filament/Bambu PLA Lite @BBL A1M.json" + }, + { + "name": "Bambu PLA Lite @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL A2L 0.4 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL A2L 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL H2C", + "sub_path": "filament/Bambu PLA Lite @BBL H2C.json" + }, + { + "name": "Bambu PLA Lite @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL H2D", + "sub_path": "filament/Bambu PLA Lite @BBL H2D.json" + }, + { + "name": "Bambu PLA Lite @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL H2DP 0.4 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL H2DP 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL H2S", + "sub_path": "filament/Bambu PLA Lite @BBL H2S.json" + }, + { + "name": "Bambu PLA Lite @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL P1P", + "sub_path": "filament/Bambu PLA Lite @BBL P1P.json" + }, + { + "name": "Bambu PLA Lite @BBL P1P 0.2 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL P1P 0.6 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL P2S 0.4 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL P2S 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL X1C", + "sub_path": "filament/Bambu PLA Lite @BBL X1C.json" + }, + { + "name": "Bambu PLA Lite @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL X1C 0.8 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL X2D", + "sub_path": "filament/Bambu PLA Lite @BBL X2D.json" + }, + { + "name": "Bambu PLA Lite @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Lite @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Lite @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Marble @BBL A1", + "sub_path": "filament/Bambu PLA Marble @BBL A1.json" + }, + { + "name": "Bambu PLA Marble @BBL A1M", + "sub_path": "filament/Bambu PLA Marble @BBL A1M.json" + }, + { + "name": "Bambu PLA Marble @BBL A2L", + "sub_path": "filament/Bambu PLA Marble @BBL A2L.json" + }, + { + "name": "Bambu PLA Marble @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PLA Marble @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Marble @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PLA Marble @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Marble @BBL H2C", + "sub_path": "filament/Bambu PLA Marble @BBL H2C.json" + }, + { + "name": "Bambu PLA Marble @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PLA Marble @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Marble @BBL H2D", + "sub_path": "filament/Bambu PLA Marble @BBL H2D.json" + }, + { + "name": "Bambu PLA Marble @BBL H2DP", + "sub_path": "filament/Bambu PLA Marble @BBL H2DP.json" + }, + { + "name": "Bambu PLA Marble @BBL H2S", + "sub_path": "filament/Bambu PLA Marble @BBL H2S.json" + }, + { + "name": "Bambu PLA Marble @BBL P1P", + "sub_path": "filament/P1P/Bambu PLA Marble @BBL P1P.json" + }, + { + "name": "Bambu PLA Marble @BBL P1P 0.6 nozzle", + "sub_path": "filament/P1P/Bambu PLA Marble @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Marble @BBL P2S", + "sub_path": "filament/Bambu PLA Marble @BBL P2S.json" + }, + { + "name": "Bambu PLA Marble @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Marble @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Marble @BBL X1", + "sub_path": "filament/Bambu PLA Marble @BBL X1.json" + }, + { + "name": "Bambu PLA Marble @BBL X1C", + "sub_path": "filament/Bambu PLA Marble @BBL X1C.json" + }, + { + "name": "Bambu PLA Marble @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PLA Marble @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Marble @BBL X2D", + "sub_path": "filament/Bambu PLA Marble @BBL X2D.json" + }, + { + "name": "Bambu PLA Marble @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Marble @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL A1", + "sub_path": "filament/Bambu PLA Matte @BBL A1.json" + }, + { + "name": "Bambu PLA Matte @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL A1M", + "sub_path": "filament/Bambu PLA Matte @BBL A1M.json" + }, + { + "name": "Bambu PLA Matte @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL A2L 0.4 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL A2L 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL H2C", + "sub_path": "filament/Bambu PLA Matte @BBL H2C.json" + }, + { + "name": "Bambu PLA Matte @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL H2C 0.6 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL H2C 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL H2D", + "sub_path": "filament/Bambu PLA Matte @BBL H2D.json" + }, + { + "name": "Bambu PLA Matte @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL H2DP", + "sub_path": "filament/Bambu PLA Matte @BBL H2DP.json" + }, + { + "name": "Bambu PLA Matte @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL H2S", + "sub_path": "filament/Bambu PLA Matte @BBL H2S.json" + }, + { + "name": "Bambu PLA Matte @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL P1P", + "sub_path": "filament/P1P/Bambu PLA Matte @BBL P1P.json" + }, + { + "name": "Bambu PLA Matte @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/Bambu PLA Matte @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL P1P 0.6 nozzle", + "sub_path": "filament/P1P/Bambu PLA Matte @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL P1S 0.4 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL P1S 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL P1S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL P1S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL P2S", + "sub_path": "filament/Bambu PLA Matte @BBL P2S.json" + }, + { + "name": "Bambu PLA Matte @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL X1", + "sub_path": "filament/Bambu PLA Matte @BBL X1.json" + }, + { + "name": "Bambu PLA Matte @BBL X1C", + "sub_path": "filament/Bambu PLA Matte @BBL X1C.json" + }, + { + "name": "Bambu PLA Matte @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL X1C 0.8 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL X2D", + "sub_path": "filament/Bambu PLA Matte @BBL X2D.json" + }, + { + "name": "Bambu PLA Matte @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Matte @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Matte @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL A1", + "sub_path": "filament/Bambu PLA Metal @BBL A1.json" + }, + { + "name": "Bambu PLA Metal @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL A1M", + "sub_path": "filament/Bambu PLA Metal @BBL A1M.json" + }, + { + "name": "Bambu PLA Metal @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL A2L", + "sub_path": "filament/Bambu PLA Metal @BBL A2L.json" + }, + { + "name": "Bambu PLA Metal @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL H2C", + "sub_path": "filament/Bambu PLA Metal @BBL H2C.json" + }, + { + "name": "Bambu PLA Metal @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL H2D", + "sub_path": "filament/Bambu PLA Metal @BBL H2D.json" + }, + { + "name": "Bambu PLA Metal @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL H2DP", + "sub_path": "filament/Bambu PLA Metal @BBL H2DP.json" + }, + { + "name": "Bambu PLA Metal @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL H2S", + "sub_path": "filament/Bambu PLA Metal @BBL H2S.json" + }, + { + "name": "Bambu PLA Metal @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL P1P", + "sub_path": "filament/P1P/Bambu PLA Metal @BBL P1P.json" + }, + { + "name": "Bambu PLA Metal @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/Bambu PLA Metal @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL P1P 0.6 nozzle", + "sub_path": "filament/P1P/Bambu PLA Metal @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL P2S", + "sub_path": "filament/Bambu PLA Metal @BBL P2S.json" + }, + { + "name": "Bambu PLA Metal @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL X1", + "sub_path": "filament/Bambu PLA Metal @BBL X1.json" + }, + { + "name": "Bambu PLA Metal @BBL X1C", + "sub_path": "filament/Bambu PLA Metal @BBL X1C.json" + }, + { + "name": "Bambu PLA Metal @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL X2D", + "sub_path": "filament/Bambu PLA Metal @BBL X2D.json" + }, + { + "name": "Bambu PLA Metal @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Metal @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Metal @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL A1", + "sub_path": "filament/Bambu PLA Pure @BBL A1.json" + }, + { + "name": "Bambu PLA Pure @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL A1 0.8 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL A1 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL A1M", + "sub_path": "filament/Bambu PLA Pure @BBL A1M.json" + }, + { + "name": "Bambu PLA Pure @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL A1M 0.8 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL A1M 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL A2L", + "sub_path": "filament/Bambu PLA Pure @BBL A2L.json" + }, + { + "name": "Bambu PLA Pure @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL H2C", + "sub_path": "filament/Bambu PLA Pure @BBL H2C.json" + }, + { + "name": "Bambu PLA Pure @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL H2C 0.6 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL H2C 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL H2D", + "sub_path": "filament/Bambu PLA Pure @BBL H2D.json" + }, + { + "name": "Bambu PLA Pure @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL H2DP", + "sub_path": "filament/Bambu PLA Pure @BBL H2DP.json" + }, + { + "name": "Bambu PLA Pure @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL H2S", + "sub_path": "filament/Bambu PLA Pure @BBL H2S.json" + }, + { + "name": "Bambu PLA Pure @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL P1P", + "sub_path": "filament/Bambu PLA Pure @BBL P1P.json" + }, + { + "name": "Bambu PLA Pure @BBL P1P 0.2 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL P1P 0.8 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL P1P 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL P2S 0.4 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL P2S 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL X1C", + "sub_path": "filament/Bambu PLA Pure @BBL X1C.json" + }, + { + "name": "Bambu PLA Pure @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL X1C 0.8 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL X2D 0.6 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL X2D 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Pure @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Pure @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL A1", + "sub_path": "filament/Bambu PLA Silk @BBL A1.json" + }, + { + "name": "Bambu PLA Silk @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL A1M", + "sub_path": "filament/Bambu PLA Silk @BBL A1M.json" + }, + { + "name": "Bambu PLA Silk @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL A2L 0.4 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL A2L 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL H2C", + "sub_path": "filament/Bambu PLA Silk @BBL H2C.json" + }, + { + "name": "Bambu PLA Silk @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL H2D", + "sub_path": "filament/Bambu PLA Silk @BBL H2D.json" + }, + { + "name": "Bambu PLA Silk @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL H2DP", + "sub_path": "filament/Bambu PLA Silk @BBL H2DP.json" + }, + { + "name": "Bambu PLA Silk @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL H2S", + "sub_path": "filament/Bambu PLA Silk @BBL H2S.json" + }, + { + "name": "Bambu PLA Silk @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL P1P", + "sub_path": "filament/P1P/Bambu PLA Silk @BBL P1P.json" + }, + { + "name": "Bambu PLA Silk @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/Bambu PLA Silk @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL P2S", + "sub_path": "filament/Bambu PLA Silk @BBL P2S.json" + }, + { + "name": "Bambu PLA Silk @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL X1", + "sub_path": "filament/Bambu PLA Silk @BBL X1.json" + }, + { + "name": "Bambu PLA Silk @BBL X1C", + "sub_path": "filament/Bambu PLA Silk @BBL X1C.json" + }, + { + "name": "Bambu PLA Silk @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL X2D", + "sub_path": "filament/Bambu PLA Silk @BBL X2D.json" + }, + { + "name": "Bambu PLA Silk @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Silk @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL A1", + "sub_path": "filament/Bambu PLA Silk+ @BBL A1.json" + }, + { + "name": "Bambu PLA Silk+ @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL A1M", + "sub_path": "filament/Bambu PLA Silk+ @BBL A1M.json" + }, + { + "name": "Bambu PLA Silk+ @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL A2L 0.4 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL A2L 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL H2C", + "sub_path": "filament/Bambu PLA Silk+ @BBL H2C.json" + }, + { + "name": "Bambu PLA Silk+ @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL H2D", + "sub_path": "filament/Bambu PLA Silk+ @BBL H2D.json" + }, + { + "name": "Bambu PLA Silk+ @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL H2DP", + "sub_path": "filament/Bambu PLA Silk+ @BBL H2DP.json" + }, + { + "name": "Bambu PLA Silk+ @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL H2S", + "sub_path": "filament/Bambu PLA Silk+ @BBL H2S.json" + }, + { + "name": "Bambu PLA Silk+ @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL P1P", + "sub_path": "filament/Bambu PLA Silk+ @BBL P1P.json" + }, + { + "name": "Bambu PLA Silk+ @BBL P1P 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL P1P 0.6 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL P1S 0.4 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL P1S 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL P1S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL P1S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL P2S", + "sub_path": "filament/Bambu PLA Silk+ @BBL P2S.json" + }, + { + "name": "Bambu PLA Silk+ @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL X1", + "sub_path": "filament/Bambu PLA Silk+ @BBL X1.json" + }, + { + "name": "Bambu PLA Silk+ @BBL X1C", + "sub_path": "filament/Bambu PLA Silk+ @BBL X1C.json" + }, + { + "name": "Bambu PLA Silk+ @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL X2D", + "sub_path": "filament/Bambu PLA Silk+ @BBL X2D.json" + }, + { + "name": "Bambu PLA Silk+ @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Silk+ @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Silk+ @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Sparkle @BBL A1", + "sub_path": "filament/Bambu PLA Sparkle @BBL A1.json" + }, + { + "name": "Bambu PLA Sparkle @BBL A1M", + "sub_path": "filament/Bambu PLA Sparkle @BBL A1M.json" + }, + { + "name": "Bambu PLA Sparkle @BBL A2L", + "sub_path": "filament/Bambu PLA Sparkle @BBL A2L.json" + }, + { + "name": "Bambu PLA Sparkle @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PLA Sparkle @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Sparkle @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PLA Sparkle @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Sparkle @BBL H2C", + "sub_path": "filament/Bambu PLA Sparkle @BBL H2C.json" + }, + { + "name": "Bambu PLA Sparkle @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PLA Sparkle @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Sparkle @BBL H2D", + "sub_path": "filament/Bambu PLA Sparkle @BBL H2D.json" + }, + { + "name": "Bambu PLA Sparkle @BBL H2DP", + "sub_path": "filament/Bambu PLA Sparkle @BBL H2DP.json" + }, + { + "name": "Bambu PLA Sparkle @BBL H2S", + "sub_path": "filament/Bambu PLA Sparkle @BBL H2S.json" + }, + { + "name": "Bambu PLA Sparkle @BBL P1P", + "sub_path": "filament/P1P/Bambu PLA Sparkle @BBL P1P.json" + }, + { + "name": "Bambu PLA Sparkle @BBL P1P 0.6 nozzle", + "sub_path": "filament/P1P/Bambu PLA Sparkle @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Sparkle @BBL P2S", + "sub_path": "filament/Bambu PLA Sparkle @BBL P2S.json" + }, + { + "name": "Bambu PLA Sparkle @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Sparkle @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Sparkle @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Sparkle @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Sparkle @BBL X1", + "sub_path": "filament/Bambu PLA Sparkle @BBL X1.json" + }, + { + "name": "Bambu PLA Sparkle @BBL X1C", + "sub_path": "filament/Bambu PLA Sparkle @BBL X1C.json" + }, + { + "name": "Bambu PLA Sparkle @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PLA Sparkle @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Sparkle @BBL X2D", + "sub_path": "filament/Bambu PLA Sparkle @BBL X2D.json" + }, + { + "name": "Bambu PLA Sparkle @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Sparkle @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Tough @BBL A1", + "sub_path": "filament/Bambu PLA Tough @BBL A1.json" + }, + { + "name": "Bambu PLA Tough @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough @BBL A1M", + "sub_path": "filament/Bambu PLA Tough @BBL A1M.json" + }, + { + "name": "Bambu PLA Tough @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough @BBL A2L", + "sub_path": "filament/Bambu PLA Tough @BBL A2L.json" + }, + { + "name": "Bambu PLA Tough @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough @BBL H2C", + "sub_path": "filament/Bambu PLA Tough @BBL H2C.json" + }, + { + "name": "Bambu PLA Tough @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PLA Tough @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Tough @BBL H2D", + "sub_path": "filament/Bambu PLA Tough @BBL H2D.json" + }, + { + "name": "Bambu PLA Tough @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough @BBL H2DP", + "sub_path": "filament/Bambu PLA Tough @BBL H2DP.json" + }, + { + "name": "Bambu PLA Tough @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough @BBL H2S", + "sub_path": "filament/Bambu PLA Tough @BBL H2S.json" + }, + { + "name": "Bambu PLA Tough @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough @BBL P1P", + "sub_path": "filament/P1P/Bambu PLA Tough @BBL P1P.json" + }, + { + "name": "Bambu PLA Tough @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/Bambu PLA Tough @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough @BBL P2S", + "sub_path": "filament/Bambu PLA Tough @BBL P2S.json" + }, + { + "name": "Bambu PLA Tough @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough @BBL X1", + "sub_path": "filament/Bambu PLA Tough @BBL X1.json" + }, + { + "name": "Bambu PLA Tough @BBL X1C", + "sub_path": "filament/Bambu PLA Tough @BBL X1C.json" + }, + { + "name": "Bambu PLA Tough @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough @BBL X2D", + "sub_path": "filament/Bambu PLA Tough @BBL X2D.json" + }, + { + "name": "Bambu PLA Tough @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Tough @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL A1", + "sub_path": "filament/Bambu PLA Tough+ @BBL A1.json" + }, + { + "name": "Bambu PLA Tough+ @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL A1M", + "sub_path": "filament/Bambu PLA Tough+ @BBL A1M.json" + }, + { + "name": "Bambu PLA Tough+ @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL A2L 0.4 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL A2L 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL H2C", + "sub_path": "filament/Bambu PLA Tough+ @BBL H2C.json" + }, + { + "name": "Bambu PLA Tough+ @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL H2C 0.6 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL H2C 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL H2D", + "sub_path": "filament/Bambu PLA Tough+ @BBL H2D.json" + }, + { + "name": "Bambu PLA Tough+ @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL H2DP", + "sub_path": "filament/Bambu PLA Tough+ @BBL H2DP.json" + }, + { + "name": "Bambu PLA Tough+ @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL H2S", + "sub_path": "filament/Bambu PLA Tough+ @BBL H2S.json" + }, + { + "name": "Bambu PLA Tough+ @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL P1P", + "sub_path": "filament/P1P/Bambu PLA Tough+ @BBL P1P.json" + }, + { + "name": "Bambu PLA Tough+ @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/Bambu PLA Tough+ @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL P1P 0.6 nozzle", + "sub_path": "filament/P1P/Bambu PLA Tough+ @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL P2S", + "sub_path": "filament/Bambu PLA Tough+ @BBL P2S.json" + }, + { + "name": "Bambu PLA Tough+ @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL X1", + "sub_path": "filament/Bambu PLA Tough+ @BBL X1.json" + }, + { + "name": "Bambu PLA Tough+ @BBL X1C", + "sub_path": "filament/Bambu PLA Tough+ @BBL X1C.json" + }, + { + "name": "Bambu PLA Tough+ @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL X1C 0.8 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL X2D", + "sub_path": "filament/Bambu PLA Tough+ @BBL X2D.json" + }, + { + "name": "Bambu PLA Tough+ @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Tough+ @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Tough+ @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL A1", + "sub_path": "filament/Bambu PLA Translucent @BBL A1.json" + }, + { + "name": "Bambu PLA Translucent @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL A1 0.8 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL A1 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL A1M", + "sub_path": "filament/Bambu PLA Translucent @BBL A1M.json" + }, + { + "name": "Bambu PLA Translucent @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL A1M 0.8 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL A1M 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL A2L", + "sub_path": "filament/Bambu PLA Translucent @BBL A2L.json" + }, + { + "name": "Bambu PLA Translucent @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL H2C", + "sub_path": "filament/Bambu PLA Translucent @BBL H2C.json" + }, + { + "name": "Bambu PLA Translucent @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL H2C 0.6 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL H2C 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL H2D", + "sub_path": "filament/Bambu PLA Translucent @BBL H2D.json" + }, + { + "name": "Bambu PLA Translucent @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL H2DP", + "sub_path": "filament/Bambu PLA Translucent @BBL H2DP.json" + }, + { + "name": "Bambu PLA Translucent @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL H2S", + "sub_path": "filament/Bambu PLA Translucent @BBL H2S.json" + }, + { + "name": "Bambu PLA Translucent @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL P1P", + "sub_path": "filament/Bambu PLA Translucent @BBL P1P.json" + }, + { + "name": "Bambu PLA Translucent @BBL P1P 0.2 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL P1P 0.8 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL P1P 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL P2S 0.4 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL P2S 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL X1C", + "sub_path": "filament/Bambu PLA Translucent @BBL X1C.json" + }, + { + "name": "Bambu PLA Translucent @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL X1C 0.8 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL X2D 0.6 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL X2D 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Translucent @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Translucent @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Wood @BBL A1", + "sub_path": "filament/Bambu PLA Wood @BBL A1.json" + }, + { + "name": "Bambu PLA Wood @BBL A1M", + "sub_path": "filament/Bambu PLA Wood @BBL A1M.json" + }, + { + "name": "Bambu PLA Wood @BBL A2L", + "sub_path": "filament/Bambu PLA Wood @BBL A2L.json" + }, + { + "name": "Bambu PLA Wood @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PLA Wood @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Wood @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PLA Wood @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Wood @BBL H2C", + "sub_path": "filament/Bambu PLA Wood @BBL H2C.json" + }, + { + "name": "Bambu PLA Wood @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PLA Wood @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PLA Wood @BBL H2D", + "sub_path": "filament/Bambu PLA Wood @BBL H2D.json" + }, + { + "name": "Bambu PLA Wood @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA Wood @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Wood @BBL H2DP", + "sub_path": "filament/Bambu PLA Wood @BBL H2DP.json" + }, + { + "name": "Bambu PLA Wood @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PLA Wood @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Wood @BBL H2S", + "sub_path": "filament/Bambu PLA Wood @BBL H2S.json" + }, + { + "name": "Bambu PLA Wood @BBL P1P", + "sub_path": "filament/Bambu PLA Wood @BBL P1P.json" + }, + { + "name": "Bambu PLA Wood @BBL P1P 0.6 nozzle", + "sub_path": "filament/Bambu PLA Wood @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Wood @BBL P2S", + "sub_path": "filament/Bambu PLA Wood @BBL P2S.json" + }, + { + "name": "Bambu PLA Wood @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA Wood @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Wood @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA Wood @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Wood @BBL X1", + "sub_path": "filament/Bambu PLA Wood @BBL X1.json" + }, + { + "name": "Bambu PLA Wood @BBL X1C", + "sub_path": "filament/Bambu PLA Wood @BBL X1C.json" + }, + { + "name": "Bambu PLA Wood @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PLA Wood @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PLA Wood @BBL X1C 0.8 nozzle", + "sub_path": "filament/Bambu PLA Wood @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA Wood @BBL X2D", + "sub_path": "filament/Bambu PLA Wood @BBL X2D.json" + }, + { + "name": "Bambu PLA Wood @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA Wood @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL A1", + "sub_path": "filament/Bambu PLA-CF @BBL A1.json" + }, + { + "name": "Bambu PLA-CF @BBL A1 0.8 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL A1 0.8 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL A1M", + "sub_path": "filament/Bambu PLA-CF @BBL A1M.json" + }, + { + "name": "Bambu PLA-CF @BBL A1M 0.8 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL A1M 0.8 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL A2L", + "sub_path": "filament/Bambu PLA-CF @BBL A2L.json" + }, + { + "name": "Bambu PLA-CF @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL H2C", + "sub_path": "filament/Bambu PLA-CF @BBL H2C.json" + }, + { + "name": "Bambu PLA-CF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL H2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL H2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL H2DP 0.4 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL H2DP 0.4 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL H2S", + "sub_path": "filament/Bambu PLA-CF @BBL H2S.json" + }, + { + "name": "Bambu PLA-CF @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL P1P", + "sub_path": "filament/P1P/Bambu PLA-CF @BBL P1P.json" + }, + { + "name": "Bambu PLA-CF @BBL P1P 0.8 nozzle", + "sub_path": "filament/P1P/Bambu PLA-CF @BBL P1P 0.8 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL P2S 0.4 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL P2S 0.4 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL X1C", + "sub_path": "filament/Bambu PLA-CF @BBL X1C.json" + }, + { + "name": "Bambu PLA-CF @BBL X1C 0.8 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL X1C 0.8 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL X2D", + "sub_path": "filament/Bambu PLA-CF @BBL X2D.json" + }, + { + "name": "Bambu PLA-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PLA-CF @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PLA-CF @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL A1", + "sub_path": "filament/Bambu Support For PLA @BBL A1.json" + }, + { + "name": "Bambu Support For PLA @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL A1M", + "sub_path": "filament/Bambu Support For PLA @BBL A1M.json" + }, + { + "name": "Bambu Support For PLA @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL A2L", + "sub_path": "filament/Bambu Support For PLA @BBL A2L.json" + }, + { + "name": "Bambu Support For PLA @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL H2C", + "sub_path": "filament/Bambu Support For PLA @BBL H2C.json" + }, + { + "name": "Bambu Support For PLA @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL H2D", + "sub_path": "filament/Bambu Support For PLA @BBL H2D.json" + }, + { + "name": "Bambu Support For PLA @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL H2DP", + "sub_path": "filament/Bambu Support For PLA @BBL H2DP.json" + }, + { + "name": "Bambu Support For PLA @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL H2S", + "sub_path": "filament/Bambu Support For PLA @BBL H2S.json" + }, + { + "name": "Bambu Support For PLA @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL P1P", + "sub_path": "filament/P1P/Bambu Support For PLA @BBL P1P.json" + }, + { + "name": "Bambu Support For PLA @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/Bambu Support For PLA @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL P2S", + "sub_path": "filament/Bambu Support For PLA @BBL P2S.json" + }, + { + "name": "Bambu Support For PLA @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL X1C", + "sub_path": "filament/Bambu Support For PLA @BBL X1C.json" + }, + { + "name": "Bambu Support For PLA @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL X2D", + "sub_path": "filament/Bambu Support For PLA @BBL X2D.json" + }, + { + "name": "Bambu Support For PLA @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu Support For PLA @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu Support For PLA @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL A1", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL A1.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL A1M", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL A1M.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL A2L", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL A2L.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL H2C", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2C.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL H2D", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2D.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL H2DP", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2DP.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL H2S", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2S.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL P1P", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL P1P.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL P1P 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL P2S", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL P2S.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL X1C", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL X1C.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL X2D", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL X2D.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu Support For PLA/PETG @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu Support For PLA-PETG @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu Support W @BBL A1", + "sub_path": "filament/Bambu Support W @BBL A1.json" + }, + { + "name": "Bambu Support W @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu Support W @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu Support W @BBL A1M", + "sub_path": "filament/Bambu Support W @BBL A1M.json" + }, + { + "name": "Bambu Support W @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu Support W @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu Support W @BBL A2L", + "sub_path": "filament/Bambu Support W @BBL A2L.json" + }, + { + "name": "Bambu Support W @BBL A2L 0.2 nozzle", + "sub_path": "filament/Bambu Support W @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Bambu Support W @BBL H2C", + "sub_path": "filament/Bambu Support W @BBL H2C.json" + }, + { + "name": "Bambu Support W @BBL H2C 0.2 nozzle", + "sub_path": "filament/Bambu Support W @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Bambu Support W @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu Support W @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu Support W @BBL H2D", + "sub_path": "filament/Bambu Support W @BBL H2D.json" + }, + { + "name": "Bambu Support W @BBL H2D 0.2 nozzle", + "sub_path": "filament/Bambu Support W @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Bambu Support W @BBL H2DP", + "sub_path": "filament/Bambu Support W @BBL H2DP.json" + }, + { + "name": "Bambu Support W @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Bambu Support W @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Bambu Support W @BBL H2S", + "sub_path": "filament/Bambu Support W @BBL H2S.json" + }, + { + "name": "Bambu Support W @BBL H2S 0.2 nozzle", + "sub_path": "filament/Bambu Support W @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Bambu Support W @BBL P1P", + "sub_path": "filament/P1P/Bambu Support W @BBL P1P.json" + }, + { + "name": "Bambu Support W @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/Bambu Support W @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu Support W @BBL P2S", + "sub_path": "filament/Bambu Support W @BBL P2S.json" + }, + { + "name": "Bambu Support W @BBL P2S 0.2 nozzle", + "sub_path": "filament/Bambu Support W @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Bambu Support W @BBL X1", + "sub_path": "filament/Bambu Support W @BBL X1.json" + }, + { + "name": "Bambu Support W @BBL X1C", + "sub_path": "filament/Bambu Support W @BBL X1C.json" + }, + { + "name": "Bambu Support W @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu Support W @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu Support W @BBL X2D", + "sub_path": "filament/Bambu Support W @BBL X2D.json" + }, + { + "name": "Bambu Support W @BBL X2D 0.2 nozzle", + "sub_path": "filament/Bambu Support W @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Bambu Support W @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu Support W @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PLA", + "sub_path": "filament/Generic PLA.json" + }, + { + "name": "Generic PLA @0.2 nozzle", + "sub_path": "filament/Generic PLA @0.2 nozzle.json" + }, + { + "name": "Generic PLA @BBL A1", + "sub_path": "filament/Generic PLA @BBL A1.json" + }, + { + "name": "Generic PLA @BBL A1 0.2 nozzle", + "sub_path": "filament/Generic PLA @BBL A1 0.2 nozzle.json" + }, + { + "name": "Generic PLA @BBL A1M", + "sub_path": "filament/Generic PLA @BBL A1M.json" + }, + { + "name": "Generic PLA @BBL A1M 0.2 nozzle", + "sub_path": "filament/Generic PLA @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Generic PLA @BBL A2L", + "sub_path": "filament/Generic PLA @BBL A2L.json" + }, + { + "name": "Generic PLA @BBL A2L 0.2 nozzle", + "sub_path": "filament/Generic PLA @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Generic PLA @BBL H2C", + "sub_path": "filament/Generic PLA @BBL H2C.json" + }, + { + "name": "Generic PLA @BBL H2C 0.2 nozzle", + "sub_path": "filament/Generic PLA @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Generic PLA @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PLA @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PLA @BBL H2D", + "sub_path": "filament/Generic PLA @BBL H2D.json" + }, + { + "name": "Generic PLA @BBL H2D 0.2 nozzle", + "sub_path": "filament/Generic PLA @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Generic PLA @BBL H2DP", + "sub_path": "filament/Generic PLA @BBL H2DP.json" + }, + { + "name": "Generic PLA @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Generic PLA @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Generic PLA @BBL H2S", + "sub_path": "filament/Generic PLA @BBL H2S.json" + }, + { + "name": "Generic PLA @BBL H2S 0.2 nozzle", + "sub_path": "filament/Generic PLA @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Generic PLA @BBL P1P", + "sub_path": "filament/P1P/Generic PLA @BBL P1P.json" + }, + { + "name": "Generic PLA @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/Generic PLA @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Generic PLA @BBL P2S", + "sub_path": "filament/Generic PLA @BBL P2S.json" + }, + { + "name": "Generic PLA @BBL P2S 0.2 nozzle", + "sub_path": "filament/Generic PLA @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Generic PLA @BBL X2D", + "sub_path": "filament/Generic PLA @BBL X2D.json" + }, + { + "name": "Generic PLA @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic PLA @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Generic PLA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PLA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PLA High Speed @BBL A1", + "sub_path": "filament/Generic PLA High Speed @BBL A1.json" + }, + { + "name": "Generic PLA High Speed @BBL A1 0.2 nozzle", + "sub_path": "filament/Generic PLA High Speed @BBL A1 0.2 nozzle.json" + }, + { + "name": "Generic PLA High Speed @BBL A1M", + "sub_path": "filament/Generic PLA High Speed @BBL A1M.json" + }, + { + "name": "Generic PLA High Speed @BBL A2L", + "sub_path": "filament/Generic PLA High Speed @BBL A2L.json" + }, + { + "name": "Generic PLA High Speed @BBL A2L 0.2 nozzle", + "sub_path": "filament/Generic PLA High Speed @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Generic PLA High Speed @BBL H2C", + "sub_path": "filament/Generic PLA High Speed @BBL H2C.json" + }, + { + "name": "Generic PLA High Speed @BBL H2C 0.2 nozzle", + "sub_path": "filament/Generic PLA High Speed @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Generic PLA High Speed @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PLA High Speed @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PLA High Speed @BBL H2D", + "sub_path": "filament/Generic PLA High Speed @BBL H2D.json" + }, + { + "name": "Generic PLA High Speed @BBL H2D 0.2 nozzle", + "sub_path": "filament/Generic PLA High Speed @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Generic PLA High Speed @BBL H2DP", + "sub_path": "filament/Generic PLA High Speed @BBL H2DP.json" + }, + { + "name": "Generic PLA High Speed @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Generic PLA High Speed @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Generic PLA High Speed @BBL H2S", + "sub_path": "filament/Generic PLA High Speed @BBL H2S.json" + }, + { + "name": "Generic PLA High Speed @BBL H2S 0.2 nozzle", + "sub_path": "filament/Generic PLA High Speed @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Generic PLA High Speed @BBL P1P", + "sub_path": "filament/Generic PLA High Speed @BBL P1P.json" + }, + { + "name": "Generic PLA High Speed @BBL P2S", + "sub_path": "filament/Generic PLA High Speed @BBL P2S.json" + }, + { + "name": "Generic PLA High Speed @BBL P2S 0.2 nozzle", + "sub_path": "filament/Generic PLA High Speed @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Generic PLA High Speed @BBL X1C", + "sub_path": "filament/Generic PLA High Speed @BBL X1C.json" + }, + { + "name": "Generic PLA High Speed @BBL X2D", + "sub_path": "filament/Generic PLA High Speed @BBL X2D.json" + }, + { + "name": "Generic PLA High Speed @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PLA High Speed @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PLA Silk", + "sub_path": "filament/Generic PLA Silk.json" + }, + { + "name": "Generic PLA Silk @BBL A1", + "sub_path": "filament/Generic PLA Silk @BBL A1.json" + }, + { + "name": "Generic PLA Silk @BBL A1M", + "sub_path": "filament/Generic PLA Silk @BBL A1M.json" + }, + { + "name": "Generic PLA Silk @BBL A2L", + "sub_path": "filament/Generic PLA Silk @BBL A2L.json" + }, + { + "name": "Generic PLA Silk @BBL H2C", + "sub_path": "filament/Generic PLA Silk @BBL H2C.json" + }, + { + "name": "Generic PLA Silk @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PLA Silk @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PLA Silk @BBL H2D", + "sub_path": "filament/Generic PLA Silk @BBL H2D.json" + }, + { + "name": "Generic PLA Silk @BBL H2DP", + "sub_path": "filament/Generic PLA Silk @BBL H2DP.json" + }, + { + "name": "Generic PLA Silk @BBL H2S", + "sub_path": "filament/Generic PLA Silk @BBL H2S.json" + }, + { + "name": "Generic PLA Silk @BBL P1P", + "sub_path": "filament/P1P/Generic PLA Silk @BBL P1P.json" + }, + { + "name": "Generic PLA Silk @BBL P2S", + "sub_path": "filament/Generic PLA Silk @BBL P2S.json" + }, + { + "name": "Generic PLA Silk @BBL X2D", + "sub_path": "filament/Generic PLA Silk @BBL X2D.json" + }, + { + "name": "Generic PLA Silk @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PLA Silk @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PLA-CF", + "sub_path": "filament/Generic PLA-CF.json" + }, + { + "name": "Generic PLA-CF @BBL A1", + "sub_path": "filament/Generic PLA-CF @BBL A1.json" + }, + { + "name": "Generic PLA-CF @BBL A1M", + "sub_path": "filament/Generic PLA-CF @BBL A1M.json" + }, + { + "name": "Generic PLA-CF @BBL A2L", + "sub_path": "filament/Generic PLA-CF @BBL A2L.json" + }, + { + "name": "Generic PLA-CF @BBL H2C", + "sub_path": "filament/Generic PLA-CF @BBL H2C.json" + }, + { + "name": "Generic PLA-CF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PLA-CF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PLA-CF @BBL H2D", + "sub_path": "filament/Generic PLA-CF @BBL H2D.json" + }, + { + "name": "Generic PLA-CF @BBL H2DP", + "sub_path": "filament/Generic PLA-CF @BBL H2DP.json" + }, + { + "name": "Generic PLA-CF @BBL H2S", + "sub_path": "filament/Generic PLA-CF @BBL H2S.json" + }, + { + "name": "Generic PLA-CF @BBL P1P", + "sub_path": "filament/P1P/Generic PLA-CF @BBL P1P.json" + }, + { + "name": "Generic PLA-CF @BBL P2S", + "sub_path": "filament/Generic PLA-CF @BBL P2S.json" + }, + { + "name": "Generic PLA-CF @BBL X2D", + "sub_path": "filament/Generic PLA-CF @BBL X2D.json" + }, + { + "name": "Generic PLA-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PLA-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Overture Matte PLA @BBL A1", + "sub_path": "filament/Overture Matte PLA @BBL A1.json" + }, + { + "name": "Overture Matte PLA @BBL A1 0.2 nozzle", + "sub_path": "filament/Overture Matte PLA @BBL A1 0.2 nozzle.json" + }, + { + "name": "Overture Matte PLA @BBL A1M", + "sub_path": "filament/Overture Matte PLA @BBL A1M.json" + }, + { + "name": "Overture Matte PLA @BBL H2D", + "sub_path": "filament/Overture Matte PLA @BBL H2D.json" + }, + { + "name": "Overture Matte PLA @BBL H2D 0.2 nozzle", + "sub_path": "filament/Overture Matte PLA @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Overture Matte PLA @BBL H2DP", + "sub_path": "filament/Overture Matte PLA @BBL H2DP.json" + }, + { + "name": "Overture Matte PLA @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Overture Matte PLA @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Overture Matte PLA @BBL H2S", + "sub_path": "filament/Overture Matte PLA @BBL H2S.json" + }, + { + "name": "Overture Matte PLA @BBL H2S 0.2 nozzle", + "sub_path": "filament/Overture Matte PLA @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Overture Matte PLA @BBL P1P", + "sub_path": "filament/Overture Matte PLA @BBL P1P.json" + }, + { + "name": "Overture Matte PLA @BBL X1", + "sub_path": "filament/Overture Matte PLA @BBL X1.json" + }, + { + "name": "Overture Matte PLA @BBL X1C", + "sub_path": "filament/Overture Matte PLA @BBL X1C.json" + }, + { + "name": "Overture PLA @BBL A1", + "sub_path": "filament/Overture PLA @BBL A1.json" + }, + { + "name": "Overture PLA @BBL A1 0.2 nozzle", + "sub_path": "filament/Overture PLA @BBL A1 0.2 nozzle.json" + }, + { + "name": "Overture PLA @BBL A1M", + "sub_path": "filament/Overture PLA @BBL A1M.json" + }, + { + "name": "Overture PLA @BBL H2D", + "sub_path": "filament/Overture PLA @BBL H2D.json" + }, + { + "name": "Overture PLA @BBL H2D 0.2 nozzle", + "sub_path": "filament/Overture PLA @BBL H2D 0.2 nozzle.json" + }, + { + "name": "Overture PLA @BBL H2DP", + "sub_path": "filament/Overture PLA @BBL H2DP.json" + }, + { + "name": "Overture PLA @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Overture PLA @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Overture PLA @BBL H2S", + "sub_path": "filament/Overture PLA @BBL H2S.json" + }, + { + "name": "Overture PLA @BBL H2S 0.2 nozzle", + "sub_path": "filament/Overture PLA @BBL H2S 0.2 nozzle.json" + }, + { + "name": "Overture PLA @BBL P1P", + "sub_path": "filament/Overture PLA @BBL P1P.json" + }, + { + "name": "Overture PLA @BBL X1", + "sub_path": "filament/Overture PLA @BBL X1.json" + }, + { + "name": "Overture PLA @BBL X1C", + "sub_path": "filament/Overture PLA @BBL X1C.json" + }, + { + "name": "PolyLite PLA @BBL A1", + "sub_path": "filament/PolyLite PLA @BBL A1.json" + }, + { + "name": "PolyLite PLA @BBL A1 0.2 nozzle", + "sub_path": "filament/PolyLite PLA @BBL A1 0.2 nozzle.json" + }, + { + "name": "PolyLite PLA @BBL A1M", + "sub_path": "filament/PolyLite PLA @BBL A1M.json" + }, + { + "name": "PolyLite PLA @BBL A1M 0.2 nozzle", + "sub_path": "filament/PolyLite PLA @BBL A1M 0.2 nozzle.json" + }, + { + "name": "PolyLite PLA @BBL H2D", + "sub_path": "filament/PolyLite PLA @BBL H2D.json" + }, + { + "name": "PolyLite PLA @BBL H2D 0.2 nozzle", + "sub_path": "filament/PolyLite PLA @BBL H2D 0.2 nozzle.json" + }, + { + "name": "PolyLite PLA @BBL H2DP", + "sub_path": "filament/PolyLite PLA @BBL H2DP.json" + }, + { + "name": "PolyLite PLA @BBL H2DP 0.2 nozzle", + "sub_path": "filament/PolyLite PLA @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "PolyLite PLA @BBL H2S", + "sub_path": "filament/PolyLite PLA @BBL H2S.json" + }, + { + "name": "PolyLite PLA @BBL H2S 0.2 nozzle", + "sub_path": "filament/PolyLite PLA @BBL H2S 0.2 nozzle.json" + }, + { + "name": "PolyLite PLA @BBL P1P", + "sub_path": "filament/P1P/PolyLite PLA @BBL P1P.json" + }, + { + "name": "PolyLite PLA @BBL X1", + "sub_path": "filament/PolyLite PLA @BBL X1.json" + }, + { + "name": "PolyLite PLA @BBL X1C", + "sub_path": "filament/PolyLite PLA @BBL X1C.json" + }, + { + "name": "PolyTerra PLA @BBL A1", + "sub_path": "filament/PolyTerra PLA @BBL A1.json" + }, + { + "name": "PolyTerra PLA @BBL A1 0.2 nozzle", + "sub_path": "filament/PolyTerra PLA @BBL A1 0.2 nozzle.json" + }, + { + "name": "PolyTerra PLA @BBL A1M", + "sub_path": "filament/PolyTerra PLA @BBL A1M.json" + }, + { + "name": "PolyTerra PLA @BBL A1M 0.2 nozzle", + "sub_path": "filament/PolyTerra PLA @BBL A1M 0.2 nozzle.json" + }, + { + "name": "PolyTerra PLA @BBL H2D", + "sub_path": "filament/PolyTerra PLA @BBL H2D.json" + }, + { + "name": "PolyTerra PLA @BBL H2D 0.2 nozzle", + "sub_path": "filament/PolyTerra PLA @BBL H2D 0.2 nozzle.json" + }, + { + "name": "PolyTerra PLA @BBL H2DP", + "sub_path": "filament/PolyTerra PLA @BBL H2DP.json" + }, + { + "name": "PolyTerra PLA @BBL H2DP 0.2 nozzle", + "sub_path": "filament/PolyTerra PLA @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "PolyTerra PLA @BBL H2S", + "sub_path": "filament/PolyTerra PLA @BBL H2S.json" + }, + { + "name": "PolyTerra PLA @BBL H2S 0.2 nozzle", + "sub_path": "filament/PolyTerra PLA @BBL H2S 0.2 nozzle.json" + }, + { + "name": "PolyTerra PLA @BBL P1P", + "sub_path": "filament/P1P/PolyTerra PLA @BBL P1P.json" + }, + { + "name": "PolyTerra PLA @BBL X1", + "sub_path": "filament/PolyTerra PLA @BBL X1.json" + }, + { + "name": "PolyTerra PLA @BBL X1C", + "sub_path": "filament/PolyTerra PLA @BBL X1C.json" + }, + { + "name": "SUNLU PLA Marble @BBL A1", + "sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL A1.json" + }, + { + "name": "SUNLU PLA Marble @BBL A1M", + "sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL A1M.json" + }, + { + "name": "SUNLU PLA Marble @BBL P1P", + "sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL P1P.json" + }, + { + "name": "SUNLU PLA Marble @BBL X1", + "sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL X1.json" + }, + { + "name": "SUNLU PLA Marble @BBL X1C", + "sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL X1C.json" + }, + { + "name": "SUNLU PLA Matte @BBL A1", + "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL A1.json" + }, + { + "name": "SUNLU PLA Matte @BBL A1 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL A1 0.2 nozzle.json" + }, + { + "name": "SUNLU PLA Matte @BBL A1M", + "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL A1M.json" + }, + { + "name": "SUNLU PLA Matte @BBL A1M 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL A1M 0.2 nozzle.json" + }, + { + "name": "SUNLU PLA Matte @BBL P1P", + "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL P1P.json" + }, + { + "name": "SUNLU PLA Matte @BBL P1P 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL P1P 0.2 nozzle.json" + }, + { + "name": "SUNLU PLA Matte @BBL X1", + "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL X1.json" + }, + { + "name": "SUNLU PLA Matte @BBL X1C", + "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL X1C.json" + }, + { + "name": "SUNLU PLA Matte @BBL X1C 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL X1C 0.2 nozzle.json" + }, + { + "name": "SUNLU PLA+ 2.0 @BBL A1", + "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1.json" + }, + { + "name": "SUNLU PLA+ 2.0 @BBL A1 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1 0.2 nozzle.json" + }, + { + "name": "SUNLU PLA+ 2.0 @BBL A1M", + "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1M.json" + }, + { + "name": "SUNLU PLA+ 2.0 @BBL A1M 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1M 0.2 nozzle.json" + }, + { + "name": "SUNLU PLA+ 2.0 @BBL P1P", + "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL P1P.json" + }, + { + "name": "SUNLU PLA+ 2.0 @BBL P1P 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL P1P 0.2 nozzle.json" + }, + { + "name": "SUNLU PLA+ 2.0 @BBL X1", + "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1.json" + }, + { + "name": "SUNLU PLA+ 2.0 @BBL X1C", + "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1C.json" + }, + { + "name": "SUNLU PLA+ 2.0 @BBL X1C 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1C 0.2 nozzle.json" + }, + { + "name": "SUNLU PLA+ @BBL A1", + "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL A1.json" + }, + { + "name": "SUNLU PLA+ @BBL A1 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL A1 0.2 nozzle.json" + }, + { + "name": "SUNLU PLA+ @BBL A1M", + "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL A1M.json" + }, + { + "name": "SUNLU PLA+ @BBL A1M 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL A1M 0.2 nozzle.json" + }, + { + "name": "SUNLU PLA+ @BBL P1P", + "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL P1P.json" + }, + { + "name": "SUNLU PLA+ @BBL P1P 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL P1P 0.2 nozzle.json" + }, + { + "name": "SUNLU PLA+ @BBL X1", + "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL X1.json" + }, + { + "name": "SUNLU PLA+ @BBL X1C", + "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL X1C.json" + }, + { + "name": "SUNLU PLA+ @BBL X1C 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL X1C 0.2 nozzle.json" + }, + { + "name": "SUNLU Silk PLA+ @BBL A1", + "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL A1.json" + }, + { + "name": "SUNLU Silk PLA+ @BBL A1 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL A1 0.2 nozzle.json" + }, + { + "name": "SUNLU Silk PLA+ @BBL A1M", + "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL A1M.json" + }, + { + "name": "SUNLU Silk PLA+ @BBL A1M 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL A1M 0.2 nozzle.json" + }, + { + "name": "SUNLU Silk PLA+ @BBL P1P", + "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL P1P.json" + }, + { + "name": "SUNLU Silk PLA+ @BBL P1P 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL P1P 0.2 nozzle.json" + }, + { + "name": "SUNLU Silk PLA+ @BBL X1", + "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL X1.json" + }, + { + "name": "SUNLU Silk PLA+ @BBL X1C", + "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL X1C.json" + }, + { + "name": "SUNLU Silk PLA+ @BBL X1C 0.2 nozzle", + "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL X1C 0.2 nozzle.json" + }, + { + "name": "SUNLU Wood PLA @BBL A1", + "sub_path": "filament/SUNLU/SUNLU Wood PLA @BBL A1.json" + }, + { + "name": "SUNLU Wood PLA @BBL A1M", + "sub_path": "filament/SUNLU/SUNLU Wood PLA @BBL A1M.json" + }, + { + "name": "SUNLU Wood PLA @BBL P1P", + "sub_path": "filament/SUNLU/SUNLU Wood PLA @BBL P1P.json" + }, + { + "name": "SUNLU Wood PLA @BBL X1", + "sub_path": "filament/SUNLU/SUNLU Wood PLA @BBL X1.json" + }, + { + "name": "SUNLU Wood PLA @BBL X1C", + "sub_path": "filament/SUNLU/SUNLU Wood PLA @BBL X1C.json" + }, + { + "name": "eSUN PLA+ @BBL A1", + "sub_path": "filament/eSUN PLA+ @BBL A1.json" + }, + { + "name": "eSUN PLA+ @BBL A1 0.2 nozzle", + "sub_path": "filament/eSUN PLA+ @BBL A1 0.2 nozzle.json" + }, + { + "name": "eSUN PLA+ @BBL A1M", + "sub_path": "filament/eSUN PLA+ @BBL A1M.json" + }, + { + "name": "eSUN PLA+ @BBL A1M 0.2 nozzle", + "sub_path": "filament/eSUN PLA+ @BBL A1M 0.2 nozzle.json" + }, + { + "name": "eSUN PLA+ @BBL H2D", + "sub_path": "filament/eSUN PLA+ @BBL H2D.json" + }, + { + "name": "eSUN PLA+ @BBL H2D 0.2 nozzle", + "sub_path": "filament/eSUN PLA+ @BBL H2D 0.2 nozzle.json" + }, + { + "name": "eSUN PLA+ @BBL H2DP", + "sub_path": "filament/eSUN PLA+ @BBL H2DP.json" + }, + { + "name": "eSUN PLA+ @BBL H2DP 0.2 nozzle", + "sub_path": "filament/eSUN PLA+ @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "eSUN PLA+ @BBL H2S", + "sub_path": "filament/eSUN PLA+ @BBL H2S.json" + }, + { + "name": "eSUN PLA+ @BBL H2S 0.2 nozzle", + "sub_path": "filament/eSUN PLA+ @BBL H2S 0.2 nozzle.json" + }, + { + "name": "eSUN PLA+ @BBL P1P", + "sub_path": "filament/P1P/eSUN PLA+ @BBL P1P.json" + }, + { + "name": "eSUN PLA+ @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/eSUN PLA+ @BBL P1P 0.2 nozzle.json" + }, + { + "name": "eSUN PLA+ @BBL X1", + "sub_path": "filament/eSUN PLA+ @BBL X1.json" + }, + { + "name": "eSUN PLA+ @BBL X1C", + "sub_path": "filament/eSUN PLA+ @BBL X1C.json" + }, + { + "name": "eSUN PLA+ @BBL X1C 0.2 nozzle", + "sub_path": "filament/eSUN PLA+ @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Generic PP @BBL A1", + "sub_path": "filament/Generic PP @BBL A1.json" + }, + { + "name": "Generic PP @BBL A1M", + "sub_path": "filament/Generic PP @BBL A1M.json" + }, + { + "name": "Generic PP @BBL A2L", + "sub_path": "filament/Generic PP @BBL A2L.json" + }, + { + "name": "Generic PP @BBL H2C", + "sub_path": "filament/Generic PP @BBL H2C.json" + }, + { + "name": "Generic PP @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PP @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PP @BBL H2D", + "sub_path": "filament/Generic PP @BBL H2D.json" + }, + { + "name": "Generic PP @BBL H2DP", + "sub_path": "filament/Generic PP @BBL H2DP.json" + }, + { + "name": "Generic PP @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic PP @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic PP @BBL P2S", + "sub_path": "filament/Generic PP @BBL P2S.json" + }, + { + "name": "Generic PP @BBL X1C", + "sub_path": "filament/Generic PP @BBL X1C.json" + }, + { + "name": "Generic PP @BBL X2D", + "sub_path": "filament/Generic PP @BBL X2D.json" + }, + { + "name": "Generic PP @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PP @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PP-CF @BBL A1", + "sub_path": "filament/Generic PP-CF @BBL A1.json" + }, + { + "name": "Generic PP-CF @BBL H2C", + "sub_path": "filament/Generic PP-CF @BBL H2C.json" + }, + { + "name": "Generic PP-CF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PP-CF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PP-CF @BBL H2D", + "sub_path": "filament/Generic PP-CF @BBL H2D.json" + }, + { + "name": "Generic PP-CF @BBL H2DP", + "sub_path": "filament/Generic PP-CF @BBL H2DP.json" + }, + { + "name": "Generic PP-CF @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic PP-CF @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic PP-CF @BBL P2S", + "sub_path": "filament/Generic PP-CF @BBL P2S.json" + }, + { + "name": "Generic PP-CF @BBL X1C", + "sub_path": "filament/Generic PP-CF @BBL X1C.json" + }, + { + "name": "Generic PP-CF @BBL X2D", + "sub_path": "filament/Generic PP-CF @BBL X2D.json" + }, + { + "name": "Generic PP-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PP-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PP-GF @BBL A1", + "sub_path": "filament/Generic PP-GF @BBL A1.json" + }, + { + "name": "Generic PP-GF @BBL H2C", + "sub_path": "filament/Generic PP-GF @BBL H2C.json" + }, + { + "name": "Generic PP-GF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PP-GF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PP-GF @BBL H2D", + "sub_path": "filament/Generic PP-GF @BBL H2D.json" + }, + { + "name": "Generic PP-GF @BBL H2DP", + "sub_path": "filament/Generic PP-GF @BBL H2DP.json" + }, + { + "name": "Generic PP-GF @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic PP-GF @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic PP-GF @BBL P2S", + "sub_path": "filament/Generic PP-GF @BBL P2S.json" + }, + { + "name": "Generic PP-GF @BBL X1C", + "sub_path": "filament/Generic PP-GF @BBL X1C.json" + }, + { + "name": "Generic PP-GF @BBL X2D", + "sub_path": "filament/Generic PP-GF @BBL X2D.json" + }, + { + "name": "Generic PP-GF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PP-GF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PPA-CF @BBL H2C", + "sub_path": "filament/Bambu PPA-CF @BBL H2C.json" + }, + { + "name": "Bambu PPA-CF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PPA-CF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PPA-CF @BBL H2D", + "sub_path": "filament/Bambu PPA-CF @BBL H2D.json" + }, + { + "name": "Bambu PPA-CF @BBL H2DP", + "sub_path": "filament/Bambu PPA-CF @BBL H2DP.json" + }, + { + "name": "Bambu PPA-CF @BBL H2S", + "sub_path": "filament/Bambu PPA-CF @BBL H2S.json" + }, + { + "name": "Bambu PPA-CF @BBL P2S", + "sub_path": "filament/Bambu PPA-CF @BBL P2S.json" + }, + { + "name": "Bambu PPA-CF @BBL X1C", + "sub_path": "filament/Bambu PPA-CF @BBL X1C.json" + }, + { + "name": "Bambu PPA-CF @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu PPA-CF @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu PPA-CF @BBL X1E", + "sub_path": "filament/Bambu PPA-CF @BBL X1E.json" + }, + { + "name": "Bambu PPA-CF @BBL X2D", + "sub_path": "filament/Bambu PPA-CF @BBL X2D.json" + }, + { + "name": "Bambu PPA-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PPA-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PPA-CF @BBL H2C", + "sub_path": "filament/Generic PPA-CF @BBL H2C.json" + }, + { + "name": "Generic PPA-CF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PPA-CF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PPA-CF @BBL H2D", + "sub_path": "filament/Generic PPA-CF @BBL H2D.json" + }, + { + "name": "Generic PPA-CF @BBL H2DP", + "sub_path": "filament/Generic PPA-CF @BBL H2DP.json" + }, + { + "name": "Generic PPA-CF @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic PPA-CF @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic PPA-CF @BBL P2S", + "sub_path": "filament/Generic PPA-CF @BBL P2S.json" + }, + { + "name": "Generic PPA-CF @BBL X1C", + "sub_path": "filament/Generic PPA-CF @BBL X1C.json" + }, + { + "name": "Generic PPA-CF @BBL X1E", + "sub_path": "filament/Generic PPA-CF @BBL X1E.json" + }, + { + "name": "Generic PPA-CF @BBL X2D", + "sub_path": "filament/Generic PPA-CF @BBL X2D.json" + }, + { + "name": "Generic PPA-CF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PPA-CF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic PPA-GF @BBL H2C", + "sub_path": "filament/Generic PPA-GF @BBL H2C.json" + }, + { + "name": "Generic PPA-GF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PPA-GF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PPA-GF @BBL H2D", + "sub_path": "filament/Generic PPA-GF @BBL H2D.json" + }, + { + "name": "Generic PPA-GF @BBL H2DP", + "sub_path": "filament/Generic PPA-GF @BBL H2DP.json" + }, + { + "name": "Generic PPA-GF @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic PPA-GF @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic PPA-GF @BBL P2S", + "sub_path": "filament/Generic PPA-GF @BBL P2S.json" + }, + { + "name": "Generic PPA-GF @BBL X1C", + "sub_path": "filament/Generic PPA-GF @BBL X1C.json" + }, + { + "name": "Generic PPA-GF @BBL X1E", + "sub_path": "filament/Generic PPA-GF @BBL X1E.json" + }, + { + "name": "Generic PPA-GF @BBL X2D", + "sub_path": "filament/Generic PPA-GF @BBL X2D.json" + }, + { + "name": "Generic PPA-GF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PPA-GF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PPS-CF @BBL H2C", + "sub_path": "filament/Bambu PPS-CF @BBL H2C.json" + }, + { + "name": "Bambu PPS-CF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PPS-CF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PPS-CF @BBL H2D", + "sub_path": "filament/Bambu PPS-CF @BBL H2D.json" + }, + { + "name": "Bambu PPS-CF @BBL H2DP", + "sub_path": "filament/Bambu PPS-CF @BBL H2DP.json" + }, + { + "name": "Bambu PPS-CF @BBL H2S", + "sub_path": "filament/Bambu PPS-CF @BBL H2S.json" + }, + { + "name": "Bambu PPS-CF @BBL X1E", + "sub_path": "filament/Bambu PPS-CF @BBL X1E.json" + }, + { + "name": "Generic PPS @BBL H2C", + "sub_path": "filament/Generic PPS @BBL H2C.json" + }, + { + "name": "Generic PPS @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PPS @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PPS @BBL H2D", + "sub_path": "filament/Generic PPS @BBL H2D.json" + }, + { + "name": "Generic PPS @BBL H2DP", + "sub_path": "filament/Generic PPS @BBL H2DP.json" + }, + { + "name": "Generic PPS @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic PPS @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic PPS @BBL X1E", + "sub_path": "filament/Generic PPS @BBL X1E.json" + }, + { + "name": "Generic PPS-CF @BBL H2C", + "sub_path": "filament/Generic PPS-CF @BBL H2C.json" + }, + { + "name": "Generic PPS-CF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PPS-CF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PPS-CF @BBL H2D", + "sub_path": "filament/Generic PPS-CF @BBL H2D.json" + }, + { + "name": "Generic PPS-CF @BBL H2DP", + "sub_path": "filament/Generic PPS-CF @BBL H2DP.json" + }, + { + "name": "Generic PPS-CF @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic PPS-CF @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic PPS-CF @BBL X1E", + "sub_path": "filament/Generic PPS-CF @BBL X1E.json" + }, + { + "name": "Bambu PVA @BBL A1", + "sub_path": "filament/Bambu PVA @BBL A1.json" + }, + { + "name": "Bambu PVA @BBL A1 0.2 nozzle", + "sub_path": "filament/Bambu PVA @BBL A1 0.2 nozzle.json" + }, + { + "name": "Bambu PVA @BBL A1M", + "sub_path": "filament/Bambu PVA @BBL A1M.json" + }, + { + "name": "Bambu PVA @BBL A1M 0.2 nozzle", + "sub_path": "filament/Bambu PVA @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Bambu PVA @BBL A2L", + "sub_path": "filament/Bambu PVA @BBL A2L.json" + }, + { + "name": "Bambu PVA @BBL H2C", + "sub_path": "filament/Bambu PVA @BBL H2C.json" + }, + { + "name": "Bambu PVA @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu PVA @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu PVA @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu PVA @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu PVA @BBL H2D", + "sub_path": "filament/Bambu PVA @BBL H2D.json" + }, + { + "name": "Bambu PVA @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu PVA @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu PVA @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu PVA @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu PVA @BBL H2DP", + "sub_path": "filament/Bambu PVA @BBL H2DP.json" + }, + { + "name": "Bambu PVA @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu PVA @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu PVA @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu PVA @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu PVA @BBL H2S", + "sub_path": "filament/Bambu PVA @BBL H2S.json" + }, + { + "name": "Bambu PVA @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu PVA @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu PVA @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu PVA @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu PVA @BBL P1P", + "sub_path": "filament/Bambu PVA @BBL P1P.json" + }, + { + "name": "Bambu PVA @BBL P1P 0.2 nozzle", + "sub_path": "filament/Bambu PVA @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu PVA @BBL P2S", + "sub_path": "filament/Bambu PVA @BBL P2S.json" + }, + { + "name": "Bambu PVA @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu PVA @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu PVA @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu PVA @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu PVA @BBL X1C", + "sub_path": "filament/Bambu PVA @BBL X1C.json" + }, + { + "name": "Bambu PVA @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PVA @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PVA @BBL X2D", + "sub_path": "filament/Bambu PVA @BBL X2D.json" + }, + { + "name": "Bambu PVA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu PVA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu PVA @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu PVA @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Generic PVA", + "sub_path": "filament/Generic PVA.json" + }, + { + "name": "Generic PVA @0.2 nozzle", + "sub_path": "filament/Generic PVA @0.2 nozzle.json" + }, + { + "name": "Generic PVA @BBL A1", + "sub_path": "filament/Generic PVA @BBL A1.json" + }, + { + "name": "Generic PVA @BBL A1 0.2 nozzle", + "sub_path": "filament/Generic PVA @BBL A1 0.2 nozzle.json" + }, + { + "name": "Generic PVA @BBL A1M", + "sub_path": "filament/Generic PVA @BBL A1M.json" + }, + { + "name": "Generic PVA @BBL A1M 0.2 nozzle", + "sub_path": "filament/Generic PVA @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Generic PVA @BBL A2L", + "sub_path": "filament/Generic PVA @BBL A2L.json" + }, + { + "name": "Generic PVA @BBL A2L 0.2 nozzle", + "sub_path": "filament/Generic PVA @BBL A2L 0.2 nozzle.json" + }, + { + "name": "Generic PVA @BBL H2C", + "sub_path": "filament/Generic PVA @BBL H2C.json" + }, + { + "name": "Generic PVA @BBL H2C 0.2 nozzle", + "sub_path": "filament/Generic PVA @BBL H2C 0.2 nozzle.json" + }, + { + "name": "Generic PVA @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PVA @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PVA @BBL H2D", + "sub_path": "filament/Generic PVA @BBL H2D.json" + }, + { + "name": "Generic PVA @BBL H2DP", + "sub_path": "filament/Generic PVA @BBL H2DP.json" + }, + { + "name": "Generic PVA @BBL H2S 0.4 nozzle", + "sub_path": "filament/Generic PVA @BBL H2S 0.4 nozzle.json" + }, + { + "name": "Generic PVA @BBL P1P", + "sub_path": "filament/P1P/Generic PVA @BBL P1P.json" + }, + { + "name": "Generic PVA @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/Generic PVA @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Generic PVA @BBL P2S", + "sub_path": "filament/Generic PVA @BBL P2S.json" + }, + { + "name": "Generic PVA @BBL P2S 0.2 nozzle", + "sub_path": "filament/Generic PVA @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Generic PVA @BBL X2D", + "sub_path": "filament/Generic PVA @BBL X2D.json" + }, + { + "name": "Generic PVA @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic PVA @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Generic PVA @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic PVA @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu TPU 85A @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu TPU 85A @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu TPU 85A @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu TPU 85A @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 85A @BBL H2C", + "sub_path": "filament/Bambu TPU 85A @BBL H2C.json" + }, + { + "name": "Bambu TPU 85A @BBL H2D", + "sub_path": "filament/Bambu TPU 85A @BBL H2D.json" + }, + { + "name": "Bambu TPU 85A @BBL H2D 0.4 nozzle", + "sub_path": "filament/Bambu TPU 85A @BBL H2D 0.4 nozzle.json" + }, + { + "name": "Bambu TPU 85A @BBL H2DP", + "sub_path": "filament/Bambu TPU 85A @BBL H2DP.json" + }, + { + "name": "Bambu TPU 85A @BBL H2DP 0.4 nozzle", + "sub_path": "filament/Bambu TPU 85A @BBL H2DP 0.4 nozzle.json" + }, + { + "name": "Bambu TPU 85A @BBL H2S", + "sub_path": "filament/Bambu TPU 85A @BBL H2S.json" + }, + { + "name": "Bambu TPU 85A @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu TPU 85A @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu TPU 85A @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu TPU 85A @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 85A @BBL P1P", + "sub_path": "filament/Bambu TPU 85A @BBL P1P.json" + }, + { + "name": "Bambu TPU 85A @BBL P2S", + "sub_path": "filament/Bambu TPU 85A @BBL P2S.json" + }, + { + "name": "Bambu TPU 85A @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu TPU 85A @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 85A @BBL X1C", + "sub_path": "filament/Bambu TPU 85A @BBL X1C.json" + }, + { + "name": "Bambu TPU 85A @BBL X2D", + "sub_path": "filament/Bambu TPU 85A @BBL X2D.json" + }, + { + "name": "Bambu TPU 85A @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu TPU 85A @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 90A @BBL A1", + "sub_path": "filament/Bambu TPU 90A @BBL A1.json" + }, + { + "name": "Bambu TPU 90A @BBL A1M", + "sub_path": "filament/Bambu TPU 90A @BBL A1M.json" + }, + { + "name": "Bambu TPU 90A @BBL A2L", + "sub_path": "filament/Bambu TPU 90A @BBL A2L.json" + }, + { + "name": "Bambu TPU 90A @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu TPU 90A @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu TPU 90A @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu TPU 90A @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 90A @BBL H2C", + "sub_path": "filament/Bambu TPU 90A @BBL H2C.json" + }, + { + "name": "Bambu TPU 90A @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu TPU 90A @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu TPU 90A @BBL H2D", + "sub_path": "filament/Bambu TPU 90A @BBL H2D.json" + }, + { + "name": "Bambu TPU 90A @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu TPU 90A @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu TPU 90A @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu TPU 90A @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 90A @BBL H2DP", + "sub_path": "filament/Bambu TPU 90A @BBL H2DP.json" + }, + { + "name": "Bambu TPU 90A @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu TPU 90A @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu TPU 90A @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu TPU 90A @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 90A @BBL H2S", + "sub_path": "filament/Bambu TPU 90A @BBL H2S.json" + }, + { + "name": "Bambu TPU 90A @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu TPU 90A @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu TPU 90A @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu TPU 90A @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 90A @BBL P1P", + "sub_path": "filament/Bambu TPU 90A @BBL P1P.json" + }, + { + "name": "Bambu TPU 90A @BBL P2S", + "sub_path": "filament/Bambu TPU 90A @BBL P2S.json" + }, + { + "name": "Bambu TPU 90A @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu TPU 90A @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu TPU 90A @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu TPU 90A @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 90A @BBL X1C", + "sub_path": "filament/Bambu TPU 90A @BBL X1C.json" + }, + { + "name": "Bambu TPU 90A @BBL X2D", + "sub_path": "filament/Bambu TPU 90A @BBL X2D.json" + }, + { + "name": "Bambu TPU 90A @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu TPU 90A @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu TPU 90A @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu TPU 90A @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 95A @BBL A1", + "sub_path": "filament/Bambu TPU 95A @BBL A1.json" + }, + { + "name": "Bambu TPU 95A @BBL A1M", + "sub_path": "filament/Bambu TPU 95A @BBL A1M.json" + }, + { + "name": "Bambu TPU 95A @BBL A2L", + "sub_path": "filament/Bambu TPU 95A @BBL A2L.json" + }, + { + "name": "Bambu TPU 95A @BBL H2C", + "sub_path": "filament/Bambu TPU 95A @BBL H2C.json" + }, + { + "name": "Bambu TPU 95A @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu TPU 95A @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu TPU 95A @BBL H2D", + "sub_path": "filament/Bambu TPU 95A @BBL H2D.json" + }, + { + "name": "Bambu TPU 95A @BBL H2DP", + "sub_path": "filament/Bambu TPU 95A @BBL H2DP.json" + }, + { + "name": "Bambu TPU 95A @BBL H2S", + "sub_path": "filament/Bambu TPU 95A @BBL H2S.json" + }, + { + "name": "Bambu TPU 95A @BBL P1P", + "sub_path": "filament/P1P/Bambu TPU 95A @BBL P1P.json" + }, + { + "name": "Bambu TPU 95A @BBL P2S", + "sub_path": "filament/Bambu TPU 95A @BBL P2S.json" + }, + { + "name": "Bambu TPU 95A @BBL X1", + "sub_path": "filament/Bambu TPU 95A @BBL X1.json" + }, + { + "name": "Bambu TPU 95A @BBL X1C", + "sub_path": "filament/Bambu TPU 95A @BBL X1C.json" + }, + { + "name": "Bambu TPU 95A @BBL X2D", + "sub_path": "filament/Bambu TPU 95A @BBL X2D.json" + }, + { + "name": "Bambu TPU 95A @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu TPU 95A @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu TPU 95A HF @BBL A1", + "sub_path": "filament/Bambu TPU 95A HF @BBL A1.json" + }, + { + "name": "Bambu TPU 95A HF @BBL A1M", + "sub_path": "filament/Bambu TPU 95A HF @BBL A1M.json" + }, + { + "name": "Bambu TPU 95A HF @BBL A2L", + "sub_path": "filament/Bambu TPU 95A HF @BBL A2L.json" + }, + { + "name": "Bambu TPU 95A HF @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu TPU 95A HF @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu TPU 95A HF @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu TPU 95A HF @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 95A HF @BBL H2C", + "sub_path": "filament/Bambu TPU 95A HF @BBL H2C.json" + }, + { + "name": "Bambu TPU 95A HF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu TPU 95A HF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu TPU 95A HF @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu TPU 95A HF @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 95A HF @BBL H2D", + "sub_path": "filament/Bambu TPU 95A HF @BBL H2D.json" + }, + { + "name": "Bambu TPU 95A HF @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu TPU 95A HF @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 95A HF @BBL H2DP", + "sub_path": "filament/Bambu TPU 95A HF @BBL H2DP.json" + }, + { + "name": "Bambu TPU 95A HF @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu TPU 95A HF @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 95A HF @BBL H2S", + "sub_path": "filament/Bambu TPU 95A HF @BBL H2S.json" + }, + { + "name": "Bambu TPU 95A HF @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu TPU 95A HF @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu TPU 95A HF @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu TPU 95A HF @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 95A HF @BBL P1P", + "sub_path": "filament/Bambu TPU 95A HF @BBL P1P.json" + }, + { + "name": "Bambu TPU 95A HF @BBL P1S", + "sub_path": "filament/Bambu TPU 95A HF @BBL P1S.json" + }, + { + "name": "Bambu TPU 95A HF @BBL P2S", + "sub_path": "filament/Bambu TPU 95A HF @BBL P2S.json" + }, + { + "name": "Bambu TPU 95A HF @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu TPU 95A HF @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu TPU 95A HF @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu TPU 95A HF @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu TPU 95A HF @BBL X1", + "sub_path": "filament/Bambu TPU 95A HF @BBL X1.json" + }, + { + "name": "Bambu TPU 95A HF @BBL X1C", + "sub_path": "filament/Bambu TPU 95A HF @BBL X1C.json" + }, + { + "name": "Bambu TPU 95A HF @BBL X1E", + "sub_path": "filament/Bambu TPU 95A HF @BBL X1E.json" + }, + { + "name": "Bambu TPU 95A HF @BBL X2D", + "sub_path": "filament/Bambu TPU 95A HF @BBL X2D.json" + }, + { + "name": "Bambu TPU 95A HF @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu TPU 95A HF @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu TPU 95A HF @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu TPU 95A HF @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Bambu TPU for AMS @BBL A1", + "sub_path": "filament/Bambu TPU for AMS @BBL A1.json" + }, + { + "name": "Bambu TPU for AMS @BBL A1M", + "sub_path": "filament/Bambu TPU for AMS @BBL A1M.json" + }, + { + "name": "Bambu TPU for AMS @BBL A2L", + "sub_path": "filament/Bambu TPU for AMS @BBL A2L.json" + }, + { + "name": "Bambu TPU for AMS @BBL A2L 0.6 nozzle", + "sub_path": "filament/Bambu TPU for AMS @BBL A2L 0.6 nozzle.json" + }, + { + "name": "Bambu TPU for AMS @BBL A2L 0.8 nozzle", + "sub_path": "filament/Bambu TPU for AMS @BBL A2L 0.8 nozzle.json" + }, + { + "name": "Bambu TPU for AMS @BBL H2C", + "sub_path": "filament/Bambu TPU for AMS @BBL H2C.json" + }, + { + "name": "Bambu TPU for AMS @BBL H2C 0.4 nozzle", + "sub_path": "filament/Bambu TPU for AMS @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Bambu TPU for AMS @BBL H2C 0.8 nozzle", + "sub_path": "filament/Bambu TPU for AMS @BBL H2C 0.8 nozzle.json" + }, + { + "name": "Bambu TPU for AMS @BBL H2D", + "sub_path": "filament/Bambu TPU for AMS @BBL H2D.json" + }, + { + "name": "Bambu TPU for AMS @BBL H2D 0.6 nozzle", + "sub_path": "filament/Bambu TPU for AMS @BBL H2D 0.6 nozzle.json" + }, + { + "name": "Bambu TPU for AMS @BBL H2D 0.8 nozzle", + "sub_path": "filament/Bambu TPU for AMS @BBL H2D 0.8 nozzle.json" + }, + { + "name": "Bambu TPU for AMS @BBL H2DP", + "sub_path": "filament/Bambu TPU for AMS @BBL H2DP.json" + }, + { + "name": "Bambu TPU for AMS @BBL H2DP 0.6 nozzle", + "sub_path": "filament/Bambu TPU for AMS @BBL H2DP 0.6 nozzle.json" + }, + { + "name": "Bambu TPU for AMS @BBL H2DP 0.8 nozzle", + "sub_path": "filament/Bambu TPU for AMS @BBL H2DP 0.8 nozzle.json" + }, + { + "name": "Bambu TPU for AMS @BBL H2S", + "sub_path": "filament/Bambu TPU for AMS @BBL H2S.json" + }, + { + "name": "Bambu TPU for AMS @BBL H2S 0.6 nozzle", + "sub_path": "filament/Bambu TPU for AMS @BBL H2S 0.6 nozzle.json" + }, + { + "name": "Bambu TPU for AMS @BBL H2S 0.8 nozzle", + "sub_path": "filament/Bambu TPU for AMS @BBL H2S 0.8 nozzle.json" + }, + { + "name": "Bambu TPU for AMS @BBL P1P", + "sub_path": "filament/Bambu TPU for AMS @BBL P1P.json" + }, + { + "name": "Bambu TPU for AMS @BBL P1P 0.6 nozzle", + "sub_path": "filament/Bambu TPU for AMS @BBL P1P 0.6 nozzle.json" + }, + { + "name": "Bambu TPU for AMS @BBL P2S", + "sub_path": "filament/Bambu TPU for AMS @BBL P2S.json" + }, + { + "name": "Bambu TPU for AMS @BBL P2S 0.6 nozzle", + "sub_path": "filament/Bambu TPU for AMS @BBL P2S 0.6 nozzle.json" + }, + { + "name": "Bambu TPU for AMS @BBL P2S 0.8 nozzle", + "sub_path": "filament/Bambu TPU for AMS @BBL P2S 0.8 nozzle.json" + }, + { + "name": "Bambu TPU for AMS @BBL X1C", + "sub_path": "filament/Bambu TPU for AMS @BBL X1C.json" + }, + { + "name": "Bambu TPU for AMS @BBL X1C 0.6 nozzle", + "sub_path": "filament/Bambu TPU for AMS @BBL X1C 0.6 nozzle.json" + }, + { + "name": "Bambu TPU for AMS @BBL X2D", + "sub_path": "filament/Bambu TPU for AMS @BBL X2D.json" + }, + { + "name": "Bambu TPU for AMS @BBL X2D 0.4 nozzle", + "sub_path": "filament/Bambu TPU for AMS @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Bambu TPU for AMS @BBL X2D 0.8 nozzle", + "sub_path": "filament/Bambu TPU for AMS @BBL X2D 0.8 nozzle.json" + }, + { + "name": "Generic TPU", + "sub_path": "filament/Generic TPU.json" + }, + { + "name": "Generic TPU @BBL H2C", + "sub_path": "filament/Generic TPU @BBL H2C.json" + }, + { + "name": "Generic TPU @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic TPU @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic TPU @BBL H2D", + "sub_path": "filament/Generic TPU @BBL H2D.json" + }, + { + "name": "Generic TPU @BBL H2DP", + "sub_path": "filament/Generic TPU @BBL H2DP.json" + }, + { + "name": "Generic TPU @BBL P1P", + "sub_path": "filament/P1P/Generic TPU @BBL P1P.json" + }, + { + "name": "Generic TPU @BBL P2S", + "sub_path": "filament/Generic TPU @BBL P2S.json" + }, + { + "name": "Generic TPU @BBL X2D", + "sub_path": "filament/Generic TPU @BBL X2D.json" + }, + { + "name": "Generic TPU @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic TPU @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic TPU for AMS @BBL A1", + "sub_path": "filament/Generic TPU for AMS @BBL A1.json" + }, + { + "name": "Generic TPU for AMS @BBL A1M", + "sub_path": "filament/Generic TPU for AMS @BBL A1M.json" + }, + { + "name": "Generic TPU for AMS @BBL A2L", + "sub_path": "filament/Generic TPU for AMS @BBL A2L.json" + }, + { + "name": "Generic TPU for AMS @BBL H2C", + "sub_path": "filament/Generic TPU for AMS @BBL H2C.json" + }, + { + "name": "Generic TPU for AMS @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic TPU for AMS @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic TPU for AMS @BBL H2D", + "sub_path": "filament/Generic TPU for AMS @BBL H2D.json" + }, + { + "name": "Generic TPU for AMS @BBL H2DP", + "sub_path": "filament/Generic TPU for AMS @BBL H2DP.json" + }, + { + "name": "Generic TPU for AMS @BBL H2S", + "sub_path": "filament/Generic TPU for AMS @BBL H2S.json" + }, + { + "name": "Generic TPU for AMS @BBL P1P", + "sub_path": "filament/Generic TPU for AMS @BBL P1P.json" + }, + { + "name": "Generic TPU for AMS @BBL P2S", + "sub_path": "filament/Generic TPU for AMS @BBL P2S.json" + }, + { + "name": "Generic TPU for AMS @BBL X1C", + "sub_path": "filament/Generic TPU for AMS @BBL X1C.json" + }, + { + "name": "Generic TPU for AMS @BBL X2D", + "sub_path": "filament/Generic TPU for AMS @BBL X2D.json" + }, + { + "name": "Generic TPU for AMS @BBL X2D 0.4 nozzle", + "sub_path": "filament/Generic TPU for AMS @BBL X2D 0.4 nozzle.json" + }, + { + "name": "Generic ABS @BBL H2DP", + "sub_path": "filament/Generic ABS @BBL H2DP.json" + }, + { + "name": "Generic ABS @BBL X1E", + "sub_path": "filament/Generic ABS @BBL X1E.json" + }, + { + "name": "Generic ABS @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Generic ABS @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Generic ABS @BBL X1E 0.2 nozzle", + "sub_path": "filament/Generic ABS @BBL X1E 0.2 nozzle.json" + }, + { + "name": "PolyLite ABS @BBL P1P 0.2 nozzle", + "sub_path": "filament/PolyLite ABS @BBL P1P 0.2 nozzle.json" + }, + { + "name": "PolyLite ABS @BBL X1C 0.2 nozzle", + "sub_path": "filament/PolyLite ABS @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Generic ASA @BBL H2DP", + "sub_path": "filament/Generic ASA @BBL H2DP.json" + }, + { + "name": "Generic ASA @BBL X1E", + "sub_path": "filament/Generic ASA @BBL X1E.json" + }, + { + "name": "Generic ASA @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Generic ASA @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Generic ASA @BBL X1E 0.2 nozzle", + "sub_path": "filament/Generic ASA @BBL X1E 0.2 nozzle.json" + }, + { + "name": "PolyLite ASA @BBL P1P 0.2 nozzle", + "sub_path": "filament/PolyLite ASA @BBL P1P 0.2 nozzle.json" + }, + { + "name": "PolyLite ASA @BBL X1C 0.2 nozzle", + "sub_path": "filament/PolyLite ASA @BBL X1C 0.2 nozzle.json" + }, + { + "name": "PolyLite ASA @BBL X1E 0.2 nozzle", + "sub_path": "filament/PolyLite ASA @BBL X1E 0.2 nozzle.json" + }, + { + "name": "Generic PA @BBL A1", + "sub_path": "filament/Generic PA @BBL A1.json" + }, + { + "name": "Generic PA-CF @BBL A1", + "sub_path": "filament/Generic PA-CF @BBL A1.json" + }, + { + "name": "Generic PA-CF @BBL H2C", + "sub_path": "filament/Generic PA-CF @BBL H2C.json" + }, + { + "name": "Generic PA-CF @BBL H2C 0.4 nozzle", + "sub_path": "filament/Generic PA-CF @BBL H2C 0.4 nozzle.json" + }, + { + "name": "Generic PA-CF @BBL H2D", + "sub_path": "filament/Generic PA-CF @BBL H2D.json" + }, + { + "name": "Generic PA-CF @BBL H2DP", + "sub_path": "filament/Generic PA-CF @BBL H2DP.json" + }, + { + "name": "Generic PA-CF @BBL X1E", + "sub_path": "filament/Generic PA-CF @BBL X1E.json" + }, + { + "name": "Bambu PC @BBL P1S", + "sub_path": "filament/Bambu PC @BBL P1S.json" + }, + { + "name": "Bambu PC @BBL P1S 0.2 nozzle", + "sub_path": "filament/Bambu PC @BBL P1S 0.2 nozzle.json" + }, + { + "name": "Bambu PC @BBL P1S 0.6 nozzle", + "sub_path": "filament/Bambu PC @BBL P1S 0.6 nozzle.json" + }, + { + "name": "Bambu PC @BBL P1S 0.8 nozzle", + "sub_path": "filament/Bambu PC @BBL P1S 0.8 nozzle.json" + }, + { + "name": "Generic PC @BBL H2DP", + "sub_path": "filament/Generic PC @BBL H2DP.json" + }, + { + "name": "Generic PC @BBL P1S", + "sub_path": "filament/Generic PC @BBL P1S.json" + }, + { + "name": "Generic PC @BBL P2S", + "sub_path": "filament/Generic PC @BBL P2S.json" + }, + { + "name": "Generic PC @BBL X1E", + "sub_path": "filament/Generic PC @BBL X1E.json" + }, + { + "name": "Generic PC @BBL H2DP 0.2 nozzle", + "sub_path": "filament/Generic PC @BBL H2DP 0.2 nozzle.json" + }, + { + "name": "Generic PC @BBL P1S 0.2 nozzle", + "sub_path": "filament/Generic PC @BBL P1S 0.2 nozzle.json" + }, + { + "name": "Generic PC @BBL P2S 0.2 nozzle", + "sub_path": "filament/Generic PC @BBL P2S 0.2 nozzle.json" + }, + { + "name": "Generic PC @BBL X1E 0.2 nozzle", + "sub_path": "filament/Generic PC @BBL X1E 0.2 nozzle.json" + }, + { + "name": "Bambu PETG-CF @BBL A1M 0.4 nozzle", + "sub_path": "filament/Bambu PETG-CF @BBL A1M 0.4 nozzle.json" + }, + { + "name": "PolyLite PETG @BBL A1M 0.2 nozzle", + "sub_path": "filament/PolyLite PETG @BBL A1M 0.2 nozzle.json" + }, + { + "name": "PolyLite PETG @BBL P1P 0.2 nozzle", + "sub_path": "filament/PolyLite PETG @BBL P1P 0.2 nozzle.json" + }, + { + "name": "PolyLite PETG @BBL X1C 0.2 nozzle", + "sub_path": "filament/PolyLite PETG @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL P1P 0.2 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL X1 0.2 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL X1 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL X1C 0.2 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu PLA Glow @BBL X1E 0.2 nozzle", + "sub_path": "filament/Bambu PLA Glow @BBL X1E 0.2 nozzle.json" + }, + { + "name": "Generic PLA High Speed @BBL A1M 0.2 nozzle", + "sub_path": "filament/Generic PLA High Speed @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Generic PLA High Speed @BBL P1P 0.2 nozzle", + "sub_path": "filament/Generic PLA High Speed @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Generic PLA High Speed @BBL X1C 0.2 nozzle", + "sub_path": "filament/Generic PLA High Speed @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Generic PLA High Speed @BBL X2D 0.2 nozzle", + "sub_path": "filament/Generic PLA High Speed @BBL X2D 0.2 nozzle.json" + }, + { + "name": "Overture Matte PLA @BBL A1M 0.2 nozzle", + "sub_path": "filament/Overture Matte PLA @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Overture Matte PLA @BBL P1P 0.2 nozzle", + "sub_path": "filament/Overture Matte PLA @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Overture Matte PLA @BBL X1C 0.2 nozzle", + "sub_path": "filament/Overture Matte PLA @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Overture PLA @BBL A1M 0.2 nozzle", + "sub_path": "filament/Overture PLA @BBL A1M 0.2 nozzle.json" + }, + { + "name": "Overture PLA @BBL P1P 0.2 nozzle", + "sub_path": "filament/Overture PLA @BBL P1P 0.2 nozzle.json" + }, + { + "name": "Overture PLA @BBL X1C 0.2 nozzle", + "sub_path": "filament/Overture PLA @BBL X1C 0.2 nozzle.json" + }, + { + "name": "PolyLite PLA @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/PolyLite PLA @BBL P1P 0.2 nozzle.json" + }, + { + "name": "PolyLite PLA @BBL X1C 0.2 nozzle", + "sub_path": "filament/PolyLite PLA @BBL X1C 0.2 nozzle.json" + }, + { + "name": "PolyTerra PLA @BBL P1P 0.2 nozzle", + "sub_path": "filament/P1P/PolyTerra PLA @BBL P1P 0.2 nozzle.json" + }, + { + "name": "PolyTerra PLA @BBL X1C 0.2 nozzle", + "sub_path": "filament/PolyTerra PLA @BBL X1C 0.2 nozzle.json" + }, + { + "name": "Bambu TPU 95A HF @BBL H2D 0.4 nozzle", + "sub_path": "filament/Bambu TPU 95A HF @BBL H2D 0.4 nozzle.json" + }, + { + "name": "Bambu TPU 95A HF @BBL H2DP 0.4 nozzle", + "sub_path": "filament/Bambu TPU 95A HF @BBL H2DP 0.4 nozzle.json" + }, + { + "name": "Generic TPU @BBL A1", + "sub_path": "filament/Generic TPU @BBL A1.json" + }, + { + "name": "Generic TPU @BBL A1M", + "sub_path": "filament/Generic TPU @BBL A1M.json" + }, + { + "name": "Generic TPU @BBL A2L", + "sub_path": "filament/Generic TPU @BBL A2L.json" + }, + { + "name": "Generic TPU @BBL H2S", + "sub_path": "filament/Generic TPU @BBL H2S.json" + }, + { + "name": "fdm_filament_template_direct_bowden", + "sub_path": "filament/fdm_filament_template_direct_bowden.json" + }, + { + "name": "fdm_filament_template_direct_bowden_e3d", + "sub_path": "filament/fdm_filament_template_direct_bowden_e3d.json" + }, + { + "name": "fdm_filament_template_direct_dual", + "sub_path": "filament/fdm_filament_template_direct_dual.json" + }, + { + "name": "fdm_filament_template_direct_dual_e3d", + "sub_path": "filament/fdm_filament_template_direct_dual_e3d.json" + } + ], + "machine_list": [ + { + "name": "fdm_machine_common", + "sub_path": "machine/fdm_machine_common.json" + }, + { + "name": "fdm_bbl_3dp_001_common", + "sub_path": "machine/fdm_bbl_3dp_001_common.json" + }, + { + "name": "fdm_bbl_3dp_002_common", + "sub_path": "machine/fdm_bbl_3dp_002_common.json" + }, + { + "name": "Bambu Lab A1 0.4 nozzle", + "sub_path": "machine/Bambu Lab A1 0.4 nozzle.json" + }, + { + "name": "Bambu Lab A1 mini 0.4 nozzle", + "sub_path": "machine/Bambu Lab A1 mini 0.4 nozzle.json" + }, + { + "name": "Bambu Lab A2L 0.4 nozzle", + "sub_path": "machine/Bambu Lab A2L 0.4 nozzle.json" + }, + { + "name": "Bambu Lab H2S 0.4 nozzle", + "sub_path": "machine/Bambu Lab H2S 0.4 nozzle.json" + }, + { + "name": "Bambu Lab P1P 0.4 nozzle", + "sub_path": "machine/Bambu Lab P1P 0.4 nozzle.json" + }, + { + "name": "Bambu Lab P1S 0.4 nozzle", + "sub_path": "machine/Bambu Lab P1S 0.4 nozzle.json" + }, + { + "name": "Bambu Lab P2S 0.4 nozzle", + "sub_path": "machine/Bambu Lab P2S 0.4 nozzle.json" + }, + { + "name": "Bambu Lab X1 0.4 nozzle", + "sub_path": "machine/Bambu Lab X1 0.4 nozzle.json" + }, + { + "name": "Bambu Lab X1 Carbon 0.4 nozzle", + "sub_path": "machine/Bambu Lab X1 Carbon 0.4 nozzle.json" + }, + { + "name": "Bambu Lab X1E 0.4 nozzle", + "sub_path": "machine/Bambu Lab X1E 0.4 nozzle.json" + }, + { + "name": "Bambu Lab H2C 0.4 nozzle", + "sub_path": "machine/Bambu Lab H2C 0.4 nozzle.json" + }, + { + "name": "Bambu Lab H2D 0.4 nozzle", + "sub_path": "machine/Bambu Lab H2D 0.4 nozzle.json" + }, + { + "name": "Bambu Lab H2D Pro 0.4 nozzle", + "sub_path": "machine/Bambu Lab H2D Pro 0.4 nozzle.json" + }, + { + "name": "Bambu Lab X2D 0.4 nozzle", + "sub_path": "machine/Bambu Lab X2D 0.4 nozzle.json" + }, + { + "name": "Bambu Lab A1 0.2 nozzle", + "sub_path": "machine/Bambu Lab A1 0.2 nozzle.json" + }, + { + "name": "Bambu Lab A1 0.6 nozzle", + "sub_path": "machine/Bambu Lab A1 0.6 nozzle.json" + }, + { + "name": "Bambu Lab A1 0.8 nozzle", + "sub_path": "machine/Bambu Lab A1 0.8 nozzle.json" + }, + { + "name": "Bambu Lab A1 mini 0.2 nozzle", + "sub_path": "machine/Bambu Lab A1 mini 0.2 nozzle.json" + }, + { + "name": "Bambu Lab A1 mini 0.6 nozzle", + "sub_path": "machine/Bambu Lab A1 mini 0.6 nozzle.json" + }, + { + "name": "Bambu Lab A1 mini 0.8 nozzle", + "sub_path": "machine/Bambu Lab A1 mini 0.8 nozzle.json" + }, + { + "name": "Bambu Lab A2L 0.2 nozzle", + "sub_path": "machine/Bambu Lab A2L 0.2 nozzle.json" + }, + { + "name": "Bambu Lab A2L 0.6 nozzle", + "sub_path": "machine/Bambu Lab A2L 0.6 nozzle.json" + }, + { + "name": "Bambu Lab A2L 0.8 nozzle", + "sub_path": "machine/Bambu Lab A2L 0.8 nozzle.json" + }, + { + "name": "Bambu Lab H2S 0.2 nozzle", + "sub_path": "machine/Bambu Lab H2S 0.2 nozzle.json" + }, + { + "name": "Bambu Lab H2S 0.6 nozzle", + "sub_path": "machine/Bambu Lab H2S 0.6 nozzle.json" + }, + { + "name": "Bambu Lab H2S 0.8 nozzle", + "sub_path": "machine/Bambu Lab H2S 0.8 nozzle.json" + }, + { + "name": "Bambu Lab P1P 0.2 nozzle", + "sub_path": "machine/Bambu Lab P1P 0.2 nozzle.json" + }, + { + "name": "Bambu Lab P1P 0.6 nozzle", + "sub_path": "machine/Bambu Lab P1P 0.6 nozzle.json" + }, + { + "name": "Bambu Lab P1P 0.8 nozzle", + "sub_path": "machine/Bambu Lab P1P 0.8 nozzle.json" + }, + { + "name": "Bambu Lab P1S 0.2 nozzle", + "sub_path": "machine/Bambu Lab P1S 0.2 nozzle.json" + }, + { + "name": "Bambu Lab P1S 0.6 nozzle", + "sub_path": "machine/Bambu Lab P1S 0.6 nozzle.json" + }, + { + "name": "Bambu Lab P1S 0.8 nozzle", + "sub_path": "machine/Bambu Lab P1S 0.8 nozzle.json" + }, + { + "name": "Bambu Lab P2S 0.2 nozzle", + "sub_path": "machine/Bambu Lab P2S 0.2 nozzle.json" + }, + { + "name": "Bambu Lab P2S 0.6 nozzle", + "sub_path": "machine/Bambu Lab P2S 0.6 nozzle.json" + }, + { + "name": "Bambu Lab P2S 0.8 nozzle", + "sub_path": "machine/Bambu Lab P2S 0.8 nozzle.json" + }, + { + "name": "Bambu Lab X1 0.2 nozzle", + "sub_path": "machine/Bambu Lab X1 0.2 nozzle.json" + }, + { + "name": "Bambu Lab X1 0.6 nozzle", + "sub_path": "machine/Bambu Lab X1 0.6 nozzle.json" + }, + { + "name": "Bambu Lab X1 0.8 nozzle", + "sub_path": "machine/Bambu Lab X1 0.8 nozzle.json" + }, + { + "name": "Bambu Lab X1 Carbon 0.2 nozzle", + "sub_path": "machine/Bambu Lab X1 Carbon 0.2 nozzle.json" + }, + { + "name": "Bambu Lab X1 Carbon 0.6 nozzle", + "sub_path": "machine/Bambu Lab X1 Carbon 0.6 nozzle.json" + }, + { + "name": "Bambu Lab X1 Carbon 0.8 nozzle", + "sub_path": "machine/Bambu Lab X1 Carbon 0.8 nozzle.json" + }, + { + "name": "Bambu Lab X1E 0.2 nozzle", + "sub_path": "machine/Bambu Lab X1E 0.2 nozzle.json" + }, + { + "name": "Bambu Lab X1E 0.6 nozzle", + "sub_path": "machine/Bambu Lab X1E 0.6 nozzle.json" + }, + { + "name": "Bambu Lab X1E 0.8 nozzle", + "sub_path": "machine/Bambu Lab X1E 0.8 nozzle.json" + }, + { + "name": "Bambu Lab H2C 0.2 nozzle", + "sub_path": "machine/Bambu Lab H2C 0.2 nozzle.json" + }, + { + "name": "Bambu Lab H2C 0.6 nozzle", + "sub_path": "machine/Bambu Lab H2C 0.6 nozzle.json" + }, + { + "name": "Bambu Lab H2C 0.8 nozzle", + "sub_path": "machine/Bambu Lab H2C 0.8 nozzle.json" + }, + { + "name": "Bambu Lab H2D 0.2 nozzle", + "sub_path": "machine/Bambu Lab H2D 0.2 nozzle.json" + }, + { + "name": "Bambu Lab H2D 0.6 nozzle", + "sub_path": "machine/Bambu Lab H2D 0.6 nozzle.json" + }, + { + "name": "Bambu Lab H2D 0.8 nozzle", + "sub_path": "machine/Bambu Lab H2D 0.8 nozzle.json" + }, + { + "name": "Bambu Lab H2D Pro 0.2 nozzle", + "sub_path": "machine/Bambu Lab H2D Pro 0.2 nozzle.json" + }, + { + "name": "Bambu Lab H2D Pro 0.6 nozzle", + "sub_path": "machine/Bambu Lab H2D Pro 0.6 nozzle.json" + }, + { + "name": "Bambu Lab H2D Pro 0.8 nozzle", + "sub_path": "machine/Bambu Lab H2D Pro 0.8 nozzle.json" + }, + { + "name": "Bambu Lab X2D 0.2 nozzle", + "sub_path": "machine/Bambu Lab X2D 0.2 nozzle.json" + }, + { + "name": "Bambu Lab X2D 0.6 nozzle", + "sub_path": "machine/Bambu Lab X2D 0.6 nozzle.json" + }, + { + "name": "Bambu Lab X2D 0.8 nozzle", + "sub_path": "machine/Bambu Lab X2D 0.8 nozzle.json" + }, + { + "name": "Bambu Lab A1 0.4 nozzle template change_filament_gcode", + "sub_path": "machine/Bambu Lab A1 0.4 nozzle template change_filament_gcode.json" + }, + { + "name": "Bambu Lab A1 0.4 nozzle template layer_change_gcode", + "sub_path": "machine/Bambu Lab A1 0.4 nozzle template layer_change_gcode.json" + }, + { + "name": "Bambu Lab A1 0.4 nozzle template machine_end_gcode", + "sub_path": "machine/Bambu Lab A1 0.4 nozzle template machine_end_gcode.json" + }, + { + "name": "Bambu Lab A1 0.4 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab A1 0.4 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab A1 0.4 nozzle template time_lapse_gcode", + "sub_path": "machine/Bambu Lab A1 0.4 nozzle template time_lapse_gcode.json" + }, + { + "name": "Bambu Lab A1 mini 0.4 nozzle template change_filament_gcode", + "sub_path": "machine/Bambu Lab A1 mini 0.4 nozzle template change_filament_gcode.json" + }, + { + "name": "Bambu Lab A1 mini 0.4 nozzle template layer_change_gcode", + "sub_path": "machine/Bambu Lab A1 mini 0.4 nozzle template layer_change_gcode.json" + }, + { + "name": "Bambu Lab A1 mini 0.4 nozzle template machine_end_gcode", + "sub_path": "machine/Bambu Lab A1 mini 0.4 nozzle template machine_end_gcode.json" + }, + { + "name": "Bambu Lab A1 mini 0.4 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab A1 mini 0.4 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab A1 mini 0.4 nozzle template time_lapse_gcode", + "sub_path": "machine/Bambu Lab A1 mini 0.4 nozzle template time_lapse_gcode.json" + }, + { + "name": "Bambu Lab A2L 0.4 nozzle template change_filament_gcode", + "sub_path": "machine/Bambu Lab A2L 0.4 nozzle template change_filament_gcode.json" + }, + { + "name": "Bambu Lab A2L 0.4 nozzle template layer_change_gcode", + "sub_path": "machine/Bambu Lab A2L 0.4 nozzle template layer_change_gcode.json" + }, + { + "name": "Bambu Lab A2L 0.4 nozzle template machine_end_gcode", + "sub_path": "machine/Bambu Lab A2L 0.4 nozzle template machine_end_gcode.json" + }, + { + "name": "Bambu Lab A2L 0.4 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab A2L 0.4 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab A2L 0.4 nozzle template time_lapse_gcode", + "sub_path": "machine/Bambu Lab A2L 0.4 nozzle template time_lapse_gcode.json" + }, + { + "name": "Bambu Lab H2C 0.4 nozzle template change_filament_gcode", + "sub_path": "machine/Bambu Lab H2C 0.4 nozzle template change_filament_gcode.json" + }, + { + "name": "Bambu Lab H2C 0.4 nozzle template layer_change_gcode", + "sub_path": "machine/Bambu Lab H2C 0.4 nozzle template layer_change_gcode.json" + }, + { + "name": "Bambu Lab H2C 0.4 nozzle template machine_end_gcode", + "sub_path": "machine/Bambu Lab H2C 0.4 nozzle template machine_end_gcode.json" + }, + { + "name": "Bambu Lab H2C 0.4 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab H2C 0.4 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab H2C 0.4 nozzle template time_lapse_gcode", + "sub_path": "machine/Bambu Lab H2C 0.4 nozzle template time_lapse_gcode.json" + }, + { + "name": "Bambu Lab H2C 0.4 nozzle template wrapping_detection_gcode", + "sub_path": "machine/Bambu Lab H2C 0.4 nozzle template wrapping_detection_gcode.json" + }, + { + "name": "Bambu Lab H2D 0.4 nozzle template change_filament_gcode", + "sub_path": "machine/Bambu Lab H2D 0.4 nozzle template change_filament_gcode.json" + }, + { + "name": "Bambu Lab H2D 0.4 nozzle template layer_change_gcode", + "sub_path": "machine/Bambu Lab H2D 0.4 nozzle template layer_change_gcode.json" + }, + { + "name": "Bambu Lab H2D 0.4 nozzle template machine_end_gcode", + "sub_path": "machine/Bambu Lab H2D 0.4 nozzle template machine_end_gcode.json" + }, + { + "name": "Bambu Lab H2D 0.4 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab H2D 0.4 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab H2D 0.4 nozzle template time_lapse_gcode", + "sub_path": "machine/Bambu Lab H2D 0.4 nozzle template time_lapse_gcode.json" + }, + { + "name": "Bambu Lab H2D 0.4 nozzle template wrapping_detection_gcode", + "sub_path": "machine/Bambu Lab H2D 0.4 nozzle template wrapping_detection_gcode.json" + }, + { + "name": "Bambu Lab H2D Pro 0.4 nozzle template change_filament_gcode", + "sub_path": "machine/Bambu Lab H2D Pro 0.4 nozzle template change_filament_gcode.json" + }, + { + "name": "Bambu Lab H2D Pro 0.4 nozzle template layer_change_gcode", + "sub_path": "machine/Bambu Lab H2D Pro 0.4 nozzle template layer_change_gcode.json" + }, + { + "name": "Bambu Lab H2D Pro 0.4 nozzle template machine_end_gcode", + "sub_path": "machine/Bambu Lab H2D Pro 0.4 nozzle template machine_end_gcode.json" + }, + { + "name": "Bambu Lab H2D Pro 0.4 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab H2D Pro 0.4 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab H2D Pro 0.4 nozzle template time_lapse_gcode", + "sub_path": "machine/Bambu Lab H2D Pro 0.4 nozzle template time_lapse_gcode.json" + }, + { + "name": "Bambu Lab H2D Pro 0.4 nozzle template wrapping_detection_gcode", + "sub_path": "machine/Bambu Lab H2D Pro 0.4 nozzle template wrapping_detection_gcode.json" + }, + { + "name": "Bambu Lab H2S 0.4 nozzle template change_filament_gcode", + "sub_path": "machine/Bambu Lab H2S 0.4 nozzle template change_filament_gcode.json" + }, + { + "name": "Bambu Lab H2S 0.4 nozzle template layer_change_gcode", + "sub_path": "machine/Bambu Lab H2S 0.4 nozzle template layer_change_gcode.json" + }, + { + "name": "Bambu Lab H2S 0.4 nozzle template machine_end_gcode", + "sub_path": "machine/Bambu Lab H2S 0.4 nozzle template machine_end_gcode.json" + }, + { + "name": "Bambu Lab H2S 0.4 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab H2S 0.4 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab H2S 0.4 nozzle template time_lapse_gcode", + "sub_path": "machine/Bambu Lab H2S 0.4 nozzle template time_lapse_gcode.json" + }, + { + "name": "Bambu Lab H2S 0.4 nozzle template wrapping_detection_gcode", + "sub_path": "machine/Bambu Lab H2S 0.4 nozzle template wrapping_detection_gcode.json" + }, + { + "name": "Bambu Lab P1P 0.2 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab P1P 0.2 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab P1P 0.4 nozzle template change_filament_gcode", + "sub_path": "machine/Bambu Lab P1P 0.4 nozzle template change_filament_gcode.json" + }, + { + "name": "Bambu Lab P1P 0.4 nozzle template layer_change_gcode", + "sub_path": "machine/Bambu Lab P1P 0.4 nozzle template layer_change_gcode.json" + }, + { + "name": "Bambu Lab P1P 0.4 nozzle template machine_end_gcode", + "sub_path": "machine/Bambu Lab P1P 0.4 nozzle template machine_end_gcode.json" + }, + { + "name": "Bambu Lab P1P 0.4 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab P1P 0.4 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab P1P 0.4 nozzle template time_lapse_gcode", + "sub_path": "machine/Bambu Lab P1P 0.4 nozzle template time_lapse_gcode.json" + }, + { + "name": "Bambu Lab P1P 0.6 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab P1P 0.6 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab P1P 0.8 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab P1P 0.8 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab P1S 0.2 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab P1S 0.2 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab P1S 0.4 nozzle template change_filament_gcode", + "sub_path": "machine/Bambu Lab P1S 0.4 nozzle template change_filament_gcode.json" + }, + { + "name": "Bambu Lab P1S 0.4 nozzle template layer_change_gcode", + "sub_path": "machine/Bambu Lab P1S 0.4 nozzle template layer_change_gcode.json" + }, + { + "name": "Bambu Lab P1S 0.4 nozzle template machine_end_gcode", + "sub_path": "machine/Bambu Lab P1S 0.4 nozzle template machine_end_gcode.json" + }, + { + "name": "Bambu Lab P1S 0.4 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab P1S 0.4 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab P1S 0.4 nozzle template time_lapse_gcode", + "sub_path": "machine/Bambu Lab P1S 0.4 nozzle template time_lapse_gcode.json" + }, + { + "name": "Bambu Lab P1S 0.6 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab P1S 0.6 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab P1S 0.8 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab P1S 0.8 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab P2S 0.4 nozzle template change_filament_gcode", + "sub_path": "machine/Bambu Lab P2S 0.4 nozzle template change_filament_gcode.json" + }, + { + "name": "Bambu Lab P2S 0.4 nozzle template layer_change_gcode", + "sub_path": "machine/Bambu Lab P2S 0.4 nozzle template layer_change_gcode.json" + }, + { + "name": "Bambu Lab P2S 0.4 nozzle template machine_end_gcode", + "sub_path": "machine/Bambu Lab P2S 0.4 nozzle template machine_end_gcode.json" + }, + { + "name": "Bambu Lab P2S 0.4 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab P2S 0.4 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab P2S 0.4 nozzle template time_lapse_gcode", + "sub_path": "machine/Bambu Lab P2S 0.4 nozzle template time_lapse_gcode.json" + }, + { + "name": "Bambu Lab P2S 0.4 nozzle template wrapping_detection_gcode", + "sub_path": "machine/Bambu Lab P2S 0.4 nozzle template wrapping_detection_gcode.json" + }, + { + "name": "Bambu Lab X1 0.2 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab X1 0.2 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab X1 0.4 nozzle template change_filament_gcode", + "sub_path": "machine/Bambu Lab X1 0.4 nozzle template change_filament_gcode.json" + }, + { + "name": "Bambu Lab X1 0.4 nozzle template machine_end_gcode", + "sub_path": "machine/Bambu Lab X1 0.4 nozzle template machine_end_gcode.json" + }, + { + "name": "Bambu Lab X1 0.4 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab X1 0.4 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab X1 0.4 nozzle template time_lapse_gcode", + "sub_path": "machine/Bambu Lab X1 0.4 nozzle template time_lapse_gcode.json" + }, + { + "name": "Bambu Lab X1 0.6 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab X1 0.6 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab X1 0.8 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab X1 0.8 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab X1 Carbon 0.2 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab X1 Carbon 0.2 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab X1 Carbon 0.4 nozzle template change_filament_gcode", + "sub_path": "machine/Bambu Lab X1 Carbon 0.4 nozzle template change_filament_gcode.json" + }, + { + "name": "Bambu Lab X1 Carbon 0.4 nozzle template layer_change_gcode", + "sub_path": "machine/Bambu Lab X1 Carbon 0.4 nozzle template layer_change_gcode.json" + }, + { + "name": "Bambu Lab X1 Carbon 0.4 nozzle template machine_end_gcode", + "sub_path": "machine/Bambu Lab X1 Carbon 0.4 nozzle template machine_end_gcode.json" + }, + { + "name": "Bambu Lab X1 Carbon 0.4 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab X1 Carbon 0.4 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab X1 Carbon 0.4 nozzle template time_lapse_gcode", + "sub_path": "machine/Bambu Lab X1 Carbon 0.4 nozzle template time_lapse_gcode.json" + }, + { + "name": "Bambu Lab X1 Carbon 0.6 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab X1 Carbon 0.6 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab X1 Carbon 0.8 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab X1 Carbon 0.8 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab X1E 0.2 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab X1E 0.2 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab X1E 0.4 nozzle template change_filament_gcode", + "sub_path": "machine/Bambu Lab X1E 0.4 nozzle template change_filament_gcode.json" + }, + { + "name": "Bambu Lab X1E 0.4 nozzle template layer_change_gcode", + "sub_path": "machine/Bambu Lab X1E 0.4 nozzle template layer_change_gcode.json" + }, + { + "name": "Bambu Lab X1E 0.4 nozzle template machine_end_gcode", + "sub_path": "machine/Bambu Lab X1E 0.4 nozzle template machine_end_gcode.json" + }, + { + "name": "Bambu Lab X1E 0.4 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab X1E 0.4 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab X1E 0.4 nozzle template time_lapse_gcode", + "sub_path": "machine/Bambu Lab X1E 0.4 nozzle template time_lapse_gcode.json" + }, + { + "name": "Bambu Lab X1E 0.6 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab X1E 0.6 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab X1E 0.8 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab X1E 0.8 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab X2D 0.4 nozzle template change_filament_gcode", + "sub_path": "machine/Bambu Lab X2D 0.4 nozzle template change_filament_gcode.json" + }, + { + "name": "Bambu Lab X2D 0.4 nozzle template layer_change_gcode", + "sub_path": "machine/Bambu Lab X2D 0.4 nozzle template layer_change_gcode.json" + }, + { + "name": "Bambu Lab X2D 0.4 nozzle template machine_end_gcode", + "sub_path": "machine/Bambu Lab X2D 0.4 nozzle template machine_end_gcode.json" + }, + { + "name": "Bambu Lab X2D 0.4 nozzle template machine_start_gcode", + "sub_path": "machine/Bambu Lab X2D 0.4 nozzle template machine_start_gcode.json" + }, + { + "name": "Bambu Lab X2D 0.4 nozzle template time_lapse_gcode", + "sub_path": "machine/Bambu Lab X2D 0.4 nozzle template time_lapse_gcode.json" + } + ], "process_list": [ { "name": "fdm_process_common", @@ -419,6 +9215,10 @@ "name": "0.24mm Standard @BBL X2D", "sub_path": "process/0.24mm Standard @BBL X2D.json" }, + { + "name": "0.24mm Balanced Quality @BBL H2C 0.6 nozzle", + "sub_path": "process/0.24mm Balanced Quality @BBL H2C 0.6 nozzle.json" + }, { "name": "0.24mm Balanced Quality @BBL X2D 0.6 nozzle", "sub_path": "process/0.24mm Balanced Quality @BBL X2D 0.6 nozzle.json" @@ -467,6 +9267,10 @@ "name": "0.30mm Standard @BBL X2D 0.6 nozzle", "sub_path": "process/0.30mm Standard @BBL X2D 0.6 nozzle.json" }, + { + "name": "0.32mm Balanced Quality @BBL H2C 0.8 nozzle", + "sub_path": "process/0.32mm Balanced Quality @BBL H2C 0.8 nozzle.json" + }, { "name": "0.32mm Balanced Quality @BBL X2D 0.8 nozzle", "sub_path": "process/0.32mm Balanced Quality @BBL X2D 0.8 nozzle.json" @@ -1167,7477 +9971,5 @@ "name": "0.56mm Standard @BBL X1C 0.8 nozzle", "sub_path": "process/0.56mm Standard @BBL X1C 0.8 nozzle.json" } - ], - "filament_list": [ - { - "name": "fdm_filament_common", - "sub_path": "filament/fdm_filament_common.json" - }, - { - "name": "fdm_filament_abs", - "sub_path": "filament/fdm_filament_abs.json" - }, - { - "name": "fdm_filament_asa", - "sub_path": "filament/fdm_filament_asa.json" - }, - { - "name": "fdm_filament_bvoh", - "sub_path": "filament/fdm_filament_bvoh.json" - }, - { - "name": "fdm_filament_eva", - "sub_path": "filament/fdm_filament_eva.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_pc", - "sub_path": "filament/fdm_filament_pc.json" - }, - { - "name": "fdm_filament_pctg", - "sub_path": "filament/fdm_filament_pctg.json" - }, - { - "name": "fdm_filament_pe", - "sub_path": "filament/fdm_filament_pe.json" - }, - { - "name": "fdm_filament_pet", - "sub_path": "filament/fdm_filament_pet.json" - }, - { - "name": "fdm_filament_pha", - "sub_path": "filament/fdm_filament_pha.json" - }, - { - "name": "fdm_filament_pla", - "sub_path": "filament/fdm_filament_pla.json" - }, - { - "name": "fdm_filament_pp", - "sub_path": "filament/fdm_filament_pp.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_sbs", - "sub_path": "filament/fdm_filament_sbs.json" - }, - { - "name": "fdm_filament_tpu", - "sub_path": "filament/fdm_filament_tpu.json" - }, - { - "name": "Bambu ABS @base", - "sub_path": "filament/Bambu ABS @base.json" - }, - { - "name": "Bambu ABS-GF @base", - "sub_path": "filament/Bambu ABS-GF @base.json" - }, - { - "name": "Bambu Support for ABS @base", - "sub_path": "filament/Bambu Support for ABS @base.json" - }, - { - "name": "Generic ABS @base", - "sub_path": "filament/Generic ABS @base.json" - }, - { - "name": "PolyLite ABS @base", - "sub_path": "filament/Polymaker/PolyLite ABS @base.json" - }, - { - "name": "Bambu ASA @base", - "sub_path": "filament/Bambu ASA @base.json" - }, - { - "name": "Bambu ASA-Aero @base", - "sub_path": "filament/Bambu ASA-Aero @base.json" - }, - { - "name": "Bambu ASA-CF @base", - "sub_path": "filament/Bambu ASA-CF @base.json" - }, - { - "name": "Generic ASA @base", - "sub_path": "filament/Generic ASA @base.json" - }, - { - "name": "PolyLite ASA @base", - "sub_path": "filament/Polymaker/PolyLite ASA @base.json" - }, - { - "name": "Generic BVOH @base", - "sub_path": "filament/Generic BVOH @base.json" - }, - { - "name": "Generic EVA @base", - "sub_path": "filament/Generic EVA @base.json" - }, - { - "name": "Generic HIPS @base", - "sub_path": "filament/Generic HIPS @base.json" - }, - { - "name": "Bambu PA-CF @base", - "sub_path": "filament/Bambu PA-CF @base.json" - }, - { - "name": "Bambu PA6-CF @base", - "sub_path": "filament/Bambu PA6-CF @base.json" - }, - { - "name": "Bambu PA6-GF @base", - "sub_path": "filament/Bambu PA6-GF @base.json" - }, - { - "name": "Bambu PAHT-CF @base", - "sub_path": "filament/Bambu PAHT-CF @base.json" - }, - { - "name": "Bambu Support For PA/PET @base", - "sub_path": "filament/Bambu Support For PA PET @base.json" - }, - { - "name": "Bambu Support G @base", - "sub_path": "filament/Bambu Support G @base.json" - }, - { - "name": "Fiberon PA12-CF @base", - "sub_path": "filament/Polymaker/Fiberon PA12-CF @base.json" - }, - { - "name": "Fiberon PA6-CF @base", - "sub_path": "filament/Polymaker/Fiberon PA6-CF @base.json" - }, - { - "name": "Fiberon PA6-GF @base", - "sub_path": "filament/Polymaker/Fiberon PA6-GF @base.json" - }, - { - "name": "Fiberon PA612-CF @base", - "sub_path": "filament/Polymaker/Fiberon PA612-CF @base.json" - }, - { - "name": "Generic PA @base", - "sub_path": "filament/Generic PA @base.json" - }, - { - "name": "Generic PA-CF @base", - "sub_path": "filament/Generic PA-CF @base.json" - }, - { - "name": "Bambu PC @base", - "sub_path": "filament/Bambu PC @base.json" - }, - { - "name": "Bambu PC FR @base", - "sub_path": "filament/Bambu PC FR @base.json" - }, - { - "name": "Generic PC @base", - "sub_path": "filament/Generic PC @base.json" - }, - { - "name": "Generic PCTG @base", - "sub_path": "filament/Generic PCTG @base.json" - }, - { - "name": "Generic PE @base", - "sub_path": "filament/Generic PE @base.json" - }, - { - "name": "Generic PE-CF @base", - "sub_path": "filament/Generic PE-CF @base.json" - }, - { - "name": "Bambu PET-CF @base", - "sub_path": "filament/Bambu PET-CF @base.json" - }, - { - "name": "Bambu PETG Basic @base", - "sub_path": "filament/Bambu PETG Basic @base.json" - }, - { - "name": "Bambu PETG HF @base", - "sub_path": "filament/Bambu PETG HF @base.json" - }, - { - "name": "Bambu PETG Translucent @base", - "sub_path": "filament/Bambu PETG Translucent @base.json" - }, - { - "name": "Bambu PETG-CF @base", - "sub_path": "filament/Bambu PETG-CF @base.json" - }, - { - "name": "Fiberon PET-CF @base", - "sub_path": "filament/Polymaker/Fiberon PET-CF @base.json" - }, - { - "name": "Fiberon PETG-ESD @base", - "sub_path": "filament/Polymaker/Fiberon PETG-ESD @base.json" - }, - { - "name": "Fiberon PETG-rCF @base", - "sub_path": "filament/Polymaker/Fiberon PETG-rCF @base.json" - }, - { - "name": "Generic PETG @base", - "sub_path": "filament/Generic PETG @base.json" - }, - { - "name": "Generic PETG HF @base", - "sub_path": "filament/Generic PETG HF @base.json" - }, - { - "name": "Generic PETG-CF @base", - "sub_path": "filament/Generic PETG-CF @base.json" - }, - { - "name": "PolyLite PETG @base", - "sub_path": "filament/Polymaker/PolyLite PETG @base.json" - }, - { - "name": "SUNLU PETG @base", - "sub_path": "filament/SUNLU/SUNLU PETG @base.json" - }, - { - "name": "Generic PHA @base", - "sub_path": "filament/Generic PHA @base.json" - }, - { - "name": "Bambu PLA Aero @base", - "sub_path": "filament/Bambu PLA Aero @base.json" - }, - { - "name": "Bambu PLA Basic @base", - "sub_path": "filament/Bambu PLA Basic @base.json" - }, - { - "name": "Bambu PLA Dynamic @base", - "sub_path": "filament/Bambu PLA Dynamic @base.json" - }, - { - "name": "Bambu PLA Galaxy @base", - "sub_path": "filament/Bambu PLA Galaxy @base.json" - }, - { - "name": "Bambu PLA Glow @base", - "sub_path": "filament/Bambu PLA Glow @base.json" - }, - { - "name": "Bambu PLA Lite @base", - "sub_path": "filament/Bambu PLA Lite @base.json" - }, - { - "name": "Bambu PLA Marble @base", - "sub_path": "filament/Bambu PLA Marble @base.json" - }, - { - "name": "Bambu PLA Matte @base", - "sub_path": "filament/Bambu PLA Matte @base.json" - }, - { - "name": "Bambu PLA Metal @base", - "sub_path": "filament/Bambu PLA Metal @base.json" - }, - { - "name": "Bambu PLA Pure @base", - "sub_path": "filament/Bambu PLA Pure @base.json" - }, - { - "name": "Bambu PLA Silk @base", - "sub_path": "filament/Bambu PLA Silk @base.json" - }, - { - "name": "Bambu PLA Silk+ @base", - "sub_path": "filament/Bambu PLA Silk+ @base.json" - }, - { - "name": "Bambu PLA Sparkle @base", - "sub_path": "filament/Bambu PLA Sparkle @base.json" - }, - { - "name": "Bambu PLA Tough @base", - "sub_path": "filament/Bambu PLA Tough @base.json" - }, - { - "name": "Bambu PLA Tough+ @base", - "sub_path": "filament/Bambu PLA Tough+ @base.json" - }, - { - "name": "Bambu PLA Translucent @base", - "sub_path": "filament/Bambu PLA Translucent @base.json" - }, - { - "name": "Bambu PLA Wood @base", - "sub_path": "filament/Bambu PLA Wood @base.json" - }, - { - "name": "Bambu PLA-CF @base", - "sub_path": "filament/Bambu PLA-CF @base.json" - }, - { - "name": "Bambu Support For PLA @base", - "sub_path": "filament/Bambu Support For PLA @base.json" - }, - { - "name": "Bambu Support For PLA/PETG @base", - "sub_path": "filament/Bambu Support For PLA-PETG @base.json" - }, - { - "name": "Bambu Support W @base", - "sub_path": "filament/Bambu Support W @base.json" - }, - { - "name": "Generic PLA @base", - "sub_path": "filament/Generic PLA @base.json" - }, - { - "name": "Generic PLA High Speed @base", - "sub_path": "filament/Generic PLA High Speed @base.json" - }, - { - "name": "Generic PLA Silk @base", - "sub_path": "filament/Generic PLA Silk @base.json" - }, - { - "name": "Generic PLA-CF @base", - "sub_path": "filament/Generic PLA-CF @base.json" - }, - { - "name": "Overture Matte PLA @base", - "sub_path": "filament/Overture/Overture Matte PLA @base.json" - }, - { - "name": "Overture PLA @base", - "sub_path": "filament/Overture/Overture PLA @base.json" - }, - { - "name": "PolyLite PLA @base", - "sub_path": "filament/Polymaker/PolyLite PLA @base.json" - }, - { - "name": "PolyTerra PLA @base", - "sub_path": "filament/Polymaker/PolyTerra PLA @base.json" - }, - { - "name": "SUNLU PLA Marble @base", - "sub_path": "filament/SUNLU/SUNLU Marble PLA @base.json" - }, - { - "name": "SUNLU PLA Matte @base", - "sub_path": "filament/SUNLU/SUNLU PLA Matte @base.json" - }, - { - "name": "SUNLU PLA+ 2.0 @base", - "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @base.json" - }, - { - "name": "SUNLU PLA+ @base", - "sub_path": "filament/SUNLU/SUNLU PLA+ @base.json" - }, - { - "name": "SUNLU Silk PLA+ @base", - "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @base.json" - }, - { - "name": "SUNLU Wood PLA @base", - "sub_path": "filament/SUNLU/SUNLU Wood PLA @base.json" - }, - { - "name": "eSUN PLA+ @base", - "sub_path": "filament/eSUN/eSUN PLA+ @base.json" - }, - { - "name": "Generic PP @base", - "sub_path": "filament/Generic PP @base.json" - }, - { - "name": "Generic PP-CF @base", - "sub_path": "filament/Generic PP-CF @base.json" - }, - { - "name": "Generic PP-GF @base", - "sub_path": "filament/Generic PP-GF @base.json" - }, - { - "name": "Bambu PPA-CF @base", - "sub_path": "filament/Bambu PPA-CF @base.json" - }, - { - "name": "Generic PPA-CF @base", - "sub_path": "filament/Generic PPA-CF @base.json" - }, - { - "name": "Generic PPA-GF @base", - "sub_path": "filament/Generic PPA-GF @base.json" - }, - { - "name": "Bambu PPS-CF @base", - "sub_path": "filament/Bambu PPS-CF @base.json" - }, - { - "name": "Generic PPS @base", - "sub_path": "filament/Generic PPS @base.json" - }, - { - "name": "Generic PPS-CF @base", - "sub_path": "filament/Generic PPS-CF @base.json" - }, - { - "name": "Bambu PVA @base", - "sub_path": "filament/Bambu PVA @base.json" - }, - { - "name": "Generic PVA @base", - "sub_path": "filament/Generic PVA @base.json" - }, - { - "name": "Generic SBS @base", - "sub_path": "filament/Generic SBS @base.json" - }, - { - "name": "Bambu TPU 85A @base", - "sub_path": "filament/Bambu TPU 85A @base.json" - }, - { - "name": "Bambu TPU 90A @base", - "sub_path": "filament/Bambu TPU 90A @base.json" - }, - { - "name": "Bambu TPU 95A @base", - "sub_path": "filament/Bambu TPU 95A @base.json" - }, - { - "name": "Bambu TPU 95A HF @base", - "sub_path": "filament/Bambu TPU 95A HF @base.json" - }, - { - "name": "Bambu TPU for AMS @base", - "sub_path": "filament/Bambu TPU for AMS @base.json" - }, - { - "name": "Generic TPU @base", - "sub_path": "filament/Generic TPU @base.json" - }, - { - "name": "Generic TPU for AMS @base", - "sub_path": "filament/Generic TPU for AMS @base.json" - }, - { - "name": "Bambu ABS @BBL A1", - "sub_path": "filament/Bambu ABS @BBL A1.json" - }, - { - "name": "Bambu ABS @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu ABS @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu ABS @BBL H2C", - "sub_path": "filament/Bambu ABS @BBL H2C.json" - }, - { - "name": "Bambu ABS @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu ABS @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu ABS @BBL H2C 0.6 nozzle", - "sub_path": "filament/Bambu ABS @BBL H2C 0.6 nozzle.json" - }, - { - "name": "Bambu ABS @BBL H2C 0.8 nozzle", - "sub_path": "filament/Bambu ABS @BBL H2C 0.8 nozzle.json" - }, - { - "name": "Bambu ABS @BBL H2D", - "sub_path": "filament/Bambu ABS @BBL H2D.json" - }, - { - "name": "Bambu ABS @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu ABS @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu ABS @BBL H2D 0.6 nozzle", - "sub_path": "filament/Bambu ABS @BBL H2D 0.6 nozzle.json" - }, - { - "name": "Bambu ABS @BBL H2D 0.8 nozzle", - "sub_path": "filament/Bambu ABS @BBL H2D 0.8 nozzle.json" - }, - { - "name": "Bambu ABS @BBL H2DP", - "sub_path": "filament/Bambu ABS @BBL H2DP.json" - }, - { - "name": "Bambu ABS @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu ABS @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu ABS @BBL H2DP 0.6 nozzle", - "sub_path": "filament/Bambu ABS @BBL H2DP 0.6 nozzle.json" - }, - { - "name": "Bambu ABS @BBL H2DP 0.8 nozzle", - "sub_path": "filament/Bambu ABS @BBL H2DP 0.8 nozzle.json" - }, - { - "name": "Bambu ABS @BBL H2S", - "sub_path": "filament/Bambu ABS @BBL H2S.json" - }, - { - "name": "Bambu ABS @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu ABS @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu ABS @BBL H2S 0.6 nozzle", - "sub_path": "filament/Bambu ABS @BBL H2S 0.6 nozzle.json" - }, - { - "name": "Bambu ABS @BBL H2S 0.8 nozzle", - "sub_path": "filament/Bambu ABS @BBL H2S 0.8 nozzle.json" - }, - { - "name": "Bambu ABS @BBL P1P", - "sub_path": "filament/P1P/Bambu ABS @BBL P1P.json" - }, - { - "name": "Bambu ABS @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/Bambu ABS @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu ABS @BBL P2S", - "sub_path": "filament/Bambu ABS @BBL P2S.json" - }, - { - "name": "Bambu ABS @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu ABS @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu ABS @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu ABS @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu ABS @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu ABS @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu ABS @BBL X1C", - "sub_path": "filament/Bambu ABS @BBL X1C.json" - }, - { - "name": "Bambu ABS @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu ABS @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu ABS @BBL X1C 0.8 nozzle", - "sub_path": "filament/Bambu ABS @BBL X1C 0.8 nozzle.json" - }, - { - "name": "Bambu ABS @BBL X1E", - "sub_path": "filament/Bambu ABS @BBL X1E.json" - }, - { - "name": "Bambu ABS @BBL X1E 0.2 nozzle", - "sub_path": "filament/Bambu ABS @BBL X1E 0.2 nozzle.json" - }, - { - "name": "Bambu ABS @BBL X1E 0.8 nozzle", - "sub_path": "filament/Bambu ABS @BBL X1E 0.8 nozzle.json" - }, - { - "name": "Bambu ABS @BBL X2D", - "sub_path": "filament/Bambu ABS @BBL X2D.json" - }, - { - "name": "Bambu ABS @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu ABS @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu ABS @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu ABS @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu ABS @BBL X2D 0.8 nozzle", - "sub_path": "filament/Bambu ABS @BBL X2D 0.8 nozzle.json" - }, - { - "name": "Bambu ABS-GF @BBL A1", - "sub_path": "filament/Bambu ABS-GF @BBL A1.json" - }, - { - "name": "Bambu ABS-GF @BBL H2C", - "sub_path": "filament/Bambu ABS-GF @BBL H2C.json" - }, - { - "name": "Bambu ABS-GF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu ABS-GF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu ABS-GF @BBL H2D", - "sub_path": "filament/Bambu ABS-GF @BBL H2D.json" - }, - { - "name": "Bambu ABS-GF @BBL H2DP", - "sub_path": "filament/Bambu ABS-GF @BBL H2DP.json" - }, - { - "name": "Bambu ABS-GF @BBL H2S", - "sub_path": "filament/Bambu ABS-GF @BBL H2S.json" - }, - { - "name": "Bambu ABS-GF @BBL P1P", - "sub_path": "filament/Bambu ABS-GF @BBL P1P.json" - }, - { - "name": "Bambu ABS-GF @BBL P2S", - "sub_path": "filament/Bambu ABS-GF @BBL P2S.json" - }, - { - "name": "Bambu ABS-GF @BBL X1C", - "sub_path": "filament/Bambu ABS-GF @BBL X1C.json" - }, - { - "name": "Bambu ABS-GF @BBL X2D", - "sub_path": "filament/Bambu ABS-GF @BBL X2D.json" - }, - { - "name": "Bambu ABS-GF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu ABS-GF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu Support for ABS @BBL A1", - "sub_path": "filament/Bambu Support for ABS @BBL A1.json" - }, - { - "name": "Bambu Support for ABS @BBL H2C", - "sub_path": "filament/Bambu Support for ABS @BBL H2C.json" - }, - { - "name": "Bambu Support for ABS @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu Support for ABS @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu Support for ABS @BBL H2D", - "sub_path": "filament/Bambu Support for ABS @BBL H2D.json" - }, - { - "name": "Bambu Support for ABS @BBL H2DP", - "sub_path": "filament/Bambu Support for ABS @BBL H2DP.json" - }, - { - "name": "Bambu Support for ABS @BBL H2S", - "sub_path": "filament/Bambu Support for ABS @BBL H2S.json" - }, - { - "name": "Bambu Support for ABS @BBL P2S", - "sub_path": "filament/Bambu Support for ABS @BBL P2S.json" - }, - { - "name": "Bambu Support for ABS @BBL X1C", - "sub_path": "filament/Bambu Support for ABS @BBL X1C.json" - }, - { - "name": "Bambu Support for ABS @BBL X2D", - "sub_path": "filament/Bambu Support for ABS @BBL X2D.json" - }, - { - "name": "Bambu Support for ABS @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu Support for ABS @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic ABS", - "sub_path": "filament/Generic ABS.json" - }, - { - "name": "Generic ABS @0.2 nozzle", - "sub_path": "filament/Generic ABS @0.2 nozzle.json" - }, - { - "name": "Generic ABS @BBL A1", - "sub_path": "filament/Generic ABS @BBL A1.json" - }, - { - "name": "Generic ABS @BBL A1 0.2 nozzle", - "sub_path": "filament/Generic ABS @BBL A1 0.2 nozzle.json" - }, - { - "name": "Generic ABS @BBL H2C", - "sub_path": "filament/Generic ABS @BBL H2C.json" - }, - { - "name": "Generic ABS @BBL H2C 0.2 nozzle", - "sub_path": "filament/Generic ABS @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Generic ABS @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic ABS @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic ABS @BBL H2D", - "sub_path": "filament/Generic ABS @BBL H2D.json" - }, - { - "name": "Generic ABS @BBL H2D 0.2 nozzle", - "sub_path": "filament/Generic ABS @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Generic ABS @BBL H2S 0.2 nozzle", - "sub_path": "filament/Generic ABS @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Generic ABS @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic ABS @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic ABS @BBL P1P", - "sub_path": "filament/P1P/Generic ABS @BBL P1P.json" - }, - { - "name": "Generic ABS @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/Generic ABS @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Generic ABS @BBL P2S", - "sub_path": "filament/Generic ABS @BBL P2S.json" - }, - { - "name": "Generic ABS @BBL P2S 0.2 nozzle", - "sub_path": "filament/Generic ABS @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Generic ABS @BBL X2D", - "sub_path": "filament/Generic ABS @BBL X2D.json" - }, - { - "name": "Generic ABS @BBL X2D 0.2 nozzle", - "sub_path": "filament/Generic ABS @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Generic ABS @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic ABS @BBL X2D 0.4 nozzle.json" - }, - { - "name": "PolyLite ABS @BBL A1", - "sub_path": "filament/Polymaker/PolyLite ABS @BBL A1.json" - }, - { - "name": "PolyLite ABS @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite ABS @BBL A1 0.2 nozzle.json" - }, - { - "name": "PolyLite ABS @BBL H2D", - "sub_path": "filament/Polymaker/PolyLite ABS @BBL H2D.json" - }, - { - "name": "PolyLite ABS @BBL H2D 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite ABS @BBL H2D 0.2 nozzle.json" - }, - { - "name": "PolyLite ABS @BBL H2DP", - "sub_path": "filament/PolyLite ABS @BBL H2DP.json" - }, - { - "name": "PolyLite ABS @BBL H2DP 0.2 nozzle", - "sub_path": "filament/PolyLite ABS @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "PolyLite ABS @BBL P1P", - "sub_path": "filament/Polymaker/PolyLite ABS @BBL P1P.json" - }, - { - "name": "PolyLite ABS @BBL X1C", - "sub_path": "filament/Polymaker/PolyLite ABS @BBL X1C.json" - }, - { - "name": "PolyLite ABS @BBL X1E", - "sub_path": "filament/Polymaker/PolyLite ABS @BBL X1E.json" - }, - { - "name": "PolyLite ABS @BBL X1E 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite ABS @BBL X1E 0.2 nozzle.json" - }, - { - "name": "Bambu ASA @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu ASA @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu ASA @BBL A1 0.4 nozzle", - "sub_path": "filament/Bambu ASA @BBL A1 0.4 nozzle.json" - }, - { - "name": "Bambu ASA @BBL A1 0.6 nozzle", - "sub_path": "filament/Bambu ASA @BBL A1 0.6 nozzle.json" - }, - { - "name": "Bambu ASA @BBL H2C", - "sub_path": "filament/Bambu ASA @BBL H2C.json" - }, - { - "name": "Bambu ASA @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu ASA @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu ASA @BBL H2C 0.6 nozzle", - "sub_path": "filament/Bambu ASA @BBL H2C 0.6 nozzle.json" - }, - { - "name": "Bambu ASA @BBL H2C 0.8 nozzle", - "sub_path": "filament/Bambu ASA @BBL H2C 0.8 nozzle.json" - }, - { - "name": "Bambu ASA @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu ASA @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu ASA @BBL H2D 0.4 nozzle", - "sub_path": "filament/Bambu ASA @BBL H2D 0.4 nozzle.json" - }, - { - "name": "Bambu ASA @BBL H2D 0.6 nozzle", - "sub_path": "filament/Bambu ASA @BBL H2D 0.6 nozzle.json" - }, - { - "name": "Bambu ASA @BBL H2D 0.8 nozzle", - "sub_path": "filament/Bambu ASA @BBL H2D 0.8 nozzle.json" - }, - { - "name": "Bambu ASA @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu ASA @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu ASA @BBL H2DP 0.4 nozzle", - "sub_path": "filament/Bambu ASA @BBL H2DP 0.4 nozzle.json" - }, - { - "name": "Bambu ASA @BBL H2DP 0.6 nozzle", - "sub_path": "filament/Bambu ASA @BBL H2DP 0.6 nozzle.json" - }, - { - "name": "Bambu ASA @BBL H2DP 0.8 nozzle", - "sub_path": "filament/Bambu ASA @BBL H2DP 0.8 nozzle.json" - }, - { - "name": "Bambu ASA @BBL H2S", - "sub_path": "filament/Bambu ASA @BBL H2S.json" - }, - { - "name": "Bambu ASA @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu ASA @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu ASA @BBL H2S 0.6 nozzle", - "sub_path": "filament/Bambu ASA @BBL H2S 0.6 nozzle.json" - }, - { - "name": "Bambu ASA @BBL H2S 0.8 nozzle", - "sub_path": "filament/Bambu ASA @BBL H2S 0.8 nozzle.json" - }, - { - "name": "Bambu ASA @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu ASA @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu ASA @BBL P2S 0.4 nozzle", - "sub_path": "filament/Bambu ASA @BBL P2S 0.4 nozzle.json" - }, - { - "name": "Bambu ASA @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu ASA @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu ASA @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu ASA @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu ASA @BBL X1 0.2 nozzle", - "sub_path": "filament/Bambu ASA @BBL X1 0.2 nozzle.json" - }, - { - "name": "Bambu ASA @BBL X1 0.6 nozzle", - "sub_path": "filament/Bambu ASA @BBL X1 0.6 nozzle.json" - }, - { - "name": "Bambu ASA @BBL X1C", - "sub_path": "filament/Bambu ASA @BBL X1C.json" - }, - { - "name": "Bambu ASA @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu ASA @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu ASA @BBL X1C 0.4 nozzle", - "sub_path": "filament/Bambu ASA @BBL X1C 0.4 nozzle.json" - }, - { - "name": "Bambu ASA @BBL X1E", - "sub_path": "filament/Bambu ASA @BBL X1E.json" - }, - { - "name": "Bambu ASA @BBL X1E 0.2 nozzle", - "sub_path": "filament/Bambu ASA @BBL X1E 0.2 nozzle.json" - }, - { - "name": "Bambu ASA @BBL X1E 0.4 nozzle", - "sub_path": "filament/Bambu ASA @BBL X1E 0.4 nozzle.json" - }, - { - "name": "Bambu ASA @BBL X2D", - "sub_path": "filament/Bambu ASA @BBL X2D.json" - }, - { - "name": "Bambu ASA @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu ASA @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu ASA @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu ASA @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu ASA-Aero @BBL A1", - "sub_path": "filament/Bambu ASA-Aero @BBL A1.json" - }, - { - "name": "Bambu ASA-Aero @BBL H2C", - "sub_path": "filament/Bambu ASA-Aero @BBL H2C.json" - }, - { - "name": "Bambu ASA-Aero @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu ASA-Aero @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu ASA-Aero @BBL H2D", - "sub_path": "filament/Bambu ASA-Aero @BBL H2D.json" - }, - { - "name": "Bambu ASA-Aero @BBL H2DP", - "sub_path": "filament/Bambu ASA-Aero @BBL H2DP.json" - }, - { - "name": "Bambu ASA-Aero @BBL H2S", - "sub_path": "filament/Bambu ASA-Aero @BBL H2S.json" - }, - { - "name": "Bambu ASA-Aero @BBL P1P", - "sub_path": "filament/Bambu ASA-Aero @BBL P1P.json" - }, - { - "name": "Bambu ASA-Aero @BBL P2S", - "sub_path": "filament/Bambu ASA-Aero @BBL P2S.json" - }, - { - "name": "Bambu ASA-Aero @BBL X1C", - "sub_path": "filament/Bambu ASA-Aero @BBL X1C.json" - }, - { - "name": "Bambu ASA-Aero @BBL X2D", - "sub_path": "filament/Bambu ASA-Aero @BBL X2D.json" - }, - { - "name": "Bambu ASA-Aero @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu ASA-Aero @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu ASA-CF @BBL A1", - "sub_path": "filament/Bambu ASA-CF @BBL A1.json" - }, - { - "name": "Bambu ASA-CF @BBL A1 0.6 nozzle", - "sub_path": "filament/Bambu ASA-CF @BBL A1 0.6 nozzle.json" - }, - { - "name": "Bambu ASA-CF @BBL H2C", - "sub_path": "filament/Bambu ASA-CF @BBL H2C.json" - }, - { - "name": "Bambu ASA-CF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu ASA-CF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu ASA-CF @BBL H2D 0.4 nozzle", - "sub_path": "filament/Bambu ASA-CF @BBL H2D 0.4 nozzle.json" - }, - { - "name": "Bambu ASA-CF @BBL H2D 0.6 nozzle", - "sub_path": "filament/Bambu ASA-CF @BBL H2D 0.6 nozzle.json" - }, - { - "name": "Bambu ASA-CF @BBL H2DP 0.4 nozzle", - "sub_path": "filament/Bambu ASA-CF @BBL H2DP 0.4 nozzle.json" - }, - { - "name": "Bambu ASA-CF @BBL H2DP 0.6 nozzle", - "sub_path": "filament/Bambu ASA-CF @BBL H2DP 0.6 nozzle.json" - }, - { - "name": "Bambu ASA-CF @BBL H2S", - "sub_path": "filament/Bambu ASA-CF @BBL H2S.json" - }, - { - "name": "Bambu ASA-CF @BBL P1P", - "sub_path": "filament/Bambu ASA-CF @BBL P1P.json" - }, - { - "name": "Bambu ASA-CF @BBL P1P 0.6 nozzle", - "sub_path": "filament/Bambu ASA-CF @BBL P1P 0.6 nozzle.json" - }, - { - "name": "Bambu ASA-CF @BBL P2S 0.4 nozzle", - "sub_path": "filament/Bambu ASA-CF @BBL P2S 0.4 nozzle.json" - }, - { - "name": "Bambu ASA-CF @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu ASA-CF @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu ASA-CF @BBL X1C", - "sub_path": "filament/Bambu ASA-CF @BBL X1C.json" - }, - { - "name": "Bambu ASA-CF @BBL X1C 0.6 nozzle", - "sub_path": "filament/Bambu ASA-CF @BBL X1C 0.6 nozzle.json" - }, - { - "name": "Bambu ASA-CF @BBL X2D", - "sub_path": "filament/Bambu ASA-CF @BBL X2D.json" - }, - { - "name": "Bambu ASA-CF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu ASA-CF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic ASA", - "sub_path": "filament/Generic ASA.json" - }, - { - "name": "Generic ASA @0.2 nozzle", - "sub_path": "filament/Generic ASA @0.2 nozzle.json" - }, - { - "name": "Generic ASA @BBL A1", - "sub_path": "filament/Generic ASA @BBL A1.json" - }, - { - "name": "Generic ASA @BBL A1 0.2 nozzle", - "sub_path": "filament/Generic ASA @BBL A1 0.2 nozzle.json" - }, - { - "name": "Generic ASA @BBL H2C", - "sub_path": "filament/Generic ASA @BBL H2C.json" - }, - { - "name": "Generic ASA @BBL H2C 0.2 nozzle", - "sub_path": "filament/Generic ASA @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Generic ASA @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic ASA @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic ASA @BBL H2D", - "sub_path": "filament/Generic ASA @BBL H2D.json" - }, - { - "name": "Generic ASA @BBL H2D 0.2 nozzle", - "sub_path": "filament/Generic ASA @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Generic ASA @BBL H2S 0.2 nozzle", - "sub_path": "filament/Generic ASA @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Generic ASA @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic ASA @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic ASA @BBL P1P", - "sub_path": "filament/P1P/Generic ASA @BBL P1P.json" - }, - { - "name": "Generic ASA @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/Generic ASA @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Generic ASA @BBL P2S", - "sub_path": "filament/Generic ASA @BBL P2S.json" - }, - { - "name": "Generic ASA @BBL P2S 0.2 nozzle", - "sub_path": "filament/Generic ASA @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Generic ASA @BBL X2D", - "sub_path": "filament/Generic ASA @BBL X2D.json" - }, - { - "name": "Generic ASA @BBL X2D 0.2 nozzle", - "sub_path": "filament/Generic ASA @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Generic ASA @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic ASA @BBL X2D 0.4 nozzle.json" - }, - { - "name": "PolyLite ASA @BBL A1", - "sub_path": "filament/Polymaker/PolyLite ASA @BBL A1.json" - }, - { - "name": "PolyLite ASA @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite ASA @BBL A1 0.2 nozzle.json" - }, - { - "name": "PolyLite ASA @BBL H2D", - "sub_path": "filament/Polymaker/PolyLite ASA @BBL H2D.json" - }, - { - "name": "PolyLite ASA @BBL H2D 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite ASA @BBL H2D 0.2 nozzle.json" - }, - { - "name": "PolyLite ASA @BBL H2DP", - "sub_path": "filament/PolyLite ASA @BBL H2DP.json" - }, - { - "name": "PolyLite ASA @BBL H2DP 0.2 nozzle", - "sub_path": "filament/PolyLite ASA @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "PolyLite ASA @BBL P1P", - "sub_path": "filament/Polymaker/PolyLite ASA @BBL P1P.json" - }, - { - "name": "PolyLite ASA @BBL X1C", - "sub_path": "filament/Polymaker/PolyLite ASA @BBL X1C.json" - }, - { - "name": "PolyLite ASA @BBL X1E", - "sub_path": "filament/Polymaker/PolyLite ASA @BBL X1E.json" - }, - { - "name": "Generic BVOH @BBL A1", - "sub_path": "filament/Generic BVOH @BBL A1.json" - }, - { - "name": "Generic BVOH @BBL A1M", - "sub_path": "filament/Generic BVOH @BBL A1M.json" - }, - { - "name": "Generic BVOH @BBL A2L", - "sub_path": "filament/Generic BVOH @BBL A2L.json" - }, - { - "name": "Generic BVOH @BBL H2C", - "sub_path": "filament/Generic BVOH @BBL H2C.json" - }, - { - "name": "Generic BVOH @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic BVOH @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic BVOH @BBL H2D", - "sub_path": "filament/Generic BVOH @BBL H2D.json" - }, - { - "name": "Generic BVOH @BBL H2DP", - "sub_path": "filament/Generic BVOH @BBL H2DP.json" - }, - { - "name": "Generic BVOH @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic BVOH @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic BVOH @BBL P2S", - "sub_path": "filament/Generic BVOH @BBL P2S.json" - }, - { - "name": "Generic BVOH @BBL X1C", - "sub_path": "filament/Generic BVOH @BBL X1C.json" - }, - { - "name": "Generic BVOH @BBL X2D", - "sub_path": "filament/Generic BVOH @BBL X2D.json" - }, - { - "name": "Generic BVOH @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic BVOH @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic EVA @BBL A1", - "sub_path": "filament/Generic EVA @BBL A1.json" - }, - { - "name": "Generic EVA @BBL A1M", - "sub_path": "filament/Generic EVA @BBL A1M.json" - }, - { - "name": "Generic EVA @BBL A2L", - "sub_path": "filament/Generic EVA @BBL A2L.json" - }, - { - "name": "Generic EVA @BBL H2C", - "sub_path": "filament/Generic EVA @BBL H2C.json" - }, - { - "name": "Generic EVA @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic EVA @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic EVA @BBL H2D", - "sub_path": "filament/Generic EVA @BBL H2D.json" - }, - { - "name": "Generic EVA @BBL H2DP", - "sub_path": "filament/Generic EVA @BBL H2DP.json" - }, - { - "name": "Generic EVA @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic EVA @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic EVA @BBL P2S", - "sub_path": "filament/Generic EVA @BBL P2S.json" - }, - { - "name": "Generic EVA @BBL X1C", - "sub_path": "filament/Generic EVA @BBL X1C.json" - }, - { - "name": "Generic EVA @BBL X2D", - "sub_path": "filament/Generic EVA @BBL X2D.json" - }, - { - "name": "Generic EVA @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic EVA @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic HIPS @BBL A1", - "sub_path": "filament/Generic HIPS @BBL A1.json" - }, - { - "name": "Generic HIPS @BBL A1 0.2 nozzle", - "sub_path": "filament/Generic HIPS @BBL A1 0.2 nozzle.json" - }, - { - "name": "Generic HIPS @BBL A1M", - "sub_path": "filament/Generic HIPS @BBL A1M.json" - }, - { - "name": "Generic HIPS @BBL A1M 0.2 nozzle", - "sub_path": "filament/Generic HIPS @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Generic HIPS @BBL A2L", - "sub_path": "filament/Generic HIPS @BBL A2L.json" - }, - { - "name": "Generic HIPS @BBL A2L 0.2 nozzle", - "sub_path": "filament/Generic HIPS @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Generic HIPS @BBL H2C", - "sub_path": "filament/Generic HIPS @BBL H2C.json" - }, - { - "name": "Generic HIPS @BBL H2C 0.2 nozzle", - "sub_path": "filament/Generic HIPS @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Generic HIPS @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic HIPS @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic HIPS @BBL H2D", - "sub_path": "filament/Generic HIPS @BBL H2D.json" - }, - { - "name": "Generic HIPS @BBL H2D 0.2 nozzle", - "sub_path": "filament/Generic HIPS @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Generic HIPS @BBL H2DP", - "sub_path": "filament/Generic HIPS @BBL H2DP.json" - }, - { - "name": "Generic HIPS @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Generic HIPS @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Generic HIPS @BBL H2S 0.2 nozzle", - "sub_path": "filament/Generic HIPS @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Generic HIPS @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic HIPS @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic HIPS @BBL P2S", - "sub_path": "filament/Generic HIPS @BBL P2S.json" - }, - { - "name": "Generic HIPS @BBL P2S 0.2 nozzle", - "sub_path": "filament/Generic HIPS @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Generic HIPS @BBL X1C", - "sub_path": "filament/Generic HIPS @BBL X1C.json" - }, - { - "name": "Generic HIPS @BBL X1C 0.2 nozzle", - "sub_path": "filament/Generic HIPS @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Generic HIPS @BBL X2D", - "sub_path": "filament/Generic HIPS @BBL X2D.json" - }, - { - "name": "Generic HIPS @BBL X2D 0.2 nozzle", - "sub_path": "filament/Generic HIPS @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Generic HIPS @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic HIPS @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PA-CF @BBL A1", - "sub_path": "filament/Bambu PA-CF @BBL A1.json" - }, - { - "name": "Bambu PA-CF @BBL H2C", - "sub_path": "filament/Bambu PA-CF @BBL H2C.json" - }, - { - "name": "Bambu PA-CF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PA-CF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PA-CF @BBL H2D", - "sub_path": "filament/Bambu PA-CF @BBL H2D.json" - }, - { - "name": "Bambu PA-CF @BBL H2DP", - "sub_path": "filament/Bambu PA-CF @BBL H2DP.json" - }, - { - "name": "Bambu PA-CF @BBL H2S", - "sub_path": "filament/Bambu PA-CF @BBL H2S.json" - }, - { - "name": "Bambu PA-CF @BBL P1P", - "sub_path": "filament/P1P/Bambu PA-CF @BBL P1P.json" - }, - { - "name": "Bambu PA-CF @BBL P2S", - "sub_path": "filament/Bambu PA-CF @BBL P2S.json" - }, - { - "name": "Bambu PA-CF @BBL X1C", - "sub_path": "filament/Bambu PA-CF @BBL X1C.json" - }, - { - "name": "Bambu PA-CF @BBL X1E", - "sub_path": "filament/Bambu PA-CF @BBL X1E.json" - }, - { - "name": "Bambu PA-CF @BBL X2D", - "sub_path": "filament/Bambu PA-CF @BBL X2D.json" - }, - { - "name": "Bambu PA-CF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PA-CF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PA6-CF @BBL A1", - "sub_path": "filament/Bambu PA6-CF @BBL A1.json" - }, - { - "name": "Bambu PA6-CF @BBL H2C", - "sub_path": "filament/Bambu PA6-CF @BBL H2C.json" - }, - { - "name": "Bambu PA6-CF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PA6-CF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PA6-CF @BBL H2D", - "sub_path": "filament/Bambu PA6-CF @BBL H2D.json" - }, - { - "name": "Bambu PA6-CF @BBL H2DP", - "sub_path": "filament/Bambu PA6-CF @BBL H2DP.json" - }, - { - "name": "Bambu PA6-CF @BBL H2S", - "sub_path": "filament/Bambu PA6-CF @BBL H2S.json" - }, - { - "name": "Bambu PA6-CF @BBL P2S", - "sub_path": "filament/Bambu PA6-CF @BBL P2S.json" - }, - { - "name": "Bambu PA6-CF @BBL X1C", - "sub_path": "filament/Bambu PA6-CF @BBL X1C.json" - }, - { - "name": "Bambu PA6-CF @BBL X1E", - "sub_path": "filament/Bambu PA6-CF @BBL X1E.json" - }, - { - "name": "Bambu PA6-CF @BBL X2D", - "sub_path": "filament/Bambu PA6-CF @BBL X2D.json" - }, - { - "name": "Bambu PA6-CF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PA6-CF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PA6-GF @BBL A1", - "sub_path": "filament/Bambu PA6-GF @BBL A1.json" - }, - { - "name": "Bambu PA6-GF @BBL H2C", - "sub_path": "filament/Bambu PA6-GF @BBL H2C.json" - }, - { - "name": "Bambu PA6-GF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PA6-GF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PA6-GF @BBL H2D", - "sub_path": "filament/Bambu PA6-GF @BBL H2D.json" - }, - { - "name": "Bambu PA6-GF @BBL H2DP", - "sub_path": "filament/Bambu PA6-GF @BBL H2DP.json" - }, - { - "name": "Bambu PA6-GF @BBL H2S", - "sub_path": "filament/Bambu PA6-GF @BBL H2S.json" - }, - { - "name": "Bambu PA6-GF @BBL P1P", - "sub_path": "filament/Bambu PA6-GF @BBL P1P.json" - }, - { - "name": "Bambu PA6-GF @BBL P2S", - "sub_path": "filament/Bambu PA6-GF @BBL P2S.json" - }, - { - "name": "Bambu PA6-GF @BBL X1C", - "sub_path": "filament/Bambu PA6-GF @BBL X1C.json" - }, - { - "name": "Bambu PA6-GF @BBL X2D", - "sub_path": "filament/Bambu PA6-GF @BBL X2D.json" - }, - { - "name": "Bambu PA6-GF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PA6-GF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PAHT-CF @BBL A1", - "sub_path": "filament/Bambu PAHT-CF @BBL A1.json" - }, - { - "name": "Bambu PAHT-CF @BBL H2C", - "sub_path": "filament/Bambu PAHT-CF @BBL H2C.json" - }, - { - "name": "Bambu PAHT-CF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PAHT-CF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PAHT-CF @BBL H2D", - "sub_path": "filament/Bambu PAHT-CF @BBL H2D.json" - }, - { - "name": "Bambu PAHT-CF @BBL H2DP", - "sub_path": "filament/Bambu PAHT-CF @BBL H2DP.json" - }, - { - "name": "Bambu PAHT-CF @BBL H2S", - "sub_path": "filament/Bambu PAHT-CF @BBL H2S.json" - }, - { - "name": "Bambu PAHT-CF @BBL P1P", - "sub_path": "filament/P1P/Bambu PAHT-CF @BBL P1P.json" - }, - { - "name": "Bambu PAHT-CF @BBL P2S", - "sub_path": "filament/Bambu PAHT-CF @BBL P2S.json" - }, - { - "name": "Bambu PAHT-CF @BBL X1C", - "sub_path": "filament/Bambu PAHT-CF @BBL X1C.json" - }, - { - "name": "Bambu PAHT-CF @BBL X2D", - "sub_path": "filament/Bambu PAHT-CF @BBL X2D.json" - }, - { - "name": "Bambu PAHT-CF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PAHT-CF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu Support For PA/PET @BBL A1", - "sub_path": "filament/Bambu Support For PA PET @BBL A1.json" - }, - { - "name": "Bambu Support For PA/PET @BBL H2C", - "sub_path": "filament/Bambu Support For PA PET @BBL H2C.json" - }, - { - "name": "Bambu Support For PA/PET @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu Support For PA PET @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu Support For PA/PET @BBL H2D", - "sub_path": "filament/Bambu Support For PA PET @BBL H2D.json" - }, - { - "name": "Bambu Support For PA/PET @BBL H2DP", - "sub_path": "filament/Bambu Support For PA PET @BBL H2DP.json" - }, - { - "name": "Bambu Support For PA/PET @BBL H2S", - "sub_path": "filament/Bambu Support For PA PET @BBL H2S.json" - }, - { - "name": "Bambu Support For PA/PET @BBL P1P", - "sub_path": "filament/P1P/Bambu Support For PA PET @BBL P1P.json" - }, - { - "name": "Bambu Support For PA/PET @BBL P2S", - "sub_path": "filament/Bambu Support For PA PET @BBL P2S.json" - }, - { - "name": "Bambu Support For PA/PET @BBL X1C", - "sub_path": "filament/Bambu Support For PA PET @BBL X1C.json" - }, - { - "name": "Bambu Support For PA/PET @BBL X2D", - "sub_path": "filament/Bambu Support For PA PET @BBL X2D.json" - }, - { - "name": "Bambu Support For PA/PET @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu Support For PA PET @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu Support G @BBL A1", - "sub_path": "filament/Bambu Support G @BBL A1.json" - }, - { - "name": "Bambu Support G @BBL H2C", - "sub_path": "filament/Bambu Support G @BBL H2C.json" - }, - { - "name": "Bambu Support G @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu Support G @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu Support G @BBL H2D", - "sub_path": "filament/Bambu Support G @BBL H2D.json" - }, - { - "name": "Bambu Support G @BBL H2DP", - "sub_path": "filament/Bambu Support G @BBL H2DP.json" - }, - { - "name": "Bambu Support G @BBL H2S", - "sub_path": "filament/Bambu Support G @BBL H2S.json" - }, - { - "name": "Bambu Support G @BBL P1P", - "sub_path": "filament/P1P/Bambu Support G @BBL P1P.json" - }, - { - "name": "Bambu Support G @BBL P2S", - "sub_path": "filament/Bambu Support G @BBL P2S.json" - }, - { - "name": "Bambu Support G @BBL X1C", - "sub_path": "filament/Bambu Support G @BBL X1C.json" - }, - { - "name": "Bambu Support G @BBL X1E", - "sub_path": "filament/Bambu Support G @BBL X1E.json" - }, - { - "name": "Bambu Support G @BBL X2D", - "sub_path": "filament/Bambu Support G @BBL X2D.json" - }, - { - "name": "Bambu Support G @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu Support G @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Fiberon PA12-CF @BBL H2D", - "sub_path": "filament/Polymaker/Fiberon PA12-CF @BBL H2D.json" - }, - { - "name": "Fiberon PA12-CF @BBL X1C", - "sub_path": "filament/Polymaker/Fiberon PA12-CF @BBL X1C.json" - }, - { - "name": "Fiberon PA6-CF @BBL H2D", - "sub_path": "filament/Polymaker/Fiberon PA6-CF @BBL H2D.json" - }, - { - "name": "Fiberon PA6-CF @BBL X1C", - "sub_path": "filament/Polymaker/Fiberon PA6-CF @BBL X1C.json" - }, - { - "name": "Fiberon PA6-GF @BBL H2D", - "sub_path": "filament/Polymaker/Fiberon PA6-GF @BBL H2D.json" - }, - { - "name": "Fiberon PA6-GF @BBL X1C", - "sub_path": "filament/Polymaker/Fiberon PA6-GF @BBL X1C.json" - }, - { - "name": "Fiberon PA612-CF @BBL H2D", - "sub_path": "filament/Polymaker/Fiberon PA612-CF @BBL H2D.json" - }, - { - "name": "Fiberon PA612-CF @BBL X1C", - "sub_path": "filament/Polymaker/Fiberon PA612-CF @BBL X1C.json" - }, - { - "name": "Generic PA", - "sub_path": "filament/Generic PA.json" - }, - { - "name": "Generic PA @BBL H2C", - "sub_path": "filament/Generic PA @BBL H2C.json" - }, - { - "name": "Generic PA @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PA @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PA @BBL H2D", - "sub_path": "filament/Generic PA @BBL H2D.json" - }, - { - "name": "Generic PA @BBL H2DP", - "sub_path": "filament/Generic PA @BBL H2DP.json" - }, - { - "name": "Generic PA @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic PA @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic PA @BBL P1P", - "sub_path": "filament/P1P/Generic PA @BBL P1P.json" - }, - { - "name": "Generic PA @BBL P2S", - "sub_path": "filament/Generic PA @BBL P2S.json" - }, - { - "name": "Generic PA @BBL X2D", - "sub_path": "filament/Generic PA @BBL X2D.json" - }, - { - "name": "Generic PA @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PA @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic PA-CF", - "sub_path": "filament/Generic PA-CF.json" - }, - { - "name": "Generic PA-CF @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic PA-CF @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic PA-CF @BBL P1P", - "sub_path": "filament/P1P/Generic PA-CF @BBL P1P.json" - }, - { - "name": "Generic PA-CF @BBL P2S", - "sub_path": "filament/Generic PA-CF @BBL P2S.json" - }, - { - "name": "Generic PA-CF @BBL X2D", - "sub_path": "filament/Generic PA-CF @BBL X2D.json" - }, - { - "name": "Generic PA-CF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PA-CF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PC @BBL A1", - "sub_path": "filament/Bambu PC @BBL A1.json" - }, - { - "name": "Bambu PC @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PC @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PC @BBL H2C", - "sub_path": "filament/Bambu PC @BBL H2C.json" - }, - { - "name": "Bambu PC @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu PC @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu PC @BBL H2C 0.6 nozzle", - "sub_path": "filament/Bambu PC @BBL H2C 0.6 nozzle.json" - }, - { - "name": "Bambu PC @BBL H2C 0.8 nozzle", - "sub_path": "filament/Bambu PC @BBL H2C 0.8 nozzle.json" - }, - { - "name": "Bambu PC @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu PC @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu PC @BBL H2D 0.4 nozzle", - "sub_path": "filament/Bambu PC @BBL H2D 0.4 nozzle.json" - }, - { - "name": "Bambu PC @BBL H2D 0.6 nozzle", - "sub_path": "filament/Bambu PC @BBL H2D 0.6 nozzle.json" - }, - { - "name": "Bambu PC @BBL H2D 0.8 nozzle", - "sub_path": "filament/Bambu PC @BBL H2D 0.8 nozzle.json" - }, - { - "name": "Bambu PC @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PC @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PC @BBL H2DP 0.4 nozzle", - "sub_path": "filament/Bambu PC @BBL H2DP 0.4 nozzle.json" - }, - { - "name": "Bambu PC @BBL H2DP 0.6 nozzle", - "sub_path": "filament/Bambu PC @BBL H2DP 0.6 nozzle.json" - }, - { - "name": "Bambu PC @BBL H2DP 0.8 nozzle", - "sub_path": "filament/Bambu PC @BBL H2DP 0.8 nozzle.json" - }, - { - "name": "Bambu PC @BBL H2S", - "sub_path": "filament/Bambu PC @BBL H2S.json" - }, - { - "name": "Bambu PC @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PC @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PC @BBL H2S 0.6 nozzle", - "sub_path": "filament/Bambu PC @BBL H2S 0.6 nozzle.json" - }, - { - "name": "Bambu PC @BBL H2S 0.8 nozzle", - "sub_path": "filament/Bambu PC @BBL H2S 0.8 nozzle.json" - }, - { - "name": "Bambu PC @BBL P1P", - "sub_path": "filament/P1P/Bambu PC @BBL P1P.json" - }, - { - "name": "Bambu PC @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/Bambu PC @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu PC @BBL P2S 0.4 nozzle", - "sub_path": "filament/Bambu PC @BBL P2S 0.4 nozzle.json" - }, - { - "name": "Bambu PC @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PC @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PC @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu PC @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu PC @BBL X1C", - "sub_path": "filament/Bambu PC @BBL X1C.json" - }, - { - "name": "Bambu PC @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PC @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PC @BBL X1C 0.6 nozzle", - "sub_path": "filament/Bambu PC @BBL X1C 0.6 nozzle.json" - }, - { - "name": "Bambu PC @BBL X1C 0.8 nozzle", - "sub_path": "filament/Bambu PC @BBL X1C 0.8 nozzle.json" - }, - { - "name": "Bambu PC @BBL X1E", - "sub_path": "filament/Bambu PC @BBL X1E.json" - }, - { - "name": "Bambu PC @BBL X1E 0.2 nozzle", - "sub_path": "filament/Bambu PC @BBL X1E 0.2 nozzle.json" - }, - { - "name": "Bambu PC @BBL X1E 0.6 nozzle", - "sub_path": "filament/Bambu PC @BBL X1E 0.6 nozzle.json" - }, - { - "name": "Bambu PC @BBL X1E 0.8 nozzle", - "sub_path": "filament/Bambu PC @BBL X1E 0.8 nozzle.json" - }, - { - "name": "Bambu PC @BBL X2D", - "sub_path": "filament/Bambu PC @BBL X2D.json" - }, - { - "name": "Bambu PC @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PC @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PC @BBL X2D 0.8 nozzle", - "sub_path": "filament/Bambu PC @BBL X2D 0.8 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL A1", - "sub_path": "filament/Bambu PC FR @BBL A1.json" - }, - { - "name": "Bambu PC FR @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PC FR @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL H2C", - "sub_path": "filament/Bambu PC FR @BBL H2C.json" - }, - { - "name": "Bambu PC FR @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu PC FR @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PC FR @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu PC FR @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL H2D 0.4 nozzle", - "sub_path": "filament/Bambu PC FR @BBL H2D 0.4 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL H2D 0.6 nozzle", - "sub_path": "filament/Bambu PC FR @BBL H2D 0.6 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL H2D 0.8 nozzle", - "sub_path": "filament/Bambu PC FR @BBL H2D 0.8 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PC FR @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL H2DP 0.4 nozzle", - "sub_path": "filament/Bambu PC FR @BBL H2DP 0.4 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL H2DP 0.6 nozzle", - "sub_path": "filament/Bambu PC FR @BBL H2DP 0.6 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL H2DP 0.8 nozzle", - "sub_path": "filament/Bambu PC FR @BBL H2DP 0.8 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL H2S", - "sub_path": "filament/Bambu PC FR @BBL H2S.json" - }, - { - "name": "Bambu PC FR @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PC FR @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL P1P", - "sub_path": "filament/Bambu PC FR @BBL P1P.json" - }, - { - "name": "Bambu PC FR @BBL P1P 0.2 nozzle", - "sub_path": "filament/Bambu PC FR @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL P1S", - "sub_path": "filament/Bambu PC FR @BBL P1S.json" - }, - { - "name": "Bambu PC FR @BBL P1S 0.2 nozzle", - "sub_path": "filament/Bambu PC FR @BBL P1S 0.2 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL P1S 0.6 nozzle", - "sub_path": "filament/Bambu PC FR @BBL P1S 0.6 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL P1S 0.8 nozzle", - "sub_path": "filament/Bambu PC FR @BBL P1S 0.8 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL P2S 0.4 nozzle", - "sub_path": "filament/Bambu PC FR @BBL P2S 0.4 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PC FR @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu PC FR @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL X1C", - "sub_path": "filament/Bambu PC FR @BBL X1C.json" - }, - { - "name": "Bambu PC FR @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PC FR @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL X1C 0.6 nozzle", - "sub_path": "filament/Bambu PC FR @BBL X1C 0.6 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL X1C 0.8 nozzle", - "sub_path": "filament/Bambu PC FR @BBL X1C 0.8 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL X1E", - "sub_path": "filament/Bambu PC FR @BBL X1E.json" - }, - { - "name": "Bambu PC FR @BBL X1E 0.2 nozzle", - "sub_path": "filament/Bambu PC FR @BBL X1E 0.2 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL X1E 0.6 nozzle", - "sub_path": "filament/Bambu PC FR @BBL X1E 0.6 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL X1E 0.8 nozzle", - "sub_path": "filament/Bambu PC FR @BBL X1E 0.8 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL X2D", - "sub_path": "filament/Bambu PC FR @BBL X2D.json" - }, - { - "name": "Bambu PC FR @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PC FR @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PC FR @BBL X2D 0.8 nozzle", - "sub_path": "filament/Bambu PC FR @BBL X2D 0.8 nozzle.json" - }, - { - "name": "Generic PC", - "sub_path": "filament/Generic PC.json" - }, - { - "name": "Generic PC @0.2 nozzle", - "sub_path": "filament/Generic PC @0.2 nozzle.json" - }, - { - "name": "Generic PC @BBL A1", - "sub_path": "filament/Generic PC @BBL A1.json" - }, - { - "name": "Generic PC @BBL A1 0.2 nozzle", - "sub_path": "filament/Generic PC @BBL A1 0.2 nozzle.json" - }, - { - "name": "Generic PC @BBL H2C", - "sub_path": "filament/Generic PC @BBL H2C.json" - }, - { - "name": "Generic PC @BBL H2C 0.2 nozzle", - "sub_path": "filament/Generic PC @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Generic PC @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PC @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PC @BBL H2D", - "sub_path": "filament/Generic PC @BBL H2D.json" - }, - { - "name": "Generic PC @BBL H2D 0.2 nozzle", - "sub_path": "filament/Generic PC @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Generic PC @BBL H2S", - "sub_path": "filament/Generic PC @BBL H2S.json" - }, - { - "name": "Generic PC @BBL H2S 0.2 nozzle", - "sub_path": "filament/Generic PC @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Generic PC @BBL P1P", - "sub_path": "filament/P1P/Generic PC @BBL P1P.json" - }, - { - "name": "Generic PC @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/Generic PC @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Generic PC @BBL X2D", - "sub_path": "filament/Generic PC @BBL X2D.json" - }, - { - "name": "Generic PC @BBL X2D 0.2 nozzle", - "sub_path": "filament/Generic PC @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Generic PC @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PC @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic PCTG @BBL A1", - "sub_path": "filament/Generic PCTG @BBL A1.json" - }, - { - "name": "Generic PCTG @BBL A1M", - "sub_path": "filament/Generic PCTG @BBL A1M.json" - }, - { - "name": "Generic PCTG @BBL A2L", - "sub_path": "filament/Generic PCTG @BBL A2L.json" - }, - { - "name": "Generic PCTG @BBL H2C", - "sub_path": "filament/Generic PCTG @BBL H2C.json" - }, - { - "name": "Generic PCTG @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PCTG @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PCTG @BBL H2D", - "sub_path": "filament/Generic PCTG @BBL H2D.json" - }, - { - "name": "Generic PCTG @BBL H2DP", - "sub_path": "filament/Generic PCTG @BBL H2DP.json" - }, - { - "name": "Generic PCTG @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic PCTG @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic PCTG @BBL P2S", - "sub_path": "filament/Generic PCTG @BBL P2S.json" - }, - { - "name": "Generic PCTG @BBL X1C", - "sub_path": "filament/Generic PCTG @BBL X1C.json" - }, - { - "name": "Generic PCTG @BBL X2D", - "sub_path": "filament/Generic PCTG @BBL X2D.json" - }, - { - "name": "Generic PCTG @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PCTG @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic PE @BBL A1", - "sub_path": "filament/Generic PE @BBL A1.json" - }, - { - "name": "Generic PE @BBL A1M", - "sub_path": "filament/Generic PE @BBL A1M.json" - }, - { - "name": "Generic PE @BBL A2L", - "sub_path": "filament/Generic PE @BBL A2L.json" - }, - { - "name": "Generic PE @BBL H2C", - "sub_path": "filament/Generic PE @BBL H2C.json" - }, - { - "name": "Generic PE @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PE @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PE @BBL H2D", - "sub_path": "filament/Generic PE @BBL H2D.json" - }, - { - "name": "Generic PE @BBL H2DP", - "sub_path": "filament/Generic PE @BBL H2DP.json" - }, - { - "name": "Generic PE @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic PE @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic PE @BBL P2S", - "sub_path": "filament/Generic PE @BBL P2S.json" - }, - { - "name": "Generic PE @BBL X1C", - "sub_path": "filament/Generic PE @BBL X1C.json" - }, - { - "name": "Generic PE @BBL X2D", - "sub_path": "filament/Generic PE @BBL X2D.json" - }, - { - "name": "Generic PE @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PE @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic PE-CF @BBL A1", - "sub_path": "filament/Generic PE-CF @BBL A1.json" - }, - { - "name": "Generic PE-CF @BBL A1M", - "sub_path": "filament/Generic PE-CF @BBL A1M.json" - }, - { - "name": "Generic PE-CF @BBL A2L", - "sub_path": "filament/Generic PE-CF @BBL A2L.json" - }, - { - "name": "Generic PE-CF @BBL H2C", - "sub_path": "filament/Generic PE-CF @BBL H2C.json" - }, - { - "name": "Generic PE-CF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PE-CF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PE-CF @BBL H2D", - "sub_path": "filament/Generic PE-CF @BBL H2D.json" - }, - { - "name": "Generic PE-CF @BBL H2DP", - "sub_path": "filament/Generic PE-CF @BBL H2DP.json" - }, - { - "name": "Generic PE-CF @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic PE-CF @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic PE-CF @BBL P2S", - "sub_path": "filament/Generic PE-CF @BBL P2S.json" - }, - { - "name": "Generic PE-CF @BBL X1C", - "sub_path": "filament/Generic PE-CF @BBL X1C.json" - }, - { - "name": "Generic PE-CF @BBL X2D", - "sub_path": "filament/Generic PE-CF @BBL X2D.json" - }, - { - "name": "Generic PE-CF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PE-CF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PET-CF @BBL A1", - "sub_path": "filament/Bambu PET-CF @BBL A1.json" - }, - { - "name": "Bambu PET-CF @BBL H2C", - "sub_path": "filament/Bambu PET-CF @BBL H2C.json" - }, - { - "name": "Bambu PET-CF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PET-CF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PET-CF @BBL H2D", - "sub_path": "filament/Bambu PET-CF @BBL H2D.json" - }, - { - "name": "Bambu PET-CF @BBL H2DP", - "sub_path": "filament/Bambu PET-CF @BBL H2DP.json" - }, - { - "name": "Bambu PET-CF @BBL H2S", - "sub_path": "filament/Bambu PET-CF @BBL H2S.json" - }, - { - "name": "Bambu PET-CF @BBL P1P", - "sub_path": "filament/P1P/Bambu PET-CF @BBL P1P.json" - }, - { - "name": "Bambu PET-CF @BBL P2S", - "sub_path": "filament/Bambu PET-CF @BBL P2S.json" - }, - { - "name": "Bambu PET-CF @BBL X1C", - "sub_path": "filament/Bambu PET-CF @BBL X1C.json" - }, - { - "name": "Bambu PET-CF @BBL X1E", - "sub_path": "filament/Bambu PET-CF @BBL X1E.json" - }, - { - "name": "Bambu PET-CF @BBL X2D", - "sub_path": "filament/Bambu PET-CF @BBL X2D.json" - }, - { - "name": "Bambu PET-CF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PET-CF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL A1", - "sub_path": "filament/Bambu PETG Basic @BBL A1.json" - }, - { - "name": "Bambu PETG Basic @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL A1 0.8 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL A1 0.8 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL A1M 0.4 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL A1M 0.4 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL A1M 0.8 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL A1M 0.8 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL A2L 0.4 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL A2L 0.4 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL H2C", - "sub_path": "filament/Bambu PETG Basic @BBL H2C.json" - }, - { - "name": "Bambu PETG Basic @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL H2D 0.4 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL H2D 0.4 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL H2D 0.6 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL H2D 0.6 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL H2DP 0.4 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL H2DP 0.4 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL H2DP 0.6 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL H2DP 0.6 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL H2S", - "sub_path": "filament/Bambu PETG Basic @BBL H2S.json" - }, - { - "name": "Bambu PETG Basic @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL H2S 0.6 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL H2S 0.6 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL P2S 0.4 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL P2S 0.4 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL X1C", - "sub_path": "filament/Bambu PETG Basic @BBL X1C.json" - }, - { - "name": "Bambu PETG Basic @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL X1C 0.8 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL X1C 0.8 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL X2D", - "sub_path": "filament/Bambu PETG Basic @BBL X2D.json" - }, - { - "name": "Bambu PETG Basic @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Basic @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PETG Basic @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL A1", - "sub_path": "filament/Bambu PETG HF @BBL A1.json" - }, - { - "name": "Bambu PETG HF @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL A1 0.8 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL A1 0.8 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL A1M", - "sub_path": "filament/Bambu PETG HF @BBL A1M.json" - }, - { - "name": "Bambu PETG HF @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL A1M 0.8 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL A1M 0.8 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL A2L", - "sub_path": "filament/Bambu PETG HF @BBL A2L.json" - }, - { - "name": "Bambu PETG HF @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL H2C", - "sub_path": "filament/Bambu PETG HF @BBL H2C.json" - }, - { - "name": "Bambu PETG HF @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL H2C 0.6 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL H2C 0.6 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL H2C 0.8 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL H2C 0.8 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL H2D 0.4 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL H2D 0.4 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL H2D 0.6 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL H2D 0.6 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL H2D 0.8 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL H2D 0.8 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL H2DP 0.4 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL H2DP 0.4 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL H2DP 0.6 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL H2DP 0.6 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL H2DP 0.8 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL H2DP 0.8 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL H2S", - "sub_path": "filament/Bambu PETG HF @BBL H2S.json" - }, - { - "name": "Bambu PETG HF @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL H2S 0.6 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL H2S 0.6 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL H2S 0.8 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL H2S 0.8 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL P2S 0.4 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL P2S 0.4 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL X1C", - "sub_path": "filament/Bambu PETG HF @BBL X1C.json" - }, - { - "name": "Bambu PETG HF @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL X1C 0.8 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL X1C 0.8 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL X2D", - "sub_path": "filament/Bambu PETG HF @BBL X2D.json" - }, - { - "name": "Bambu PETG HF @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu PETG HF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PETG HF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL A1", - "sub_path": "filament/Bambu PETG Translucent @BBL A1.json" - }, - { - "name": "Bambu PETG Translucent @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL A1 0.8 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL A1 0.8 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL A1M", - "sub_path": "filament/Bambu PETG Translucent @BBL A1M.json" - }, - { - "name": "Bambu PETG Translucent @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL A1M 0.8 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL A1M 0.8 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL A2L", - "sub_path": "filament/Bambu PETG Translucent @BBL A2L.json" - }, - { - "name": "Bambu PETG Translucent @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL H2C", - "sub_path": "filament/Bambu PETG Translucent @BBL H2C.json" - }, - { - "name": "Bambu PETG Translucent @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL H2D 0.4 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL H2D 0.4 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL H2D 0.6 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL H2D 0.6 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL H2DP 0.4 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL H2DP 0.4 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL H2DP 0.6 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL H2DP 0.6 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL H2S", - "sub_path": "filament/Bambu PETG Translucent @BBL H2S.json" - }, - { - "name": "Bambu PETG Translucent @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL P2S 0.4 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL P2S 0.4 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL X1C", - "sub_path": "filament/Bambu PETG Translucent @BBL X1C.json" - }, - { - "name": "Bambu PETG Translucent @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL X1C 0.8 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL X1C 0.8 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL X2D", - "sub_path": "filament/Bambu PETG Translucent @BBL X2D.json" - }, - { - "name": "Bambu PETG Translucent @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PETG Translucent @BBL X2D 0.8 nozzle", - "sub_path": "filament/Bambu PETG Translucent @BBL X2D 0.8 nozzle.json" - }, - { - "name": "Bambu PETG-CF @BBL A1 0.4 nozzle", - "sub_path": "filament/Bambu PETG-CF @BBL A1 0.4 nozzle.json" - }, - { - "name": "Bambu PETG-CF @BBL A1 0.8 nozzle", - "sub_path": "filament/Bambu PETG-CF @BBL A1 0.8 nozzle.json" - }, - { - "name": "Bambu PETG-CF @BBL A1M", - "sub_path": "filament/Bambu PETG-CF @BBL A1M.json" - }, - { - "name": "Bambu PETG-CF @BBL A2L", - "sub_path": "filament/Bambu PETG-CF @BBL A2L.json" - }, - { - "name": "Bambu PETG-CF @BBL A2L 0.4 nozzle", - "sub_path": "filament/Bambu PETG-CF @BBL A2L 0.4 nozzle.json" - }, - { - "name": "Bambu PETG-CF @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PETG-CF @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PETG-CF @BBL H2C", - "sub_path": "filament/Bambu PETG-CF @BBL H2C.json" - }, - { - "name": "Bambu PETG-CF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PETG-CF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PETG-CF @BBL H2D 0.4 nozzle", - "sub_path": "filament/Bambu PETG-CF @BBL H2D 0.4 nozzle.json" - }, - { - "name": "Bambu PETG-CF @BBL H2D 0.6 nozzle", - "sub_path": "filament/Bambu PETG-CF @BBL H2D 0.6 nozzle.json" - }, - { - "name": "Bambu PETG-CF @BBL H2DP 0.4 nozzle", - "sub_path": "filament/Bambu PETG-CF @BBL H2DP 0.4 nozzle.json" - }, - { - "name": "Bambu PETG-CF @BBL H2DP 0.6 nozzle", - "sub_path": "filament/Bambu PETG-CF @BBL H2DP 0.6 nozzle.json" - }, - { - "name": "Bambu PETG-CF @BBL H2S", - "sub_path": "filament/Bambu PETG-CF @BBL H2S.json" - }, - { - "name": "Bambu PETG-CF @BBL P1P", - "sub_path": "filament/P1P/Bambu PETG-CF @BBL P1P.json" - }, - { - "name": "Bambu PETG-CF @BBL P1P 0.4 nozzle", - "sub_path": "filament/P1P/Bambu PETG-CF @BBL P1P 0.4 nozzle.json" - }, - { - "name": "Bambu PETG-CF @BBL P2S 0.4 nozzle", - "sub_path": "filament/Bambu PETG-CF @BBL P2S 0.4 nozzle.json" - }, - { - "name": "Bambu PETG-CF @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PETG-CF @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PETG-CF @BBL X1C", - "sub_path": "filament/Bambu PETG-CF @BBL X1C.json" - }, - { - "name": "Bambu PETG-CF @BBL X1C 0.4 nozzle", - "sub_path": "filament/Bambu PETG-CF @BBL X1C 0.4 nozzle.json" - }, - { - "name": "Bambu PETG-CF @BBL X2D", - "sub_path": "filament/Bambu PETG-CF @BBL X2D.json" - }, - { - "name": "Bambu PETG-CF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PETG-CF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PETG-CF @BBL X2D 0.8 nozzle", - "sub_path": "filament/Bambu PETG-CF @BBL X2D 0.8 nozzle.json" - }, - { - "name": "Fiberon PET-CF @BBL H2D", - "sub_path": "filament/Polymaker/Fiberon PET-CF @BBL H2D.json" - }, - { - "name": "Fiberon PET-CF @BBL X1C", - "sub_path": "filament/Polymaker/Fiberon PET-CF @BBL X1C.json" - }, - { - "name": "Fiberon PETG-ESD @BBL H2D", - "sub_path": "filament/Polymaker/Fiberon PETG-ESD @BBL H2D.json" - }, - { - "name": "Fiberon PETG-ESD @BBL X1C", - "sub_path": "filament/Polymaker/Fiberon PETG-ESD @BBL X1C.json" - }, - { - "name": "Fiberon PETG-rCF @BBL H2D", - "sub_path": "filament/Polymaker/Fiberon PETG-rCF @BBL H2D.json" - }, - { - "name": "Fiberon PETG-rCF @BBL X1C", - "sub_path": "filament/Polymaker/Fiberon PETG-rCF @BBL X1C.json" - }, - { - "name": "Generic PETG", - "sub_path": "filament/Generic PETG.json" - }, - { - "name": "Generic PETG @0.2 nozzle", - "sub_path": "filament/Generic PETG @0.2 nozzle.json" - }, - { - "name": "Generic PETG @BBL A1", - "sub_path": "filament/Generic PETG @BBL A1.json" - }, - { - "name": "Generic PETG @BBL A1 0.2 nozzle", - "sub_path": "filament/Generic PETG @BBL A1 0.2 nozzle.json" - }, - { - "name": "Generic PETG @BBL A1M", - "sub_path": "filament/Generic PETG @BBL A1M.json" - }, - { - "name": "Generic PETG @BBL A1M 0.2 nozzle", - "sub_path": "filament/Generic PETG @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Generic PETG @BBL A2L", - "sub_path": "filament/Generic PETG @BBL A2L.json" - }, - { - "name": "Generic PETG @BBL A2L 0.2 nozzle", - "sub_path": "filament/Generic PETG @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Generic PETG @BBL H2C", - "sub_path": "filament/Generic PETG @BBL H2C.json" - }, - { - "name": "Generic PETG @BBL H2C 0.2 nozzle", - "sub_path": "filament/Generic PETG @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Generic PETG @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PETG @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PETG @BBL H2D", - "sub_path": "filament/Generic PETG @BBL H2D.json" - }, - { - "name": "Generic PETG @BBL H2D 0.2 nozzle", - "sub_path": "filament/Generic PETG @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Generic PETG @BBL H2DP", - "sub_path": "filament/Generic PETG @BBL H2DP.json" - }, - { - "name": "Generic PETG @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Generic PETG @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Generic PETG @BBL H2S", - "sub_path": "filament/Generic PETG @BBL H2S.json" - }, - { - "name": "Generic PETG @BBL H2S 0.2 nozzle", - "sub_path": "filament/Generic PETG @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Generic PETG @BBL P1P", - "sub_path": "filament/P1P/Generic PETG @BBL P1P.json" - }, - { - "name": "Generic PETG @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/Generic PETG @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Generic PETG @BBL P2S", - "sub_path": "filament/Generic PETG @BBL P2S.json" - }, - { - "name": "Generic PETG @BBL P2S 0.2 nozzle", - "sub_path": "filament/Generic PETG @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Generic PETG @BBL X2D", - "sub_path": "filament/Generic PETG @BBL X2D.json" - }, - { - "name": "Generic PETG @BBL X2D 0.2 nozzle", - "sub_path": "filament/Generic PETG @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Generic PETG @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PETG @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic PETG HF @BBL A1", - "sub_path": "filament/Generic PETG HF @BBL A1.json" - }, - { - "name": "Generic PETG HF @BBL A1 0.2 nozzle", - "sub_path": "filament/Generic PETG HF @BBL A1 0.2 nozzle.json" - }, - { - "name": "Generic PETG HF @BBL A1M", - "sub_path": "filament/Generic PETG HF @BBL A1M.json" - }, - { - "name": "Generic PETG HF @BBL A1M 0.2 nozzle", - "sub_path": "filament/Generic PETG HF @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Generic PETG HF @BBL A2L", - "sub_path": "filament/Generic PETG HF @BBL A2L.json" - }, - { - "name": "Generic PETG HF @BBL A2L 0.2 nozzle", - "sub_path": "filament/Generic PETG HF @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Generic PETG HF @BBL H2C", - "sub_path": "filament/Generic PETG HF @BBL H2C.json" - }, - { - "name": "Generic PETG HF @BBL H2C 0.2 nozzle", - "sub_path": "filament/Generic PETG HF @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Generic PETG HF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PETG HF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PETG HF @BBL H2D", - "sub_path": "filament/Generic PETG HF @BBL H2D.json" - }, - { - "name": "Generic PETG HF @BBL H2D 0.2 nozzle", - "sub_path": "filament/Generic PETG HF @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Generic PETG HF @BBL H2DP", - "sub_path": "filament/Generic PETG HF @BBL H2DP.json" - }, - { - "name": "Generic PETG HF @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Generic PETG HF @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Generic PETG HF @BBL H2S 0.2 nozzle", - "sub_path": "filament/Generic PETG HF @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Generic PETG HF @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic PETG HF @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic PETG HF @BBL P1P", - "sub_path": "filament/Generic PETG HF @BBL P1P.json" - }, - { - "name": "Generic PETG HF @BBL P1P 0.2 nozzle", - "sub_path": "filament/Generic PETG HF @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Generic PETG HF @BBL P2S", - "sub_path": "filament/Generic PETG HF @BBL P2S.json" - }, - { - "name": "Generic PETG HF @BBL P2S 0.2 nozzle", - "sub_path": "filament/Generic PETG HF @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Generic PETG HF @BBL P2S 0.4 nozzle", - "sub_path": "filament/Generic PETG HF @BBL P2S 0.4 nozzle.json" - }, - { - "name": "Generic PETG HF @BBL X1C", - "sub_path": "filament/Generic PETG HF @BBL X1C.json" - }, - { - "name": "Generic PETG HF @BBL X1C 0.2 nozzle", - "sub_path": "filament/Generic PETG HF @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Generic PETG HF @BBL X2D", - "sub_path": "filament/Generic PETG HF @BBL X2D.json" - }, - { - "name": "Generic PETG HF @BBL X2D 0.2 nozzle", - "sub_path": "filament/Generic PETG HF @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Generic PETG HF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PETG HF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic PETG-CF @BBL A1", - "sub_path": "filament/Generic PETG-CF @BBL A1.json" - }, - { - "name": "Generic PETG-CF @BBL A1M", - "sub_path": "filament/P1P/Generic PETG-CF @BBL A1M.json" - }, - { - "name": "Generic PETG-CF @BBL A2L", - "sub_path": "filament/Generic PETG-CF @BBL A2L.json" - }, - { - "name": "Generic PETG-CF @BBL H2C", - "sub_path": "filament/Generic PETG-CF @BBL H2C.json" - }, - { - "name": "Generic PETG-CF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PETG-CF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PETG-CF @BBL H2D", - "sub_path": "filament/Generic PETG-CF @BBL H2D.json" - }, - { - "name": "Generic PETG-CF @BBL H2DP", - "sub_path": "filament/Generic PETG-CF @BBL H2DP.json" - }, - { - "name": "Generic PETG-CF @BBL H2S", - "sub_path": "filament/Generic PETG-CF @BBL H2S.json" - }, - { - "name": "Generic PETG-CF @BBL P1P", - "sub_path": "filament/P1P/Generic PETG-CF @BBL P1P.json" - }, - { - "name": "Generic PETG-CF @BBL P2S", - "sub_path": "filament/Generic PETG-CF @BBL P2S.json" - }, - { - "name": "Generic PETG-CF @BBL X1C", - "sub_path": "filament/Generic PETG-CF @BBL X1C.json" - }, - { - "name": "Generic PETG-CF @BBL X2D", - "sub_path": "filament/Generic PETG-CF @BBL X2D.json" - }, - { - "name": "Generic PETG-CF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PETG-CF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "PolyLite PETG @BBL A1", - "sub_path": "filament/Polymaker/PolyLite PETG @BBL A1.json" - }, - { - "name": "PolyLite PETG @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite PETG @BBL A1 0.2 nozzle.json" - }, - { - "name": "PolyLite PETG @BBL A1M", - "sub_path": "filament/Polymaker/PolyLite PETG @BBL A1M.json" - }, - { - "name": "PolyLite PETG @BBL H2D", - "sub_path": "filament/Polymaker/PolyLite PETG @BBL H2D.json" - }, - { - "name": "PolyLite PETG @BBL H2D 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite PETG @BBL H2D 0.2 nozzle.json" - }, - { - "name": "PolyLite PETG @BBL H2DP", - "sub_path": "filament/PolyLite PETG @BBL H2DP.json" - }, - { - "name": "PolyLite PETG @BBL H2DP 0.2 nozzle", - "sub_path": "filament/PolyLite PETG @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "PolyLite PETG @BBL H2S", - "sub_path": "filament/PolyLite PETG @BBL H2S.json" - }, - { - "name": "PolyLite PETG @BBL H2S 0.2 nozzle", - "sub_path": "filament/PolyLite PETG @BBL H2S 0.2 nozzle.json" - }, - { - "name": "PolyLite PETG @BBL P1P", - "sub_path": "filament/Polymaker/PolyLite PETG @BBL P1P.json" - }, - { - "name": "PolyLite PETG @BBL X1C", - "sub_path": "filament/Polymaker/PolyLite PETG @BBL X1C.json" - }, - { - "name": "SUNLU PETG @BBL A1", - "sub_path": "filament/SUNLU/SUNLU PETG @BBL A1.json" - }, - { - "name": "SUNLU PETG @BBL A1 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU PETG @BBL A1 0.2 nozzle.json" - }, - { - "name": "SUNLU PETG @BBL A1 0.8 nozzle", - "sub_path": "filament/SUNLU/SUNLU PETG @BBL A1 0.8 nozzle.json" - }, - { - "name": "SUNLU PETG @BBL A1M 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU PETG @BBL A1M 0.2 nozzle.json" - }, - { - "name": "SUNLU PETG @BBL A1M 0.4 nozzle", - "sub_path": "filament/SUNLU/SUNLU PETG @BBL A1M.json" - }, - { - "name": "SUNLU PETG @BBL A1M 0.8 nozzle", - "sub_path": "filament/SUNLU/SUNLU PETG @BBL A1M 0.8 nozzle.json" - }, - { - "name": "SUNLU PETG @BBL X1C", - "sub_path": "filament/SUNLU/SUNLU PETG @BBL X1C.json" - }, - { - "name": "SUNLU PETG @BBL X1C 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU PETG @BBL X1C 0.2 nozzle.json" - }, - { - "name": "SUNLU PETG @BBL X1C 0.8 nozzle", - "sub_path": "filament/SUNLU/SUNLU PETG @BBL X1C 0.8 nozzle.json" - }, - { - "name": "Generic PHA @BBL A1", - "sub_path": "filament/Generic PHA @BBL A1.json" - }, - { - "name": "Generic PHA @BBL A1M", - "sub_path": "filament/Generic PHA @BBL A1M.json" - }, - { - "name": "Generic PHA @BBL A2L", - "sub_path": "filament/Generic PHA @BBL A2L.json" - }, - { - "name": "Generic PHA @BBL H2C", - "sub_path": "filament/Generic PHA @BBL H2C.json" - }, - { - "name": "Generic PHA @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PHA @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PHA @BBL H2D", - "sub_path": "filament/Generic PHA @BBL H2D.json" - }, - { - "name": "Generic PHA @BBL H2DP", - "sub_path": "filament/Generic PHA @BBL H2DP.json" - }, - { - "name": "Generic PHA @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic PHA @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic PHA @BBL P2S", - "sub_path": "filament/Generic PHA @BBL P2S.json" - }, - { - "name": "Generic PHA @BBL X1C", - "sub_path": "filament/Generic PHA @BBL X1C.json" - }, - { - "name": "Generic PHA @BBL X2D", - "sub_path": "filament/Generic PHA @BBL X2D.json" - }, - { - "name": "Generic PHA @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PHA @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Aero @BBL A1", - "sub_path": "filament/Bambu PLA Aero @BBL A1.json" - }, - { - "name": "Bambu PLA Aero @BBL A1M", - "sub_path": "filament/Bambu PLA Aero @BBL A1M.json" - }, - { - "name": "Bambu PLA Aero @BBL A2L", - "sub_path": "filament/Bambu PLA Aero @BBL A2L.json" - }, - { - "name": "Bambu PLA Aero @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PLA Aero @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Aero @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PLA Aero @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Aero @BBL H2C", - "sub_path": "filament/Bambu PLA Aero @BBL H2C.json" - }, - { - "name": "Bambu PLA Aero @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PLA Aero @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Aero @BBL H2D", - "sub_path": "filament/Bambu PLA Aero @BBL H2D.json" - }, - { - "name": "Bambu PLA Aero @BBL H2DP", - "sub_path": "filament/Bambu PLA Aero @BBL H2DP.json" - }, - { - "name": "Bambu PLA Aero @BBL H2S", - "sub_path": "filament/Bambu PLA Aero @BBL H2S.json" - }, - { - "name": "Bambu PLA Aero @BBL P1P", - "sub_path": "filament/P1P/Bambu PLA Aero @BBL P1P.json" - }, - { - "name": "Bambu PLA Aero @BBL P2S", - "sub_path": "filament/Bambu PLA Aero @BBL P2S.json" - }, - { - "name": "Bambu PLA Aero @BBL X1", - "sub_path": "filament/Bambu PLA Aero @BBL X1.json" - }, - { - "name": "Bambu PLA Aero @BBL X1C", - "sub_path": "filament/Bambu PLA Aero @BBL X1C.json" - }, - { - "name": "Bambu PLA Aero @BBL X2D", - "sub_path": "filament/Bambu PLA Aero @BBL X2D.json" - }, - { - "name": "Bambu PLA Aero @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA Aero @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL A1", - "sub_path": "filament/Bambu PLA Basic @BBL A1.json" - }, - { - "name": "Bambu PLA Basic @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL A1M", - "sub_path": "filament/Bambu PLA Basic @BBL A1M.json" - }, - { - "name": "Bambu PLA Basic @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL A2L 0.4 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL A2L 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL H2C", - "sub_path": "filament/Bambu PLA Basic @BBL H2C.json" - }, - { - "name": "Bambu PLA Basic @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL H2C 0.6 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL H2C 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL H2C 0.8 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL H2C 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL H2D", - "sub_path": "filament/Bambu PLA Basic @BBL H2D.json" - }, - { - "name": "Bambu PLA Basic @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL H2D 0.6 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL H2D 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL H2D 0.8 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL H2D 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL H2DP", - "sub_path": "filament/Bambu PLA Basic @BBL H2DP.json" - }, - { - "name": "Bambu PLA Basic @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL H2DP 0.6 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL H2DP 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL H2DP 0.8 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL H2DP 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL H2S", - "sub_path": "filament/Bambu PLA Basic @BBL H2S.json" - }, - { - "name": "Bambu PLA Basic @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL H2S 0.6 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL H2S 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL H2S 0.8 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL H2S 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL P1P", - "sub_path": "filament/P1P/Bambu PLA Basic @BBL P1P.json" - }, - { - "name": "Bambu PLA Basic @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/Bambu PLA Basic @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL P2S", - "sub_path": "filament/Bambu PLA Basic @BBL P2S.json" - }, - { - "name": "Bambu PLA Basic @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL X1", - "sub_path": "filament/Bambu PLA Basic @BBL X1.json" - }, - { - "name": "Bambu PLA Basic @BBL X1C", - "sub_path": "filament/Bambu PLA Basic @BBL X1C.json" - }, - { - "name": "Bambu PLA Basic @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL X1C 0.8 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL X1C 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL X2D", - "sub_path": "filament/Bambu PLA Basic @BBL X2D.json" - }, - { - "name": "Bambu PLA Basic @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Basic @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA Basic @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL A1", - "sub_path": "filament/Bambu PLA Dynamic @BBL A1.json" - }, - { - "name": "Bambu PLA Dynamic @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL A1M", - "sub_path": "filament/Bambu PLA Dynamic @BBL A1M.json" - }, - { - "name": "Bambu PLA Dynamic @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL A2L", - "sub_path": "filament/Bambu PLA Dynamic @BBL A2L.json" - }, - { - "name": "Bambu PLA Dynamic @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL H2C", - "sub_path": "filament/Bambu PLA Dynamic @BBL H2C.json" - }, - { - "name": "Bambu PLA Dynamic @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL H2D", - "sub_path": "filament/Bambu PLA Dynamic @BBL H2D.json" - }, - { - "name": "Bambu PLA Dynamic @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL H2D 0.8 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL H2D 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL H2DP", - "sub_path": "filament/Bambu PLA Dynamic @BBL H2DP.json" - }, - { - "name": "Bambu PLA Dynamic @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL H2DP 0.8 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL H2DP 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL H2S", - "sub_path": "filament/Bambu PLA Dynamic @BBL H2S.json" - }, - { - "name": "Bambu PLA Dynamic @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL P1P", - "sub_path": "filament/Bambu PLA Dynamic @BBL P1P.json" - }, - { - "name": "Bambu PLA Dynamic @BBL P1P 0.2 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL P2S", - "sub_path": "filament/Bambu PLA Dynamic @BBL P2S.json" - }, - { - "name": "Bambu PLA Dynamic @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL X1C", - "sub_path": "filament/Bambu PLA Dynamic @BBL X1C.json" - }, - { - "name": "Bambu PLA Dynamic @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL X1C 0.8 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL X1C 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL X2D", - "sub_path": "filament/Bambu PLA Dynamic @BBL X2D.json" - }, - { - "name": "Bambu PLA Dynamic @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Dynamic @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA Dynamic @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL A1", - "sub_path": "filament/Bambu PLA Galaxy @BBL A1.json" - }, - { - "name": "Bambu PLA Galaxy @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL A1M", - "sub_path": "filament/Bambu PLA Galaxy @BBL A1M.json" - }, - { - "name": "Bambu PLA Galaxy @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL A2L", - "sub_path": "filament/Bambu PLA Galaxy @BBL A2L.json" - }, - { - "name": "Bambu PLA Galaxy @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL H2C", - "sub_path": "filament/Bambu PLA Galaxy @BBL H2C.json" - }, - { - "name": "Bambu PLA Galaxy @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL H2D", - "sub_path": "filament/Bambu PLA Galaxy @BBL H2D.json" - }, - { - "name": "Bambu PLA Galaxy @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL H2D 0.8 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL H2D 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL H2DP", - "sub_path": "filament/Bambu PLA Galaxy @BBL H2DP.json" - }, - { - "name": "Bambu PLA Galaxy @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL H2DP 0.8 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL H2DP 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL H2S", - "sub_path": "filament/Bambu PLA Galaxy @BBL H2S.json" - }, - { - "name": "Bambu PLA Galaxy @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL P1P", - "sub_path": "filament/Bambu PLA Galaxy @BBL P1P.json" - }, - { - "name": "Bambu PLA Galaxy @BBL P1P 0.2 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL P2S", - "sub_path": "filament/Bambu PLA Galaxy @BBL P2S.json" - }, - { - "name": "Bambu PLA Galaxy @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL X1C", - "sub_path": "filament/Bambu PLA Galaxy @BBL X1C.json" - }, - { - "name": "Bambu PLA Galaxy @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL X1C 0.8 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL X1C 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL X2D", - "sub_path": "filament/Bambu PLA Galaxy @BBL X2D.json" - }, - { - "name": "Bambu PLA Galaxy @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Galaxy @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA Galaxy @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Glow @BBL A1", - "sub_path": "filament/Bambu PLA Glow @BBL A1.json" - }, - { - "name": "Bambu PLA Glow @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PLA Glow @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Glow @BBL A1M", - "sub_path": "filament/Bambu PLA Glow @BBL A1M.json" - }, - { - "name": "Bambu PLA Glow @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu PLA Glow @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Glow @BBL A2L 0.4 nozzle", - "sub_path": "filament/Bambu PLA Glow @BBL A2L 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Glow @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PLA Glow @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Glow @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PLA Glow @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Glow @BBL H2C", - "sub_path": "filament/Bambu PLA Glow @BBL H2C.json" - }, - { - "name": "Bambu PLA Glow @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PLA Glow @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Glow @BBL H2D", - "sub_path": "filament/Bambu PLA Glow @BBL H2D.json" - }, - { - "name": "Bambu PLA Glow @BBL H2DP", - "sub_path": "filament/Bambu PLA Glow @BBL H2DP.json" - }, - { - "name": "Bambu PLA Glow @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PLA Glow @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Glow @BBL H2S", - "sub_path": "filament/Bambu PLA Glow @BBL H2S.json" - }, - { - "name": "Bambu PLA Glow @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Glow @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Glow @BBL P1P", - "sub_path": "filament/Bambu PLA Glow @BBL P1P.json" - }, - { - "name": "Bambu PLA Glow @BBL P2S", - "sub_path": "filament/Bambu PLA Glow @BBL P2S.json" - }, - { - "name": "Bambu PLA Glow @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Glow @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Glow @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PLA Glow @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Glow @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu PLA Glow @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Glow @BBL X1", - "sub_path": "filament/Bambu PLA Glow @BBL X1.json" - }, - { - "name": "Bambu PLA Glow @BBL X1C", - "sub_path": "filament/Bambu PLA Glow @BBL X1C.json" - }, - { - "name": "Bambu PLA Glow @BBL X1E", - "sub_path": "filament/Bambu PLA Glow @BBL X1E.json" - }, - { - "name": "Bambu PLA Glow @BBL X2D", - "sub_path": "filament/Bambu PLA Glow @BBL X2D.json" - }, - { - "name": "Bambu PLA Glow @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA Glow @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL A1", - "sub_path": "filament/Bambu PLA Lite @BBL A1.json" - }, - { - "name": "Bambu PLA Lite @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL A1M", - "sub_path": "filament/Bambu PLA Lite @BBL A1M.json" - }, - { - "name": "Bambu PLA Lite @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL A2L 0.4 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL A2L 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL H2C", - "sub_path": "filament/Bambu PLA Lite @BBL H2C.json" - }, - { - "name": "Bambu PLA Lite @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL H2D", - "sub_path": "filament/Bambu PLA Lite @BBL H2D.json" - }, - { - "name": "Bambu PLA Lite @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL H2D 0.8 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL H2D 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL H2DP 0.4 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL H2DP 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL H2DP 0.6 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL H2DP 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL H2DP 0.8 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL H2DP 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL H2S", - "sub_path": "filament/Bambu PLA Lite @BBL H2S.json" - }, - { - "name": "Bambu PLA Lite @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL P1P", - "sub_path": "filament/Bambu PLA Lite @BBL P1P.json" - }, - { - "name": "Bambu PLA Lite @BBL P1P 0.2 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL P2S 0.4 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL P2S 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL X1C", - "sub_path": "filament/Bambu PLA Lite @BBL X1C.json" - }, - { - "name": "Bambu PLA Lite @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL X1C 0.8 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL X1C 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL X2D", - "sub_path": "filament/Bambu PLA Lite @BBL X2D.json" - }, - { - "name": "Bambu PLA Lite @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Lite @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA Lite @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Marble @BBL A1", - "sub_path": "filament/Bambu PLA Marble @BBL A1.json" - }, - { - "name": "Bambu PLA Marble @BBL A1M", - "sub_path": "filament/Bambu PLA Marble @BBL A1M.json" - }, - { - "name": "Bambu PLA Marble @BBL A2L", - "sub_path": "filament/Bambu PLA Marble @BBL A2L.json" - }, - { - "name": "Bambu PLA Marble @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PLA Marble @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Marble @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PLA Marble @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Marble @BBL H2C", - "sub_path": "filament/Bambu PLA Marble @BBL H2C.json" - }, - { - "name": "Bambu PLA Marble @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PLA Marble @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Marble @BBL H2D", - "sub_path": "filament/Bambu PLA Marble @BBL H2D.json" - }, - { - "name": "Bambu PLA Marble @BBL H2DP", - "sub_path": "filament/Bambu PLA Marble @BBL H2DP.json" - }, - { - "name": "Bambu PLA Marble @BBL H2S", - "sub_path": "filament/Bambu PLA Marble @BBL H2S.json" - }, - { - "name": "Bambu PLA Marble @BBL P1P", - "sub_path": "filament/P1P/Bambu PLA Marble @BBL P1P.json" - }, - { - "name": "Bambu PLA Marble @BBL P2S", - "sub_path": "filament/Bambu PLA Marble @BBL P2S.json" - }, - { - "name": "Bambu PLA Marble @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu PLA Marble @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Marble @BBL X1", - "sub_path": "filament/Bambu PLA Marble @BBL X1.json" - }, - { - "name": "Bambu PLA Marble @BBL X1C", - "sub_path": "filament/Bambu PLA Marble @BBL X1C.json" - }, - { - "name": "Bambu PLA Marble @BBL X2D", - "sub_path": "filament/Bambu PLA Marble @BBL X2D.json" - }, - { - "name": "Bambu PLA Marble @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA Marble @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL A1", - "sub_path": "filament/Bambu PLA Matte @BBL A1.json" - }, - { - "name": "Bambu PLA Matte @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL A1M", - "sub_path": "filament/Bambu PLA Matte @BBL A1M.json" - }, - { - "name": "Bambu PLA Matte @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL A2L 0.4 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL A2L 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL H2C", - "sub_path": "filament/Bambu PLA Matte @BBL H2C.json" - }, - { - "name": "Bambu PLA Matte @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL H2C 0.6 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL H2C 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL H2C 0.8 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL H2C 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL H2D", - "sub_path": "filament/Bambu PLA Matte @BBL H2D.json" - }, - { - "name": "Bambu PLA Matte @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL H2D 0.6 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL H2D 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL H2D 0.8 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL H2D 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL H2DP", - "sub_path": "filament/Bambu PLA Matte @BBL H2DP.json" - }, - { - "name": "Bambu PLA Matte @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL H2DP 0.6 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL H2DP 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL H2DP 0.8 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL H2DP 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL H2S", - "sub_path": "filament/Bambu PLA Matte @BBL H2S.json" - }, - { - "name": "Bambu PLA Matte @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL H2S 0.6 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL H2S 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL H2S 0.8 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL H2S 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL P1P", - "sub_path": "filament/P1P/Bambu PLA Matte @BBL P1P.json" - }, - { - "name": "Bambu PLA Matte @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/Bambu PLA Matte @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL P2S", - "sub_path": "filament/Bambu PLA Matte @BBL P2S.json" - }, - { - "name": "Bambu PLA Matte @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL X1", - "sub_path": "filament/Bambu PLA Matte @BBL X1.json" - }, - { - "name": "Bambu PLA Matte @BBL X1C", - "sub_path": "filament/Bambu PLA Matte @BBL X1C.json" - }, - { - "name": "Bambu PLA Matte @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL X1C 0.8 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL X1C 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL X2D", - "sub_path": "filament/Bambu PLA Matte @BBL X2D.json" - }, - { - "name": "Bambu PLA Matte @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Matte @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA Matte @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Metal @BBL A1", - "sub_path": "filament/Bambu PLA Metal @BBL A1.json" - }, - { - "name": "Bambu PLA Metal @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PLA Metal @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Metal @BBL A1M", - "sub_path": "filament/Bambu PLA Metal @BBL A1M.json" - }, - { - "name": "Bambu PLA Metal @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu PLA Metal @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Metal @BBL A2L", - "sub_path": "filament/Bambu PLA Metal @BBL A2L.json" - }, - { - "name": "Bambu PLA Metal @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu PLA Metal @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Metal @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PLA Metal @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Metal @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PLA Metal @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Metal @BBL H2C", - "sub_path": "filament/Bambu PLA Metal @BBL H2C.json" - }, - { - "name": "Bambu PLA Metal @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Metal @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Metal @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PLA Metal @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Metal @BBL H2D", - "sub_path": "filament/Bambu PLA Metal @BBL H2D.json" - }, - { - "name": "Bambu PLA Metal @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Metal @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Metal @BBL H2DP", - "sub_path": "filament/Bambu PLA Metal @BBL H2DP.json" - }, - { - "name": "Bambu PLA Metal @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PLA Metal @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Metal @BBL H2S", - "sub_path": "filament/Bambu PLA Metal @BBL H2S.json" - }, - { - "name": "Bambu PLA Metal @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Metal @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Metal @BBL P1P", - "sub_path": "filament/P1P/Bambu PLA Metal @BBL P1P.json" - }, - { - "name": "Bambu PLA Metal @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/Bambu PLA Metal @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Metal @BBL P2S", - "sub_path": "filament/Bambu PLA Metal @BBL P2S.json" - }, - { - "name": "Bambu PLA Metal @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Metal @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Metal @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PLA Metal @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Metal @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu PLA Metal @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Metal @BBL X1", - "sub_path": "filament/Bambu PLA Metal @BBL X1.json" - }, - { - "name": "Bambu PLA Metal @BBL X1C", - "sub_path": "filament/Bambu PLA Metal @BBL X1C.json" - }, - { - "name": "Bambu PLA Metal @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Metal @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Metal @BBL X2D", - "sub_path": "filament/Bambu PLA Metal @BBL X2D.json" - }, - { - "name": "Bambu PLA Metal @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Metal @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Metal @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA Metal @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Pure @BBL A2L", - "sub_path": "filament/Bambu PLA Pure @BBL A2L.json" - }, - { - "name": "Bambu PLA Pure @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu PLA Pure @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Pure @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PLA Pure @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Pure @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PLA Pure @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Pure @BBL H2C", - "sub_path": "filament/Bambu PLA Pure @BBL H2C.json" - }, - { - "name": "Bambu PLA Pure @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Pure @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Pure @BBL H2D", - "sub_path": "filament/Bambu PLA Pure @BBL H2D.json" - }, - { - "name": "Bambu PLA Pure @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Pure @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Pure @BBL H2D 0.8 nozzle", - "sub_path": "filament/Bambu PLA Pure @BBL H2D 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Pure @BBL H2DP", - "sub_path": "filament/Bambu PLA Pure @BBL H2DP.json" - }, - { - "name": "Bambu PLA Pure @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PLA Pure @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Pure @BBL H2DP 0.8 nozzle", - "sub_path": "filament/Bambu PLA Pure @BBL H2DP 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Pure @BBL H2S", - "sub_path": "filament/Bambu PLA Pure @BBL H2S.json" - }, - { - "name": "Bambu PLA Pure @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Pure @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL A1", - "sub_path": "filament/Bambu PLA Silk @BBL A1.json" - }, - { - "name": "Bambu PLA Silk @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL A1M", - "sub_path": "filament/Bambu PLA Silk @BBL A1M.json" - }, - { - "name": "Bambu PLA Silk @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL A2L 0.4 nozzle", - "sub_path": "filament/Bambu PLA Silk @BBL A2L 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PLA Silk @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PLA Silk @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL H2C", - "sub_path": "filament/Bambu PLA Silk @BBL H2C.json" - }, - { - "name": "Bambu PLA Silk @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PLA Silk @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL H2D", - "sub_path": "filament/Bambu PLA Silk @BBL H2D.json" - }, - { - "name": "Bambu PLA Silk @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL H2DP", - "sub_path": "filament/Bambu PLA Silk @BBL H2DP.json" - }, - { - "name": "Bambu PLA Silk @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL H2S", - "sub_path": "filament/Bambu PLA Silk @BBL H2S.json" - }, - { - "name": "Bambu PLA Silk @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL P1P", - "sub_path": "filament/P1P/Bambu PLA Silk @BBL P1P.json" - }, - { - "name": "Bambu PLA Silk @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/Bambu PLA Silk @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL P2S", - "sub_path": "filament/Bambu PLA Silk @BBL P2S.json" - }, - { - "name": "Bambu PLA Silk @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PLA Silk @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu PLA Silk @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL X1", - "sub_path": "filament/Bambu PLA Silk @BBL X1.json" - }, - { - "name": "Bambu PLA Silk @BBL X1C", - "sub_path": "filament/Bambu PLA Silk @BBL X1C.json" - }, - { - "name": "Bambu PLA Silk @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL X2D", - "sub_path": "filament/Bambu PLA Silk @BBL X2D.json" - }, - { - "name": "Bambu PLA Silk @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA Silk @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL A1", - "sub_path": "filament/Bambu PLA Silk+ @BBL A1.json" - }, - { - "name": "Bambu PLA Silk+ @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL A1M", - "sub_path": "filament/Bambu PLA Silk+ @BBL A1M.json" - }, - { - "name": "Bambu PLA Silk+ @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL A2L 0.4 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL A2L 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL H2C", - "sub_path": "filament/Bambu PLA Silk+ @BBL H2C.json" - }, - { - "name": "Bambu PLA Silk+ @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL H2D", - "sub_path": "filament/Bambu PLA Silk+ @BBL H2D.json" - }, - { - "name": "Bambu PLA Silk+ @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL H2DP", - "sub_path": "filament/Bambu PLA Silk+ @BBL H2DP.json" - }, - { - "name": "Bambu PLA Silk+ @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL H2S", - "sub_path": "filament/Bambu PLA Silk+ @BBL H2S.json" - }, - { - "name": "Bambu PLA Silk+ @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL P1P", - "sub_path": "filament/Bambu PLA Silk+ @BBL P1P.json" - }, - { - "name": "Bambu PLA Silk+ @BBL P1P 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL P2S", - "sub_path": "filament/Bambu PLA Silk+ @BBL P2S.json" - }, - { - "name": "Bambu PLA Silk+ @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL X1", - "sub_path": "filament/Bambu PLA Silk+ @BBL X1.json" - }, - { - "name": "Bambu PLA Silk+ @BBL X1C", - "sub_path": "filament/Bambu PLA Silk+ @BBL X1C.json" - }, - { - "name": "Bambu PLA Silk+ @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL X2D", - "sub_path": "filament/Bambu PLA Silk+ @BBL X2D.json" - }, - { - "name": "Bambu PLA Silk+ @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Silk+ @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA Silk+ @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Sparkle @BBL A1", - "sub_path": "filament/Bambu PLA Sparkle @BBL A1.json" - }, - { - "name": "Bambu PLA Sparkle @BBL A1M", - "sub_path": "filament/Bambu PLA Sparkle @BBL A1M.json" - }, - { - "name": "Bambu PLA Sparkle @BBL A2L", - "sub_path": "filament/Bambu PLA Sparkle @BBL A2L.json" - }, - { - "name": "Bambu PLA Sparkle @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PLA Sparkle @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Sparkle @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PLA Sparkle @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Sparkle @BBL H2C", - "sub_path": "filament/Bambu PLA Sparkle @BBL H2C.json" - }, - { - "name": "Bambu PLA Sparkle @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PLA Sparkle @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Sparkle @BBL H2D", - "sub_path": "filament/Bambu PLA Sparkle @BBL H2D.json" - }, - { - "name": "Bambu PLA Sparkle @BBL H2DP", - "sub_path": "filament/Bambu PLA Sparkle @BBL H2DP.json" - }, - { - "name": "Bambu PLA Sparkle @BBL H2S", - "sub_path": "filament/Bambu PLA Sparkle @BBL H2S.json" - }, - { - "name": "Bambu PLA Sparkle @BBL P1P", - "sub_path": "filament/P1P/Bambu PLA Sparkle @BBL P1P.json" - }, - { - "name": "Bambu PLA Sparkle @BBL P2S", - "sub_path": "filament/Bambu PLA Sparkle @BBL P2S.json" - }, - { - "name": "Bambu PLA Sparkle @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PLA Sparkle @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Sparkle @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu PLA Sparkle @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Sparkle @BBL X1", - "sub_path": "filament/Bambu PLA Sparkle @BBL X1.json" - }, - { - "name": "Bambu PLA Sparkle @BBL X1C", - "sub_path": "filament/Bambu PLA Sparkle @BBL X1C.json" - }, - { - "name": "Bambu PLA Sparkle @BBL X2D", - "sub_path": "filament/Bambu PLA Sparkle @BBL X2D.json" - }, - { - "name": "Bambu PLA Sparkle @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA Sparkle @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Tough @BBL A1", - "sub_path": "filament/Bambu PLA Tough @BBL A1.json" - }, - { - "name": "Bambu PLA Tough @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough @BBL A1M", - "sub_path": "filament/Bambu PLA Tough @BBL A1M.json" - }, - { - "name": "Bambu PLA Tough @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough @BBL A2L", - "sub_path": "filament/Bambu PLA Tough @BBL A2L.json" - }, - { - "name": "Bambu PLA Tough @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough @BBL H2C", - "sub_path": "filament/Bambu PLA Tough @BBL H2C.json" - }, - { - "name": "Bambu PLA Tough @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PLA Tough @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Tough @BBL H2D", - "sub_path": "filament/Bambu PLA Tough @BBL H2D.json" - }, - { - "name": "Bambu PLA Tough @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough @BBL H2DP", - "sub_path": "filament/Bambu PLA Tough @BBL H2DP.json" - }, - { - "name": "Bambu PLA Tough @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough @BBL H2S", - "sub_path": "filament/Bambu PLA Tough @BBL H2S.json" - }, - { - "name": "Bambu PLA Tough @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough @BBL P1P", - "sub_path": "filament/P1P/Bambu PLA Tough @BBL P1P.json" - }, - { - "name": "Bambu PLA Tough @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/Bambu PLA Tough @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough @BBL P2S", - "sub_path": "filament/Bambu PLA Tough @BBL P2S.json" - }, - { - "name": "Bambu PLA Tough @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough @BBL X1", - "sub_path": "filament/Bambu PLA Tough @BBL X1.json" - }, - { - "name": "Bambu PLA Tough @BBL X1C", - "sub_path": "filament/Bambu PLA Tough @BBL X1C.json" - }, - { - "name": "Bambu PLA Tough @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough @BBL X2D", - "sub_path": "filament/Bambu PLA Tough @BBL X2D.json" - }, - { - "name": "Bambu PLA Tough @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA Tough @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL A1", - "sub_path": "filament/Bambu PLA Tough+ @BBL A1.json" - }, - { - "name": "Bambu PLA Tough+ @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL A1M", - "sub_path": "filament/Bambu PLA Tough+ @BBL A1M.json" - }, - { - "name": "Bambu PLA Tough+ @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL A2L 0.4 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL A2L 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL H2C", - "sub_path": "filament/Bambu PLA Tough+ @BBL H2C.json" - }, - { - "name": "Bambu PLA Tough+ @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL H2C 0.6 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL H2C 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL H2C 0.8 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL H2C 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL H2D", - "sub_path": "filament/Bambu PLA Tough+ @BBL H2D.json" - }, - { - "name": "Bambu PLA Tough+ @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL H2D 0.6 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL H2D 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL H2D 0.8 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL H2D 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL H2DP", - "sub_path": "filament/Bambu PLA Tough+ @BBL H2DP.json" - }, - { - "name": "Bambu PLA Tough+ @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL H2DP 0.6 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL H2DP 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL H2DP 0.8 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL H2DP 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL H2S", - "sub_path": "filament/Bambu PLA Tough+ @BBL H2S.json" - }, - { - "name": "Bambu PLA Tough+ @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL H2S 0.6 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL H2S 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL H2S 0.8 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL H2S 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL P1P", - "sub_path": "filament/P1P/Bambu PLA Tough+ @BBL P1P.json" - }, - { - "name": "Bambu PLA Tough+ @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/Bambu PLA Tough+ @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL P2S", - "sub_path": "filament/Bambu PLA Tough+ @BBL P2S.json" - }, - { - "name": "Bambu PLA Tough+ @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL X1", - "sub_path": "filament/Bambu PLA Tough+ @BBL X1.json" - }, - { - "name": "Bambu PLA Tough+ @BBL X1C", - "sub_path": "filament/Bambu PLA Tough+ @BBL X1C.json" - }, - { - "name": "Bambu PLA Tough+ @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL X1C 0.8 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL X1C 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL X2D", - "sub_path": "filament/Bambu PLA Tough+ @BBL X2D.json" - }, - { - "name": "Bambu PLA Tough+ @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Tough+ @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA Tough+ @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL A1", - "sub_path": "filament/Bambu PLA Translucent @BBL A1.json" - }, - { - "name": "Bambu PLA Translucent @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL A1 0.8 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL A1 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL A1M", - "sub_path": "filament/Bambu PLA Translucent @BBL A1M.json" - }, - { - "name": "Bambu PLA Translucent @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL A1M 0.8 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL A1M 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL A2L", - "sub_path": "filament/Bambu PLA Translucent @BBL A2L.json" - }, - { - "name": "Bambu PLA Translucent @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL H2C", - "sub_path": "filament/Bambu PLA Translucent @BBL H2C.json" - }, - { - "name": "Bambu PLA Translucent @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL H2D", - "sub_path": "filament/Bambu PLA Translucent @BBL H2D.json" - }, - { - "name": "Bambu PLA Translucent @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL H2D 0.8 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL H2D 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL H2DP", - "sub_path": "filament/Bambu PLA Translucent @BBL H2DP.json" - }, - { - "name": "Bambu PLA Translucent @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL H2DP 0.8 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL H2DP 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL H2S", - "sub_path": "filament/Bambu PLA Translucent @BBL H2S.json" - }, - { - "name": "Bambu PLA Translucent @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL P1P", - "sub_path": "filament/Bambu PLA Translucent @BBL P1P.json" - }, - { - "name": "Bambu PLA Translucent @BBL P1P 0.2 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL P1P 0.8 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL P1P 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL P2S 0.4 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL P2S 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL X1C", - "sub_path": "filament/Bambu PLA Translucent @BBL X1C.json" - }, - { - "name": "Bambu PLA Translucent @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL X1C 0.8 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL X1C 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL X2D 0.6 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL X2D 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Translucent @BBL X2D 0.8 nozzle", - "sub_path": "filament/Bambu PLA Translucent @BBL X2D 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Wood @BBL A1", - "sub_path": "filament/Bambu PLA Wood @BBL A1.json" - }, - { - "name": "Bambu PLA Wood @BBL A1M", - "sub_path": "filament/Bambu PLA Wood @BBL A1M.json" - }, - { - "name": "Bambu PLA Wood @BBL A2L", - "sub_path": "filament/Bambu PLA Wood @BBL A2L.json" - }, - { - "name": "Bambu PLA Wood @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PLA Wood @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Wood @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PLA Wood @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Wood @BBL H2C", - "sub_path": "filament/Bambu PLA Wood @BBL H2C.json" - }, - { - "name": "Bambu PLA Wood @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PLA Wood @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PLA Wood @BBL H2D", - "sub_path": "filament/Bambu PLA Wood @BBL H2D.json" - }, - { - "name": "Bambu PLA Wood @BBL H2D 0.8 nozzle", - "sub_path": "filament/Bambu PLA Wood @BBL H2D 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Wood @BBL H2DP", - "sub_path": "filament/Bambu PLA Wood @BBL H2DP.json" - }, - { - "name": "Bambu PLA Wood @BBL H2DP 0.8 nozzle", - "sub_path": "filament/Bambu PLA Wood @BBL H2DP 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Wood @BBL H2S", - "sub_path": "filament/Bambu PLA Wood @BBL H2S.json" - }, - { - "name": "Bambu PLA Wood @BBL P1P", - "sub_path": "filament/Bambu PLA Wood @BBL P1P.json" - }, - { - "name": "Bambu PLA Wood @BBL P2S", - "sub_path": "filament/Bambu PLA Wood @BBL P2S.json" - }, - { - "name": "Bambu PLA Wood @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PLA Wood @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PLA Wood @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu PLA Wood @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Wood @BBL X1", - "sub_path": "filament/Bambu PLA Wood @BBL X1.json" - }, - { - "name": "Bambu PLA Wood @BBL X1C", - "sub_path": "filament/Bambu PLA Wood @BBL X1C.json" - }, - { - "name": "Bambu PLA Wood @BBL X1C 0.8 nozzle", - "sub_path": "filament/Bambu PLA Wood @BBL X1C 0.8 nozzle.json" - }, - { - "name": "Bambu PLA Wood @BBL X2D", - "sub_path": "filament/Bambu PLA Wood @BBL X2D.json" - }, - { - "name": "Bambu PLA Wood @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA Wood @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA-CF @BBL A1", - "sub_path": "filament/Bambu PLA-CF @BBL A1.json" - }, - { - "name": "Bambu PLA-CF @BBL A1 0.8 nozzle", - "sub_path": "filament/Bambu PLA-CF @BBL A1 0.8 nozzle.json" - }, - { - "name": "Bambu PLA-CF @BBL A1M", - "sub_path": "filament/Bambu PLA-CF @BBL A1M.json" - }, - { - "name": "Bambu PLA-CF @BBL A1M 0.8 nozzle", - "sub_path": "filament/Bambu PLA-CF @BBL A1M 0.8 nozzle.json" - }, - { - "name": "Bambu PLA-CF @BBL A2L", - "sub_path": "filament/Bambu PLA-CF @BBL A2L.json" - }, - { - "name": "Bambu PLA-CF @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu PLA-CF @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu PLA-CF @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu PLA-CF @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu PLA-CF @BBL H2C", - "sub_path": "filament/Bambu PLA-CF @BBL H2C.json" - }, - { - "name": "Bambu PLA-CF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PLA-CF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PLA-CF @BBL H2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA-CF @BBL H2D 0.4 nozzle.json" - }, - { - "name": "Bambu PLA-CF @BBL H2D 0.6 nozzle", - "sub_path": "filament/Bambu PLA-CF @BBL H2D 0.6 nozzle.json" - }, - { - "name": "Bambu PLA-CF @BBL H2DP 0.4 nozzle", - "sub_path": "filament/Bambu PLA-CF @BBL H2DP 0.4 nozzle.json" - }, - { - "name": "Bambu PLA-CF @BBL H2DP 0.6 nozzle", - "sub_path": "filament/Bambu PLA-CF @BBL H2DP 0.6 nozzle.json" - }, - { - "name": "Bambu PLA-CF @BBL H2S", - "sub_path": "filament/Bambu PLA-CF @BBL H2S.json" - }, - { - "name": "Bambu PLA-CF @BBL P1P", - "sub_path": "filament/P1P/Bambu PLA-CF @BBL P1P.json" - }, - { - "name": "Bambu PLA-CF @BBL P1P 0.8 nozzle", - "sub_path": "filament/P1P/Bambu PLA-CF @BBL P1P 0.8 nozzle.json" - }, - { - "name": "Bambu PLA-CF @BBL P2S 0.4 nozzle", - "sub_path": "filament/Bambu PLA-CF @BBL P2S 0.4 nozzle.json" - }, - { - "name": "Bambu PLA-CF @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu PLA-CF @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu PLA-CF @BBL X1C", - "sub_path": "filament/Bambu PLA-CF @BBL X1C.json" - }, - { - "name": "Bambu PLA-CF @BBL X1C 0.8 nozzle", - "sub_path": "filament/Bambu PLA-CF @BBL X1C 0.8 nozzle.json" - }, - { - "name": "Bambu PLA-CF @BBL X2D", - "sub_path": "filament/Bambu PLA-CF @BBL X2D.json" - }, - { - "name": "Bambu PLA-CF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PLA-CF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu Support For PLA @BBL A1", - "sub_path": "filament/Bambu Support For PLA @BBL A1.json" - }, - { - "name": "Bambu Support For PLA @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA @BBL A1M", - "sub_path": "filament/Bambu Support For PLA @BBL A1M.json" - }, - { - "name": "Bambu Support For PLA @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA @BBL A2L", - "sub_path": "filament/Bambu Support For PLA @BBL A2L.json" - }, - { - "name": "Bambu Support For PLA @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu Support For PLA @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu Support For PLA @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu Support For PLA @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu Support For PLA @BBL H2C", - "sub_path": "filament/Bambu Support For PLA @BBL H2C.json" - }, - { - "name": "Bambu Support For PLA @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu Support For PLA @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu Support For PLA @BBL H2D", - "sub_path": "filament/Bambu Support For PLA @BBL H2D.json" - }, - { - "name": "Bambu Support For PLA @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA @BBL H2DP", - "sub_path": "filament/Bambu Support For PLA @BBL H2DP.json" - }, - { - "name": "Bambu Support For PLA @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA @BBL H2S", - "sub_path": "filament/Bambu Support For PLA @BBL H2S.json" - }, - { - "name": "Bambu Support For PLA @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA @BBL P1P", - "sub_path": "filament/P1P/Bambu Support For PLA @BBL P1P.json" - }, - { - "name": "Bambu Support For PLA @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/Bambu Support For PLA @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA @BBL P2S", - "sub_path": "filament/Bambu Support For PLA @BBL P2S.json" - }, - { - "name": "Bambu Support For PLA @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA @BBL X1C", - "sub_path": "filament/Bambu Support For PLA @BBL X1C.json" - }, - { - "name": "Bambu Support For PLA @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA @BBL X2D", - "sub_path": "filament/Bambu Support For PLA @BBL X2D.json" - }, - { - "name": "Bambu Support For PLA @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu Support For PLA @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL A1", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL A1.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL A1M", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL A1M.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL A2L", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL A2L.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL H2C", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2C.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL H2D", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2D.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL H2DP", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2DP.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL H2S", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2S.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL P1P", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL P1P.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL P1P 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL P2S", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL P2S.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL X1C", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL X1C.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL X2D", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL X2D.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu Support For PLA/PETG @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu Support For PLA-PETG @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu Support W @BBL A1", - "sub_path": "filament/Bambu Support W @BBL A1.json" - }, - { - "name": "Bambu Support W @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu Support W @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu Support W @BBL A1M", - "sub_path": "filament/Bambu Support W @BBL A1M.json" - }, - { - "name": "Bambu Support W @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu Support W @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu Support W @BBL A2L", - "sub_path": "filament/Bambu Support W @BBL A2L.json" - }, - { - "name": "Bambu Support W @BBL A2L 0.2 nozzle", - "sub_path": "filament/Bambu Support W @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Bambu Support W @BBL H2C", - "sub_path": "filament/Bambu Support W @BBL H2C.json" - }, - { - "name": "Bambu Support W @BBL H2C 0.2 nozzle", - "sub_path": "filament/Bambu Support W @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Bambu Support W @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu Support W @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu Support W @BBL H2D", - "sub_path": "filament/Bambu Support W @BBL H2D.json" - }, - { - "name": "Bambu Support W @BBL H2D 0.2 nozzle", - "sub_path": "filament/Bambu Support W @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Bambu Support W @BBL H2DP", - "sub_path": "filament/Bambu Support W @BBL H2DP.json" - }, - { - "name": "Bambu Support W @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Bambu Support W @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Bambu Support W @BBL H2S", - "sub_path": "filament/Bambu Support W @BBL H2S.json" - }, - { - "name": "Bambu Support W @BBL H2S 0.2 nozzle", - "sub_path": "filament/Bambu Support W @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Bambu Support W @BBL P1P", - "sub_path": "filament/P1P/Bambu Support W @BBL P1P.json" - }, - { - "name": "Bambu Support W @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/Bambu Support W @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu Support W @BBL P2S", - "sub_path": "filament/Bambu Support W @BBL P2S.json" - }, - { - "name": "Bambu Support W @BBL P2S 0.2 nozzle", - "sub_path": "filament/Bambu Support W @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Bambu Support W @BBL X1", - "sub_path": "filament/Bambu Support W @BBL X1.json" - }, - { - "name": "Bambu Support W @BBL X1C", - "sub_path": "filament/Bambu Support W @BBL X1C.json" - }, - { - "name": "Bambu Support W @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu Support W @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu Support W @BBL X2D", - "sub_path": "filament/Bambu Support W @BBL X2D.json" - }, - { - "name": "Bambu Support W @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu Support W @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu Support W @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu Support W @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic PLA", - "sub_path": "filament/Generic PLA.json" - }, - { - "name": "Generic PLA @0.2 nozzle", - "sub_path": "filament/Generic PLA @0.2 nozzle.json" - }, - { - "name": "Generic PLA @BBL A1", - "sub_path": "filament/Generic PLA @BBL A1.json" - }, - { - "name": "Generic PLA @BBL A1 0.2 nozzle", - "sub_path": "filament/Generic PLA @BBL A1 0.2 nozzle.json" - }, - { - "name": "Generic PLA @BBL A1M", - "sub_path": "filament/Generic PLA @BBL A1M.json" - }, - { - "name": "Generic PLA @BBL A1M 0.2 nozzle", - "sub_path": "filament/Generic PLA @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Generic PLA @BBL A2L", - "sub_path": "filament/Generic PLA @BBL A2L.json" - }, - { - "name": "Generic PLA @BBL A2L 0.2 nozzle", - "sub_path": "filament/Generic PLA @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Generic PLA @BBL H2C", - "sub_path": "filament/Generic PLA @BBL H2C.json" - }, - { - "name": "Generic PLA @BBL H2C 0.2 nozzle", - "sub_path": "filament/Generic PLA @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Generic PLA @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PLA @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PLA @BBL H2D", - "sub_path": "filament/Generic PLA @BBL H2D.json" - }, - { - "name": "Generic PLA @BBL H2D 0.2 nozzle", - "sub_path": "filament/Generic PLA @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Generic PLA @BBL H2DP", - "sub_path": "filament/Generic PLA @BBL H2DP.json" - }, - { - "name": "Generic PLA @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Generic PLA @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Generic PLA @BBL H2S", - "sub_path": "filament/Generic PLA @BBL H2S.json" - }, - { - "name": "Generic PLA @BBL H2S 0.2 nozzle", - "sub_path": "filament/Generic PLA @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Generic PLA @BBL P1P", - "sub_path": "filament/P1P/Generic PLA @BBL P1P.json" - }, - { - "name": "Generic PLA @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/Generic PLA @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Generic PLA @BBL P2S", - "sub_path": "filament/Generic PLA @BBL P2S.json" - }, - { - "name": "Generic PLA @BBL P2S 0.2 nozzle", - "sub_path": "filament/Generic PLA @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Generic PLA @BBL X2D", - "sub_path": "filament/Generic PLA @BBL X2D.json" - }, - { - "name": "Generic PLA @BBL X2D 0.2 nozzle", - "sub_path": "filament/Generic PLA @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Generic PLA @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PLA @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic PLA High Speed @BBL A1", - "sub_path": "filament/Generic PLA High Speed @BBL A1.json" - }, - { - "name": "Generic PLA High Speed @BBL A1 0.2 nozzle", - "sub_path": "filament/Generic PLA High Speed @BBL A1 0.2 nozzle.json" - }, - { - "name": "Generic PLA High Speed @BBL A1M", - "sub_path": "filament/Generic PLA High Speed @BBL A1M.json" - }, - { - "name": "Generic PLA High Speed @BBL A2L", - "sub_path": "filament/Generic PLA High Speed @BBL A2L.json" - }, - { - "name": "Generic PLA High Speed @BBL A2L 0.2 nozzle", - "sub_path": "filament/Generic PLA High Speed @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Generic PLA High Speed @BBL H2C", - "sub_path": "filament/Generic PLA High Speed @BBL H2C.json" - }, - { - "name": "Generic PLA High Speed @BBL H2C 0.2 nozzle", - "sub_path": "filament/Generic PLA High Speed @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Generic PLA High Speed @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PLA High Speed @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PLA High Speed @BBL H2D", - "sub_path": "filament/Generic PLA High Speed @BBL H2D.json" - }, - { - "name": "Generic PLA High Speed @BBL H2D 0.2 nozzle", - "sub_path": "filament/Generic PLA High Speed @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Generic PLA High Speed @BBL H2DP", - "sub_path": "filament/Generic PLA High Speed @BBL H2DP.json" - }, - { - "name": "Generic PLA High Speed @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Generic PLA High Speed @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Generic PLA High Speed @BBL H2S", - "sub_path": "filament/Generic PLA High Speed @BBL H2S.json" - }, - { - "name": "Generic PLA High Speed @BBL H2S 0.2 nozzle", - "sub_path": "filament/Generic PLA High Speed @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Generic PLA High Speed @BBL P1P", - "sub_path": "filament/Generic PLA High Speed @BBL P1P.json" - }, - { - "name": "Generic PLA High Speed @BBL P2S", - "sub_path": "filament/Generic PLA High Speed @BBL P2S.json" - }, - { - "name": "Generic PLA High Speed @BBL P2S 0.2 nozzle", - "sub_path": "filament/Generic PLA High Speed @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Generic PLA High Speed @BBL X1C", - "sub_path": "filament/Generic PLA High Speed @BBL X1C.json" - }, - { - "name": "Generic PLA High Speed @BBL X2D", - "sub_path": "filament/Generic PLA High Speed @BBL X2D.json" - }, - { - "name": "Generic PLA High Speed @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PLA High Speed @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic PLA Silk", - "sub_path": "filament/Generic PLA Silk.json" - }, - { - "name": "Generic PLA Silk @BBL A1", - "sub_path": "filament/Generic PLA Silk @BBL A1.json" - }, - { - "name": "Generic PLA Silk @BBL A1M", - "sub_path": "filament/Generic PLA Silk @BBL A1M.json" - }, - { - "name": "Generic PLA Silk @BBL A2L", - "sub_path": "filament/Generic PLA Silk @BBL A2L.json" - }, - { - "name": "Generic PLA Silk @BBL H2C", - "sub_path": "filament/Generic PLA Silk @BBL H2C.json" - }, - { - "name": "Generic PLA Silk @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PLA Silk @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PLA Silk @BBL H2D", - "sub_path": "filament/Generic PLA Silk @BBL H2D.json" - }, - { - "name": "Generic PLA Silk @BBL H2DP", - "sub_path": "filament/Generic PLA Silk @BBL H2DP.json" - }, - { - "name": "Generic PLA Silk @BBL H2S", - "sub_path": "filament/Generic PLA Silk @BBL H2S.json" - }, - { - "name": "Generic PLA Silk @BBL P1P", - "sub_path": "filament/P1P/Generic PLA Silk @BBL P1P.json" - }, - { - "name": "Generic PLA Silk @BBL P2S", - "sub_path": "filament/Generic PLA Silk @BBL P2S.json" - }, - { - "name": "Generic PLA Silk @BBL X2D", - "sub_path": "filament/Generic PLA Silk @BBL X2D.json" - }, - { - "name": "Generic PLA Silk @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PLA Silk @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic PLA-CF", - "sub_path": "filament/Generic PLA-CF.json" - }, - { - "name": "Generic PLA-CF @BBL A1", - "sub_path": "filament/Generic PLA-CF @BBL A1.json" - }, - { - "name": "Generic PLA-CF @BBL A1M", - "sub_path": "filament/Generic PLA-CF @BBL A1M.json" - }, - { - "name": "Generic PLA-CF @BBL A2L", - "sub_path": "filament/Generic PLA-CF @BBL A2L.json" - }, - { - "name": "Generic PLA-CF @BBL H2C", - "sub_path": "filament/Generic PLA-CF @BBL H2C.json" - }, - { - "name": "Generic PLA-CF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PLA-CF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PLA-CF @BBL H2D", - "sub_path": "filament/Generic PLA-CF @BBL H2D.json" - }, - { - "name": "Generic PLA-CF @BBL H2DP", - "sub_path": "filament/Generic PLA-CF @BBL H2DP.json" - }, - { - "name": "Generic PLA-CF @BBL H2S", - "sub_path": "filament/Generic PLA-CF @BBL H2S.json" - }, - { - "name": "Generic PLA-CF @BBL P1P", - "sub_path": "filament/P1P/Generic PLA-CF @BBL P1P.json" - }, - { - "name": "Generic PLA-CF @BBL P2S", - "sub_path": "filament/Generic PLA-CF @BBL P2S.json" - }, - { - "name": "Generic PLA-CF @BBL X2D", - "sub_path": "filament/Generic PLA-CF @BBL X2D.json" - }, - { - "name": "Generic PLA-CF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PLA-CF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Overture Matte PLA @BBL A1", - "sub_path": "filament/Overture/Overture Matte PLA @BBL A1.json" - }, - { - "name": "Overture Matte PLA @BBL A1 0.2 nozzle", - "sub_path": "filament/Overture/Overture Matte PLA @BBL A1 0.2 nozzle.json" - }, - { - "name": "Overture Matte PLA @BBL A1M", - "sub_path": "filament/Overture/Overture Matte PLA @BBL A1M.json" - }, - { - "name": "Overture Matte PLA @BBL H2D", - "sub_path": "filament/Overture Matte PLA @BBL H2D.json" - }, - { - "name": "Overture Matte PLA @BBL H2D 0.2 nozzle", - "sub_path": "filament/Overture Matte PLA @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Overture Matte PLA @BBL H2DP", - "sub_path": "filament/Overture Matte PLA @BBL H2DP.json" - }, - { - "name": "Overture Matte PLA @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Overture Matte PLA @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Overture Matte PLA @BBL H2S", - "sub_path": "filament/Overture Matte PLA @BBL H2S.json" - }, - { - "name": "Overture Matte PLA @BBL H2S 0.2 nozzle", - "sub_path": "filament/Overture Matte PLA @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Overture Matte PLA @BBL P1P", - "sub_path": "filament/Overture/Overture Matte PLA @BBL P1P.json" - }, - { - "name": "Overture Matte PLA @BBL X1", - "sub_path": "filament/Overture/Overture Matte PLA @BBL X1.json" - }, - { - "name": "Overture Matte PLA @BBL X1C", - "sub_path": "filament/Overture/Overture Matte PLA @BBL X1C.json" - }, - { - "name": "Overture PLA @BBL A1", - "sub_path": "filament/Overture/Overture PLA @BBL A1.json" - }, - { - "name": "Overture PLA @BBL A1 0.2 nozzle", - "sub_path": "filament/Overture/Overture PLA @BBL A1 0.2 nozzle.json" - }, - { - "name": "Overture PLA @BBL A1M", - "sub_path": "filament/Overture/Overture PLA @BBL A1M.json" - }, - { - "name": "Overture PLA @BBL H2D", - "sub_path": "filament/Overture PLA @BBL H2D.json" - }, - { - "name": "Overture PLA @BBL H2D 0.2 nozzle", - "sub_path": "filament/Overture PLA @BBL H2D 0.2 nozzle.json" - }, - { - "name": "Overture PLA @BBL H2DP", - "sub_path": "filament/Overture PLA @BBL H2DP.json" - }, - { - "name": "Overture PLA @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Overture PLA @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Overture PLA @BBL H2S", - "sub_path": "filament/Overture PLA @BBL H2S.json" - }, - { - "name": "Overture PLA @BBL H2S 0.2 nozzle", - "sub_path": "filament/Overture PLA @BBL H2S 0.2 nozzle.json" - }, - { - "name": "Overture PLA @BBL P1P", - "sub_path": "filament/Overture/Overture PLA @BBL P1P.json" - }, - { - "name": "Overture PLA @BBL X1", - "sub_path": "filament/Overture/Overture PLA @BBL X1.json" - }, - { - "name": "Overture PLA @BBL X1C", - "sub_path": "filament/Overture/Overture PLA @BBL X1C.json" - }, - { - "name": "PolyLite PLA @BBL A1", - "sub_path": "filament/Polymaker/PolyLite PLA @BBL A1.json" - }, - { - "name": "PolyLite PLA @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite PLA @BBL A1 0.2 nozzle.json" - }, - { - "name": "PolyLite PLA @BBL A1M", - "sub_path": "filament/Polymaker/PolyLite PLA @BBL A1M.json" - }, - { - "name": "PolyLite PLA @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite PLA @BBL A1M 0.2 nozzle.json" - }, - { - "name": "PolyLite PLA @BBL H2D", - "sub_path": "filament/Polymaker/PolyLite PLA @BBL H2D.json" - }, - { - "name": "PolyLite PLA @BBL H2D 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite PLA @BBL H2D 0.2 nozzle.json" - }, - { - "name": "PolyLite PLA @BBL H2DP", - "sub_path": "filament/PolyLite PLA @BBL H2DP.json" - }, - { - "name": "PolyLite PLA @BBL H2DP 0.2 nozzle", - "sub_path": "filament/PolyLite PLA @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "PolyLite PLA @BBL H2S", - "sub_path": "filament/PolyLite PLA @BBL H2S.json" - }, - { - "name": "PolyLite PLA @BBL H2S 0.2 nozzle", - "sub_path": "filament/PolyLite PLA @BBL H2S 0.2 nozzle.json" - }, - { - "name": "PolyLite PLA @BBL P1P", - "sub_path": "filament/P1P/PolyLite PLA @BBL P1P.json" - }, - { - "name": "PolyLite PLA @BBL X1", - "sub_path": "filament/Polymaker/PolyLite PLA @BBL X1.json" - }, - { - "name": "PolyLite PLA @BBL X1C", - "sub_path": "filament/Polymaker/PolyLite PLA @BBL X1C.json" - }, - { - "name": "PolyTerra PLA @BBL A1", - "sub_path": "filament/Polymaker/PolyTerra PLA @BBL A1.json" - }, - { - "name": "PolyTerra PLA @BBL A1 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyTerra PLA @BBL A1 0.2 nozzle.json" - }, - { - "name": "PolyTerra PLA @BBL A1M", - "sub_path": "filament/Polymaker/PolyTerra PLA @BBL A1M.json" - }, - { - "name": "PolyTerra PLA @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyTerra PLA @BBL A1M 0.2 nozzle.json" - }, - { - "name": "PolyTerra PLA @BBL H2D", - "sub_path": "filament/Polymaker/PolyTerra PLA @BBL H2D.json" - }, - { - "name": "PolyTerra PLA @BBL H2D 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyTerra PLA @BBL H2D 0.2 nozzle.json" - }, - { - "name": "PolyTerra PLA @BBL H2DP", - "sub_path": "filament/PolyTerra PLA @BBL H2DP.json" - }, - { - "name": "PolyTerra PLA @BBL H2DP 0.2 nozzle", - "sub_path": "filament/PolyTerra PLA @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "PolyTerra PLA @BBL H2S", - "sub_path": "filament/PolyTerra PLA @BBL H2S.json" - }, - { - "name": "PolyTerra PLA @BBL H2S 0.2 nozzle", - "sub_path": "filament/PolyTerra PLA @BBL H2S 0.2 nozzle.json" - }, - { - "name": "PolyTerra PLA @BBL P1P", - "sub_path": "filament/P1P/PolyTerra PLA @BBL P1P.json" - }, - { - "name": "PolyTerra PLA @BBL X1", - "sub_path": "filament/Polymaker/PolyTerra PLA @BBL X1.json" - }, - { - "name": "PolyTerra PLA @BBL X1C", - "sub_path": "filament/Polymaker/PolyTerra PLA @BBL X1C.json" - }, - { - "name": "SUNLU PLA Marble @BBL A1", - "sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL A1.json" - }, - { - "name": "SUNLU PLA Marble @BBL A1M", - "sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL A1M.json" - }, - { - "name": "SUNLU PLA Marble @BBL P1P", - "sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL P1P.json" - }, - { - "name": "SUNLU PLA Marble @BBL X1", - "sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL X1.json" - }, - { - "name": "SUNLU PLA Marble @BBL X1C", - "sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL X1C.json" - }, - { - "name": "SUNLU PLA Matte @BBL A1", - "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL A1.json" - }, - { - "name": "SUNLU PLA Matte @BBL A1 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL A1 0.2 nozzle.json" - }, - { - "name": "SUNLU PLA Matte @BBL A1M", - "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL A1M.json" - }, - { - "name": "SUNLU PLA Matte @BBL A1M 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL A1M 0.2 nozzle.json" - }, - { - "name": "SUNLU PLA Matte @BBL P1P", - "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL P1P.json" - }, - { - "name": "SUNLU PLA Matte @BBL P1P 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL P1P 0.2 nozzle.json" - }, - { - "name": "SUNLU PLA Matte @BBL X1", - "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL X1.json" - }, - { - "name": "SUNLU PLA Matte @BBL X1C", - "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL X1C.json" - }, - { - "name": "SUNLU PLA Matte @BBL X1C 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL X1C 0.2 nozzle.json" - }, - { - "name": "SUNLU PLA+ 2.0 @BBL A1", - "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1.json" - }, - { - "name": "SUNLU PLA+ 2.0 @BBL A1 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1 0.2 nozzle.json" - }, - { - "name": "SUNLU PLA+ 2.0 @BBL A1M", - "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1M.json" - }, - { - "name": "SUNLU PLA+ 2.0 @BBL A1M 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1M 0.2 nozzle.json" - }, - { - "name": "SUNLU PLA+ 2.0 @BBL P1P", - "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL P1P.json" - }, - { - "name": "SUNLU PLA+ 2.0 @BBL P1P 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL P1P 0.2 nozzle.json" - }, - { - "name": "SUNLU PLA+ 2.0 @BBL X1", - "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1.json" - }, - { - "name": "SUNLU PLA+ 2.0 @BBL X1C", - "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1C.json" - }, - { - "name": "SUNLU PLA+ 2.0 @BBL X1C 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1C 0.2 nozzle.json" - }, - { - "name": "SUNLU PLA+ @BBL A1", - "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL A1.json" - }, - { - "name": "SUNLU PLA+ @BBL A1 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL A1 0.2 nozzle.json" - }, - { - "name": "SUNLU PLA+ @BBL A1M", - "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL A1M.json" - }, - { - "name": "SUNLU PLA+ @BBL A1M 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL A1M 0.2 nozzle.json" - }, - { - "name": "SUNLU PLA+ @BBL P1P", - "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL P1P.json" - }, - { - "name": "SUNLU PLA+ @BBL P1P 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL P1P 0.2 nozzle.json" - }, - { - "name": "SUNLU PLA+ @BBL X1", - "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL X1.json" - }, - { - "name": "SUNLU PLA+ @BBL X1C", - "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL X1C.json" - }, - { - "name": "SUNLU PLA+ @BBL X1C 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU PLA+ @BBL X1C 0.2 nozzle.json" - }, - { - "name": "SUNLU Silk PLA+ @BBL A1", - "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL A1.json" - }, - { - "name": "SUNLU Silk PLA+ @BBL A1 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL A1 0.2 nozzle.json" - }, - { - "name": "SUNLU Silk PLA+ @BBL A1M", - "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL A1M.json" - }, - { - "name": "SUNLU Silk PLA+ @BBL A1M 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL A1M 0.2 nozzle.json" - }, - { - "name": "SUNLU Silk PLA+ @BBL P1P", - "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL P1P.json" - }, - { - "name": "SUNLU Silk PLA+ @BBL P1P 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL P1P 0.2 nozzle.json" - }, - { - "name": "SUNLU Silk PLA+ @BBL X1", - "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL X1.json" - }, - { - "name": "SUNLU Silk PLA+ @BBL X1C", - "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL X1C.json" - }, - { - "name": "SUNLU Silk PLA+ @BBL X1C 0.2 nozzle", - "sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL X1C 0.2 nozzle.json" - }, - { - "name": "SUNLU Wood PLA @BBL A1", - "sub_path": "filament/SUNLU/SUNLU Wood PLA @BBL A1.json" - }, - { - "name": "SUNLU Wood PLA @BBL A1M", - "sub_path": "filament/SUNLU/SUNLU Wood PLA @BBL A1M.json" - }, - { - "name": "SUNLU Wood PLA @BBL P1P", - "sub_path": "filament/SUNLU/SUNLU Wood PLA @BBL P1P.json" - }, - { - "name": "SUNLU Wood PLA @BBL X1", - "sub_path": "filament/SUNLU/SUNLU Wood PLA @BBL X1.json" - }, - { - "name": "SUNLU Wood PLA @BBL X1C", - "sub_path": "filament/SUNLU/SUNLU Wood PLA @BBL X1C.json" - }, - { - "name": "eSUN PLA+ @BBL A1", - "sub_path": "filament/eSUN/eSUN PLA+ @BBL A1.json" - }, - { - "name": "eSUN PLA+ @BBL A1 0.2 nozzle", - "sub_path": "filament/eSUN/eSUN PLA+ @BBL A1 0.2 nozzle.json" - }, - { - "name": "eSUN PLA+ @BBL A1M", - "sub_path": "filament/eSUN/eSUN PLA+ @BBL A1M.json" - }, - { - "name": "eSUN PLA+ @BBL A1M 0.2 nozzle", - "sub_path": "filament/eSUN/eSUN PLA+ @BBL A1M 0.2 nozzle.json" - }, - { - "name": "eSUN PLA+ @BBL H2D", - "sub_path": "filament/eSUN/eSUN PLA+ @BBL H2D.json" - }, - { - "name": "eSUN PLA+ @BBL H2D 0.2 nozzle", - "sub_path": "filament/eSUN/eSUN PLA+ @BBL H2D 0.2 nozzle.json" - }, - { - "name": "eSUN PLA+ @BBL H2DP", - "sub_path": "filament/eSUN PLA+ @BBL H2DP.json" - }, - { - "name": "eSUN PLA+ @BBL H2DP 0.2 nozzle", - "sub_path": "filament/eSUN PLA+ @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "eSUN PLA+ @BBL H2S", - "sub_path": "filament/eSUN PLA+ @BBL H2S.json" - }, - { - "name": "eSUN PLA+ @BBL H2S 0.2 nozzle", - "sub_path": "filament/eSUN PLA+ @BBL H2S 0.2 nozzle.json" - }, - { - "name": "eSUN PLA+ @BBL P1P", - "sub_path": "filament/P1P/eSUN PLA+ @BBL P1P.json" - }, - { - "name": "eSUN PLA+ @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/eSUN PLA+ @BBL P1P 0.2 nozzle.json" - }, - { - "name": "eSUN PLA+ @BBL X1", - "sub_path": "filament/eSUN/eSUN PLA+ @BBL X1.json" - }, - { - "name": "eSUN PLA+ @BBL X1C", - "sub_path": "filament/eSUN/eSUN PLA+ @BBL X1C.json" - }, - { - "name": "eSUN PLA+ @BBL X1C 0.2 nozzle", - "sub_path": "filament/eSUN/eSUN PLA+ @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Generic PP @BBL A1", - "sub_path": "filament/Generic PP @BBL A1.json" - }, - { - "name": "Generic PP @BBL A1M", - "sub_path": "filament/Generic PP @BBL A1M.json" - }, - { - "name": "Generic PP @BBL A2L", - "sub_path": "filament/Generic PP @BBL A2L.json" - }, - { - "name": "Generic PP @BBL H2C", - "sub_path": "filament/Generic PP @BBL H2C.json" - }, - { - "name": "Generic PP @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PP @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PP @BBL H2D", - "sub_path": "filament/Generic PP @BBL H2D.json" - }, - { - "name": "Generic PP @BBL H2DP", - "sub_path": "filament/Generic PP @BBL H2DP.json" - }, - { - "name": "Generic PP @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic PP @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic PP @BBL P2S", - "sub_path": "filament/Generic PP @BBL P2S.json" - }, - { - "name": "Generic PP @BBL X1C", - "sub_path": "filament/Generic PP @BBL X1C.json" - }, - { - "name": "Generic PP @BBL X2D", - "sub_path": "filament/Generic PP @BBL X2D.json" - }, - { - "name": "Generic PP @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PP @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic PP-CF @BBL A1", - "sub_path": "filament/Generic PP-CF @BBL A1.json" - }, - { - "name": "Generic PP-CF @BBL H2C", - "sub_path": "filament/Generic PP-CF @BBL H2C.json" - }, - { - "name": "Generic PP-CF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PP-CF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PP-CF @BBL H2D", - "sub_path": "filament/Generic PP-CF @BBL H2D.json" - }, - { - "name": "Generic PP-CF @BBL H2DP", - "sub_path": "filament/Generic PP-CF @BBL H2DP.json" - }, - { - "name": "Generic PP-CF @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic PP-CF @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic PP-CF @BBL P2S", - "sub_path": "filament/Generic PP-CF @BBL P2S.json" - }, - { - "name": "Generic PP-CF @BBL X1C", - "sub_path": "filament/Generic PP-CF @BBL X1C.json" - }, - { - "name": "Generic PP-CF @BBL X2D", - "sub_path": "filament/Generic PP-CF @BBL X2D.json" - }, - { - "name": "Generic PP-CF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PP-CF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic PP-GF @BBL A1", - "sub_path": "filament/Generic PP-GF @BBL A1.json" - }, - { - "name": "Generic PP-GF @BBL H2C", - "sub_path": "filament/Generic PP-GF @BBL H2C.json" - }, - { - "name": "Generic PP-GF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PP-GF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PP-GF @BBL H2D", - "sub_path": "filament/Generic PP-GF @BBL H2D.json" - }, - { - "name": "Generic PP-GF @BBL H2DP", - "sub_path": "filament/Generic PP-GF @BBL H2DP.json" - }, - { - "name": "Generic PP-GF @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic PP-GF @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic PP-GF @BBL P2S", - "sub_path": "filament/Generic PP-GF @BBL P2S.json" - }, - { - "name": "Generic PP-GF @BBL X1C", - "sub_path": "filament/Generic PP-GF @BBL X1C.json" - }, - { - "name": "Generic PP-GF @BBL X2D", - "sub_path": "filament/Generic PP-GF @BBL X2D.json" - }, - { - "name": "Generic PP-GF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PP-GF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PPA-CF @BBL H2C", - "sub_path": "filament/Bambu PPA-CF @BBL H2C.json" - }, - { - "name": "Bambu PPA-CF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PPA-CF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PPA-CF @BBL H2D", - "sub_path": "filament/Bambu PPA-CF @BBL H2D.json" - }, - { - "name": "Bambu PPA-CF @BBL H2DP", - "sub_path": "filament/Bambu PPA-CF @BBL H2DP.json" - }, - { - "name": "Bambu PPA-CF @BBL H2S", - "sub_path": "filament/Bambu PPA-CF @BBL H2S.json" - }, - { - "name": "Bambu PPA-CF @BBL P2S", - "sub_path": "filament/Bambu PPA-CF @BBL P2S.json" - }, - { - "name": "Bambu PPA-CF @BBL X1C", - "sub_path": "filament/Bambu PPA-CF @BBL X1C.json" - }, - { - "name": "Bambu PPA-CF @BBL X1E", - "sub_path": "filament/Bambu PPA-CF @BBL X1E.json" - }, - { - "name": "Bambu PPA-CF @BBL X2D", - "sub_path": "filament/Bambu PPA-CF @BBL X2D.json" - }, - { - "name": "Bambu PPA-CF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PPA-CF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic PPA-CF @BBL H2C", - "sub_path": "filament/Generic PPA-CF @BBL H2C.json" - }, - { - "name": "Generic PPA-CF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PPA-CF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PPA-CF @BBL H2D", - "sub_path": "filament/Generic PPA-CF @BBL H2D.json" - }, - { - "name": "Generic PPA-CF @BBL H2DP", - "sub_path": "filament/Generic PPA-CF @BBL H2DP.json" - }, - { - "name": "Generic PPA-CF @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic PPA-CF @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic PPA-CF @BBL P2S", - "sub_path": "filament/Generic PPA-CF @BBL P2S.json" - }, - { - "name": "Generic PPA-CF @BBL X1C", - "sub_path": "filament/Generic PPA-CF @BBL X1C.json" - }, - { - "name": "Generic PPA-CF @BBL X1E", - "sub_path": "filament/Generic PPA-CF @BBL X1E.json" - }, - { - "name": "Generic PPA-CF @BBL X2D", - "sub_path": "filament/Generic PPA-CF @BBL X2D.json" - }, - { - "name": "Generic PPA-CF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PPA-CF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic PPA-GF @BBL H2C", - "sub_path": "filament/Generic PPA-GF @BBL H2C.json" - }, - { - "name": "Generic PPA-GF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PPA-GF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PPA-GF @BBL H2D", - "sub_path": "filament/Generic PPA-GF @BBL H2D.json" - }, - { - "name": "Generic PPA-GF @BBL H2DP", - "sub_path": "filament/Generic PPA-GF @BBL H2DP.json" - }, - { - "name": "Generic PPA-GF @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic PPA-GF @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic PPA-GF @BBL P2S", - "sub_path": "filament/Generic PPA-GF @BBL P2S.json" - }, - { - "name": "Generic PPA-GF @BBL X1C", - "sub_path": "filament/Generic PPA-GF @BBL X1C.json" - }, - { - "name": "Generic PPA-GF @BBL X1E", - "sub_path": "filament/Generic PPA-GF @BBL X1E.json" - }, - { - "name": "Generic PPA-GF @BBL X2D", - "sub_path": "filament/Generic PPA-GF @BBL X2D.json" - }, - { - "name": "Generic PPA-GF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PPA-GF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu PPS-CF @BBL H2C", - "sub_path": "filament/Bambu PPS-CF @BBL H2C.json" - }, - { - "name": "Bambu PPS-CF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PPS-CF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PPS-CF @BBL H2D", - "sub_path": "filament/Bambu PPS-CF @BBL H2D.json" - }, - { - "name": "Bambu PPS-CF @BBL H2DP", - "sub_path": "filament/Bambu PPS-CF @BBL H2DP.json" - }, - { - "name": "Bambu PPS-CF @BBL H2S", - "sub_path": "filament/Bambu PPS-CF @BBL H2S.json" - }, - { - "name": "Bambu PPS-CF @BBL X1E", - "sub_path": "filament/Bambu PPS-CF @BBL X1E.json" - }, - { - "name": "Generic PPS @BBL H2C", - "sub_path": "filament/Generic PPS @BBL H2C.json" - }, - { - "name": "Generic PPS @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PPS @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PPS @BBL H2D", - "sub_path": "filament/Generic PPS @BBL H2D.json" - }, - { - "name": "Generic PPS @BBL H2DP", - "sub_path": "filament/Generic PPS @BBL H2DP.json" - }, - { - "name": "Generic PPS @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic PPS @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic PPS @BBL X1E", - "sub_path": "filament/Generic PPS @BBL X1E.json" - }, - { - "name": "Generic PPS-CF @BBL H2C", - "sub_path": "filament/Generic PPS-CF @BBL H2C.json" - }, - { - "name": "Generic PPS-CF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PPS-CF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PPS-CF @BBL H2D", - "sub_path": "filament/Generic PPS-CF @BBL H2D.json" - }, - { - "name": "Generic PPS-CF @BBL H2DP", - "sub_path": "filament/Generic PPS-CF @BBL H2DP.json" - }, - { - "name": "Generic PPS-CF @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic PPS-CF @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic PPS-CF @BBL X1E", - "sub_path": "filament/Generic PPS-CF @BBL X1E.json" - }, - { - "name": "Bambu PVA @BBL A1", - "sub_path": "filament/Bambu PVA @BBL A1.json" - }, - { - "name": "Bambu PVA @BBL A1 0.2 nozzle", - "sub_path": "filament/Bambu PVA @BBL A1 0.2 nozzle.json" - }, - { - "name": "Bambu PVA @BBL A1M", - "sub_path": "filament/Bambu PVA @BBL A1M.json" - }, - { - "name": "Bambu PVA @BBL A1M 0.2 nozzle", - "sub_path": "filament/Bambu PVA @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Bambu PVA @BBL A2L", - "sub_path": "filament/Bambu PVA @BBL A2L.json" - }, - { - "name": "Bambu PVA @BBL H2C", - "sub_path": "filament/Bambu PVA @BBL H2C.json" - }, - { - "name": "Bambu PVA @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu PVA @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu PVA @BBL H2D", - "sub_path": "filament/Bambu PVA @BBL H2D.json" - }, - { - "name": "Bambu PVA @BBL H2DP", - "sub_path": "filament/Bambu PVA @BBL H2DP.json" - }, - { - "name": "Bambu PVA @BBL H2S", - "sub_path": "filament/Bambu PVA @BBL H2S.json" - }, - { - "name": "Bambu PVA @BBL P1P", - "sub_path": "filament/Bambu PVA @BBL P1P.json" - }, - { - "name": "Bambu PVA @BBL P1P 0.2 nozzle", - "sub_path": "filament/Bambu PVA @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu PVA @BBL P2S", - "sub_path": "filament/Bambu PVA @BBL P2S.json" - }, - { - "name": "Bambu PVA @BBL X1C", - "sub_path": "filament/Bambu PVA @BBL X1C.json" - }, - { - "name": "Bambu PVA @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PVA @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PVA @BBL X2D", - "sub_path": "filament/Bambu PVA @BBL X2D.json" - }, - { - "name": "Bambu PVA @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu PVA @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic PVA", - "sub_path": "filament/Generic PVA.json" - }, - { - "name": "Generic PVA @0.2 nozzle", - "sub_path": "filament/Generic PVA @0.2 nozzle.json" - }, - { - "name": "Generic PVA @BBL A1", - "sub_path": "filament/Generic PVA @BBL A1.json" - }, - { - "name": "Generic PVA @BBL A1 0.2 nozzle", - "sub_path": "filament/Generic PVA @BBL A1 0.2 nozzle.json" - }, - { - "name": "Generic PVA @BBL A1M", - "sub_path": "filament/Generic PVA @BBL A1M.json" - }, - { - "name": "Generic PVA @BBL A1M 0.2 nozzle", - "sub_path": "filament/Generic PVA @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Generic PVA @BBL A2L", - "sub_path": "filament/Generic PVA @BBL A2L.json" - }, - { - "name": "Generic PVA @BBL A2L 0.2 nozzle", - "sub_path": "filament/Generic PVA @BBL A2L 0.2 nozzle.json" - }, - { - "name": "Generic PVA @BBL H2C", - "sub_path": "filament/Generic PVA @BBL H2C.json" - }, - { - "name": "Generic PVA @BBL H2C 0.2 nozzle", - "sub_path": "filament/Generic PVA @BBL H2C 0.2 nozzle.json" - }, - { - "name": "Generic PVA @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PVA @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PVA @BBL H2D", - "sub_path": "filament/Generic PVA @BBL H2D.json" - }, - { - "name": "Generic PVA @BBL H2DP", - "sub_path": "filament/Generic PVA @BBL H2DP.json" - }, - { - "name": "Generic PVA @BBL H2S 0.4 nozzle", - "sub_path": "filament/Generic PVA @BBL H2S 0.4 nozzle.json" - }, - { - "name": "Generic PVA @BBL P1P", - "sub_path": "filament/P1P/Generic PVA @BBL P1P.json" - }, - { - "name": "Generic PVA @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/Generic PVA @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Generic PVA @BBL P2S", - "sub_path": "filament/Generic PVA @BBL P2S.json" - }, - { - "name": "Generic PVA @BBL P2S 0.2 nozzle", - "sub_path": "filament/Generic PVA @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Generic PVA @BBL X2D", - "sub_path": "filament/Generic PVA @BBL X2D.json" - }, - { - "name": "Generic PVA @BBL X2D 0.2 nozzle", - "sub_path": "filament/Generic PVA @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Generic PVA @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic PVA @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic SBS", - "sub_path": "filament/Generic SBS.json" - }, - { - "name": "Bambu TPU 85A @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu TPU 85A @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu TPU 85A @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu TPU 85A @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu TPU 85A @BBL H2C", - "sub_path": "filament/Bambu TPU 85A @BBL H2C.json" - }, - { - "name": "Bambu TPU 85A @BBL H2D", - "sub_path": "filament/Bambu TPU 85A @BBL H2D.json" - }, - { - "name": "Bambu TPU 85A @BBL H2D 0.4 nozzle", - "sub_path": "filament/Bambu TPU 85A @BBL H2D 0.4 nozzle.json" - }, - { - "name": "Bambu TPU 85A @BBL H2DP", - "sub_path": "filament/Bambu TPU 85A @BBL H2DP.json" - }, - { - "name": "Bambu TPU 85A @BBL H2DP 0.4 nozzle", - "sub_path": "filament/Bambu TPU 85A @BBL H2DP 0.4 nozzle.json" - }, - { - "name": "Bambu TPU 85A @BBL H2S", - "sub_path": "filament/Bambu TPU 85A @BBL H2S.json" - }, - { - "name": "Bambu TPU 85A @BBL H2S 0.6 nozzle", - "sub_path": "filament/Bambu TPU 85A @BBL H2S 0.6 nozzle.json" - }, - { - "name": "Bambu TPU 85A @BBL H2S 0.8 nozzle", - "sub_path": "filament/Bambu TPU 85A @BBL H2S 0.8 nozzle.json" - }, - { - "name": "Bambu TPU 85A @BBL P1P", - "sub_path": "filament/Bambu TPU 85A @BBL P1P.json" - }, - { - "name": "Bambu TPU 85A @BBL P2S", - "sub_path": "filament/Bambu TPU 85A @BBL P2S.json" - }, - { - "name": "Bambu TPU 85A @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu TPU 85A @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu TPU 85A @BBL X1C", - "sub_path": "filament/Bambu TPU 85A @BBL X1C.json" - }, - { - "name": "Bambu TPU 85A @BBL X2D", - "sub_path": "filament/Bambu TPU 85A @BBL X2D.json" - }, - { - "name": "Bambu TPU 85A @BBL X2D 0.8 nozzle", - "sub_path": "filament/Bambu TPU 85A @BBL X2D 0.8 nozzle.json" - }, - { - "name": "Bambu TPU 90A @BBL A1", - "sub_path": "filament/Bambu TPU 90A @BBL A1.json" - }, - { - "name": "Bambu TPU 90A @BBL A1M", - "sub_path": "filament/Bambu TPU 90A @BBL A1M.json" - }, - { - "name": "Bambu TPU 90A @BBL A2L", - "sub_path": "filament/Bambu TPU 90A @BBL A2L.json" - }, - { - "name": "Bambu TPU 90A @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu TPU 90A @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu TPU 90A @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu TPU 90A @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu TPU 90A @BBL H2C", - "sub_path": "filament/Bambu TPU 90A @BBL H2C.json" - }, - { - "name": "Bambu TPU 90A @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu TPU 90A @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu TPU 90A @BBL H2D", - "sub_path": "filament/Bambu TPU 90A @BBL H2D.json" - }, - { - "name": "Bambu TPU 90A @BBL H2D 0.6 nozzle", - "sub_path": "filament/Bambu TPU 90A @BBL H2D 0.6 nozzle.json" - }, - { - "name": "Bambu TPU 90A @BBL H2D 0.8 nozzle", - "sub_path": "filament/Bambu TPU 90A @BBL H2D 0.8 nozzle.json" - }, - { - "name": "Bambu TPU 90A @BBL H2DP", - "sub_path": "filament/Bambu TPU 90A @BBL H2DP.json" - }, - { - "name": "Bambu TPU 90A @BBL H2DP 0.6 nozzle", - "sub_path": "filament/Bambu TPU 90A @BBL H2DP 0.6 nozzle.json" - }, - { - "name": "Bambu TPU 90A @BBL H2DP 0.8 nozzle", - "sub_path": "filament/Bambu TPU 90A @BBL H2DP 0.8 nozzle.json" - }, - { - "name": "Bambu TPU 90A @BBL H2S", - "sub_path": "filament/Bambu TPU 90A @BBL H2S.json" - }, - { - "name": "Bambu TPU 90A @BBL H2S 0.6 nozzle", - "sub_path": "filament/Bambu TPU 90A @BBL H2S 0.6 nozzle.json" - }, - { - "name": "Bambu TPU 90A @BBL H2S 0.8 nozzle", - "sub_path": "filament/Bambu TPU 90A @BBL H2S 0.8 nozzle.json" - }, - { - "name": "Bambu TPU 90A @BBL P1P", - "sub_path": "filament/Bambu TPU 90A @BBL P1P.json" - }, - { - "name": "Bambu TPU 90A @BBL P2S", - "sub_path": "filament/Bambu TPU 90A @BBL P2S.json" - }, - { - "name": "Bambu TPU 90A @BBL P2S 0.6 nozzle", - "sub_path": "filament/Bambu TPU 90A @BBL P2S 0.6 nozzle.json" - }, - { - "name": "Bambu TPU 90A @BBL P2S 0.8 nozzle", - "sub_path": "filament/Bambu TPU 90A @BBL P2S 0.8 nozzle.json" - }, - { - "name": "Bambu TPU 90A @BBL X1C", - "sub_path": "filament/Bambu TPU 90A @BBL X1C.json" - }, - { - "name": "Bambu TPU 90A @BBL X2D", - "sub_path": "filament/Bambu TPU 90A @BBL X2D.json" - }, - { - "name": "Bambu TPU 90A @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu TPU 90A @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu TPU 90A @BBL X2D 0.8 nozzle", - "sub_path": "filament/Bambu TPU 90A @BBL X2D 0.8 nozzle.json" - }, - { - "name": "Bambu TPU 95A @BBL A1", - "sub_path": "filament/Bambu TPU 95A @BBL A1.json" - }, - { - "name": "Bambu TPU 95A @BBL A1M", - "sub_path": "filament/Bambu TPU 95A @BBL A1M.json" - }, - { - "name": "Bambu TPU 95A @BBL A2L", - "sub_path": "filament/Bambu TPU 95A @BBL A2L.json" - }, - { - "name": "Bambu TPU 95A @BBL H2C", - "sub_path": "filament/Bambu TPU 95A @BBL H2C.json" - }, - { - "name": "Bambu TPU 95A @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu TPU 95A @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu TPU 95A @BBL H2D", - "sub_path": "filament/Bambu TPU 95A @BBL H2D.json" - }, - { - "name": "Bambu TPU 95A @BBL H2DP", - "sub_path": "filament/Bambu TPU 95A @BBL H2DP.json" - }, - { - "name": "Bambu TPU 95A @BBL H2S", - "sub_path": "filament/Bambu TPU 95A @BBL H2S.json" - }, - { - "name": "Bambu TPU 95A @BBL P1P", - "sub_path": "filament/P1P/Bambu TPU 95A @BBL P1P.json" - }, - { - "name": "Bambu TPU 95A @BBL P2S", - "sub_path": "filament/Bambu TPU 95A @BBL P2S.json" - }, - { - "name": "Bambu TPU 95A @BBL X1", - "sub_path": "filament/Bambu TPU 95A @BBL X1.json" - }, - { - "name": "Bambu TPU 95A @BBL X1C", - "sub_path": "filament/Bambu TPU 95A @BBL X1C.json" - }, - { - "name": "Bambu TPU 95A @BBL X2D", - "sub_path": "filament/Bambu TPU 95A @BBL X2D.json" - }, - { - "name": "Bambu TPU 95A @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu TPU 95A @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu TPU 95A HF @BBL A1", - "sub_path": "filament/Bambu TPU 95A HF @BBL A1.json" - }, - { - "name": "Bambu TPU 95A HF @BBL A1M", - "sub_path": "filament/Bambu TPU 95A HF @BBL A1M.json" - }, - { - "name": "Bambu TPU 95A HF @BBL A2L", - "sub_path": "filament/Bambu TPU 95A HF @BBL A2L.json" - }, - { - "name": "Bambu TPU 95A HF @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu TPU 95A HF @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu TPU 95A HF @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu TPU 95A HF @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu TPU 95A HF @BBL H2C", - "sub_path": "filament/Bambu TPU 95A HF @BBL H2C.json" - }, - { - "name": "Bambu TPU 95A HF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu TPU 95A HF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu TPU 95A HF @BBL H2D", - "sub_path": "filament/Bambu TPU 95A HF @BBL H2D.json" - }, - { - "name": "Bambu TPU 95A HF @BBL H2DP", - "sub_path": "filament/Bambu TPU 95A HF @BBL H2DP.json" - }, - { - "name": "Bambu TPU 95A HF @BBL H2S", - "sub_path": "filament/Bambu TPU 95A HF @BBL H2S.json" - }, - { - "name": "Bambu TPU 95A HF @BBL P1P", - "sub_path": "filament/Bambu TPU 95A HF @BBL P1P.json" - }, - { - "name": "Bambu TPU 95A HF @BBL P1S", - "sub_path": "filament/Bambu TPU 95A HF @BBL P1S.json" - }, - { - "name": "Bambu TPU 95A HF @BBL P2S", - "sub_path": "filament/Bambu TPU 95A HF @BBL P2S.json" - }, - { - "name": "Bambu TPU 95A HF @BBL X1", - "sub_path": "filament/Bambu TPU 95A HF @BBL X1.json" - }, - { - "name": "Bambu TPU 95A HF @BBL X1C", - "sub_path": "filament/Bambu TPU 95A HF @BBL X1C.json" - }, - { - "name": "Bambu TPU 95A HF @BBL X1E", - "sub_path": "filament/Bambu TPU 95A HF @BBL X1E.json" - }, - { - "name": "Bambu TPU 95A HF @BBL X2D", - "sub_path": "filament/Bambu TPU 95A HF @BBL X2D.json" - }, - { - "name": "Bambu TPU 95A HF @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu TPU 95A HF @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Bambu TPU for AMS @BBL A1", - "sub_path": "filament/Bambu TPU for AMS @BBL A1.json" - }, - { - "name": "Bambu TPU for AMS @BBL A1M", - "sub_path": "filament/Bambu TPU for AMS @BBL A1M.json" - }, - { - "name": "Bambu TPU for AMS @BBL A2L", - "sub_path": "filament/Bambu TPU for AMS @BBL A2L.json" - }, - { - "name": "Bambu TPU for AMS @BBL A2L 0.6 nozzle", - "sub_path": "filament/Bambu TPU for AMS @BBL A2L 0.6 nozzle.json" - }, - { - "name": "Bambu TPU for AMS @BBL A2L 0.8 nozzle", - "sub_path": "filament/Bambu TPU for AMS @BBL A2L 0.8 nozzle.json" - }, - { - "name": "Bambu TPU for AMS @BBL H2C", - "sub_path": "filament/Bambu TPU for AMS @BBL H2C.json" - }, - { - "name": "Bambu TPU for AMS @BBL H2C 0.4 nozzle", - "sub_path": "filament/Bambu TPU for AMS @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Bambu TPU for AMS @BBL H2D", - "sub_path": "filament/Bambu TPU for AMS @BBL H2D.json" - }, - { - "name": "Bambu TPU for AMS @BBL H2DP", - "sub_path": "filament/Bambu TPU for AMS @BBL H2DP.json" - }, - { - "name": "Bambu TPU for AMS @BBL H2S", - "sub_path": "filament/Bambu TPU for AMS @BBL H2S.json" - }, - { - "name": "Bambu TPU for AMS @BBL P1P", - "sub_path": "filament/Bambu TPU for AMS @BBL P1P.json" - }, - { - "name": "Bambu TPU for AMS @BBL P2S", - "sub_path": "filament/Bambu TPU for AMS @BBL P2S.json" - }, - { - "name": "Bambu TPU for AMS @BBL X1C", - "sub_path": "filament/Bambu TPU for AMS @BBL X1C.json" - }, - { - "name": "Bambu TPU for AMS @BBL X2D", - "sub_path": "filament/Bambu TPU for AMS @BBL X2D.json" - }, - { - "name": "Bambu TPU for AMS @BBL X2D 0.4 nozzle", - "sub_path": "filament/Bambu TPU for AMS @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic TPU", - "sub_path": "filament/Generic TPU.json" - }, - { - "name": "Generic TPU @BBL H2C", - "sub_path": "filament/Generic TPU @BBL H2C.json" - }, - { - "name": "Generic TPU @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic TPU @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic TPU @BBL H2D", - "sub_path": "filament/Generic TPU @BBL H2D.json" - }, - { - "name": "Generic TPU @BBL H2DP", - "sub_path": "filament/Generic TPU @BBL H2DP.json" - }, - { - "name": "Generic TPU @BBL P1P", - "sub_path": "filament/P1P/Generic TPU @BBL P1P.json" - }, - { - "name": "Generic TPU @BBL P2S", - "sub_path": "filament/Generic TPU @BBL P2S.json" - }, - { - "name": "Generic TPU @BBL X2D", - "sub_path": "filament/Generic TPU @BBL X2D.json" - }, - { - "name": "Generic TPU @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic TPU @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic TPU for AMS @BBL A1", - "sub_path": "filament/Generic TPU for AMS @BBL A1.json" - }, - { - "name": "Generic TPU for AMS @BBL A1M", - "sub_path": "filament/Generic TPU for AMS @BBL A1M.json" - }, - { - "name": "Generic TPU for AMS @BBL A2L", - "sub_path": "filament/Generic TPU for AMS @BBL A2L.json" - }, - { - "name": "Generic TPU for AMS @BBL H2C", - "sub_path": "filament/Generic TPU for AMS @BBL H2C.json" - }, - { - "name": "Generic TPU for AMS @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic TPU for AMS @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic TPU for AMS @BBL H2D", - "sub_path": "filament/Generic TPU for AMS @BBL H2D.json" - }, - { - "name": "Generic TPU for AMS @BBL H2DP", - "sub_path": "filament/Generic TPU for AMS @BBL H2DP.json" - }, - { - "name": "Generic TPU for AMS @BBL H2S", - "sub_path": "filament/Generic TPU for AMS @BBL H2S.json" - }, - { - "name": "Generic TPU for AMS @BBL P1P", - "sub_path": "filament/Generic TPU for AMS @BBL P1P.json" - }, - { - "name": "Generic TPU for AMS @BBL P2S", - "sub_path": "filament/Generic TPU for AMS @BBL P2S.json" - }, - { - "name": "Generic TPU for AMS @BBL X1C", - "sub_path": "filament/Generic TPU for AMS @BBL X1C.json" - }, - { - "name": "Generic TPU for AMS @BBL X2D", - "sub_path": "filament/Generic TPU for AMS @BBL X2D.json" - }, - { - "name": "Generic TPU for AMS @BBL X2D 0.4 nozzle", - "sub_path": "filament/Generic TPU for AMS @BBL X2D 0.4 nozzle.json" - }, - { - "name": "Generic ABS @BBL H2DP", - "sub_path": "filament/Generic ABS @BBL H2DP.json" - }, - { - "name": "Generic ABS @BBL X1E", - "sub_path": "filament/Generic ABS @BBL X1E.json" - }, - { - "name": "Generic ABS @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Generic ABS @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Generic ABS @BBL X1E 0.2 nozzle", - "sub_path": "filament/Generic ABS @BBL X1E 0.2 nozzle.json" - }, - { - "name": "PolyLite ABS @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite ABS @BBL P1P 0.2 nozzle.json" - }, - { - "name": "PolyLite ABS @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite ABS @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Generic ASA @BBL H2DP", - "sub_path": "filament/Generic ASA @BBL H2DP.json" - }, - { - "name": "Generic ASA @BBL X1E", - "sub_path": "filament/Generic ASA @BBL X1E.json" - }, - { - "name": "Generic ASA @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Generic ASA @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Generic ASA @BBL X1E 0.2 nozzle", - "sub_path": "filament/Generic ASA @BBL X1E 0.2 nozzle.json" - }, - { - "name": "PolyLite ASA @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite ASA @BBL P1P 0.2 nozzle.json" - }, - { - "name": "PolyLite ASA @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite ASA @BBL X1C 0.2 nozzle.json" - }, - { - "name": "PolyLite ASA @BBL X1E 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite ASA @BBL X1E 0.2 nozzle.json" - }, - { - "name": "Generic PA @BBL A1", - "sub_path": "filament/Generic PA @BBL A1.json" - }, - { - "name": "Generic PA-CF @BBL A1", - "sub_path": "filament/Generic PA-CF @BBL A1.json" - }, - { - "name": "Generic PA-CF @BBL H2C", - "sub_path": "filament/Generic PA-CF @BBL H2C.json" - }, - { - "name": "Generic PA-CF @BBL H2C 0.4 nozzle", - "sub_path": "filament/Generic PA-CF @BBL H2C 0.4 nozzle.json" - }, - { - "name": "Generic PA-CF @BBL H2D", - "sub_path": "filament/Generic PA-CF @BBL H2D.json" - }, - { - "name": "Generic PA-CF @BBL H2DP", - "sub_path": "filament/Generic PA-CF @BBL H2DP.json" - }, - { - "name": "Generic PA-CF @BBL X1E", - "sub_path": "filament/Generic PA-CF @BBL X1E.json" - }, - { - "name": "Bambu PC @BBL P1S", - "sub_path": "filament/Bambu PC @BBL P1S.json" - }, - { - "name": "Bambu PC @BBL P1S 0.2 nozzle", - "sub_path": "filament/Bambu PC @BBL P1S 0.2 nozzle.json" - }, - { - "name": "Bambu PC @BBL P1S 0.6 nozzle", - "sub_path": "filament/Bambu PC @BBL P1S 0.6 nozzle.json" - }, - { - "name": "Bambu PC @BBL P1S 0.8 nozzle", - "sub_path": "filament/Bambu PC @BBL P1S 0.8 nozzle.json" - }, - { - "name": "Generic PC @BBL H2DP", - "sub_path": "filament/Generic PC @BBL H2DP.json" - }, - { - "name": "Generic PC @BBL P1S", - "sub_path": "filament/Generic PC @BBL P1S.json" - }, - { - "name": "Generic PC @BBL P2S", - "sub_path": "filament/Generic PC @BBL P2S.json" - }, - { - "name": "Generic PC @BBL X1E", - "sub_path": "filament/Generic PC @BBL X1E.json" - }, - { - "name": "Generic PC @BBL H2DP 0.2 nozzle", - "sub_path": "filament/Generic PC @BBL H2DP 0.2 nozzle.json" - }, - { - "name": "Generic PC @BBL P1S 0.2 nozzle", - "sub_path": "filament/Generic PC @BBL P1S 0.2 nozzle.json" - }, - { - "name": "Generic PC @BBL P2S 0.2 nozzle", - "sub_path": "filament/Generic PC @BBL P2S 0.2 nozzle.json" - }, - { - "name": "Generic PC @BBL X1E 0.2 nozzle", - "sub_path": "filament/Generic PC @BBL X1E 0.2 nozzle.json" - }, - { - "name": "Bambu PETG-CF @BBL A1M 0.4 nozzle", - "sub_path": "filament/Bambu PETG-CF @BBL A1M 0.4 nozzle.json" - }, - { - "name": "PolyLite PETG @BBL A1M 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite PETG @BBL A1M 0.2 nozzle.json" - }, - { - "name": "PolyLite PETG @BBL P1P 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite PETG @BBL P1P 0.2 nozzle.json" - }, - { - "name": "PolyLite PETG @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite PETG @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Glow @BBL P1P 0.2 nozzle", - "sub_path": "filament/Bambu PLA Glow @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Glow @BBL X1 0.2 nozzle", - "sub_path": "filament/Bambu PLA Glow @BBL X1 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Glow @BBL X1C 0.2 nozzle", - "sub_path": "filament/Bambu PLA Glow @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Glow @BBL X2D 0.2 nozzle", - "sub_path": "filament/Bambu PLA Glow @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Bambu PLA Glow @BBL X1E 0.2 nozzle", - "sub_path": "filament/Bambu PLA Glow @BBL X1E 0.2 nozzle.json" - }, - { - "name": "Generic PLA High Speed @BBL A1M 0.2 nozzle", - "sub_path": "filament/Generic PLA High Speed @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Generic PLA High Speed @BBL P1P 0.2 nozzle", - "sub_path": "filament/Generic PLA High Speed @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Generic PLA High Speed @BBL X1C 0.2 nozzle", - "sub_path": "filament/Generic PLA High Speed @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Generic PLA High Speed @BBL X2D 0.2 nozzle", - "sub_path": "filament/Generic PLA High Speed @BBL X2D 0.2 nozzle.json" - }, - { - "name": "Overture Matte PLA @BBL A1M 0.2 nozzle", - "sub_path": "filament/Overture/Overture Matte PLA @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Overture Matte PLA @BBL P1P 0.2 nozzle", - "sub_path": "filament/Overture/Overture Matte PLA @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Overture Matte PLA @BBL X1C 0.2 nozzle", - "sub_path": "filament/Overture/Overture Matte PLA @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Overture PLA @BBL A1M 0.2 nozzle", - "sub_path": "filament/Overture/Overture PLA @BBL A1M 0.2 nozzle.json" - }, - { - "name": "Overture PLA @BBL P1P 0.2 nozzle", - "sub_path": "filament/Overture/Overture PLA @BBL P1P 0.2 nozzle.json" - }, - { - "name": "Overture PLA @BBL X1C 0.2 nozzle", - "sub_path": "filament/Overture/Overture PLA @BBL X1C 0.2 nozzle.json" - }, - { - "name": "PolyLite PLA @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/PolyLite PLA @BBL P1P 0.2 nozzle.json" - }, - { - "name": "PolyLite PLA @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyLite PLA @BBL X1C 0.2 nozzle.json" - }, - { - "name": "PolyTerra PLA @BBL P1P 0.2 nozzle", - "sub_path": "filament/P1P/PolyTerra PLA @BBL P1P 0.2 nozzle.json" - }, - { - "name": "PolyTerra PLA @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/PolyTerra PLA @BBL X1C 0.2 nozzle.json" - }, - { - "name": "Bambu TPU 95A HF @BBL H2D 0.4 nozzle", - "sub_path": "filament/Bambu TPU 95A HF @BBL H2D 0.4 nozzle.json" - }, - { - "name": "Bambu TPU 95A HF @BBL H2DP 0.4 nozzle", - "sub_path": "filament/Bambu TPU 95A HF @BBL H2DP 0.4 nozzle.json" - }, - { - "name": "Generic TPU @BBL A1", - "sub_path": "filament/Generic TPU @BBL A1.json" - }, - { - "name": "Generic TPU @BBL A1M", - "sub_path": "filament/Generic TPU @BBL A1M.json" - }, - { - "name": "Generic TPU @BBL A2L", - "sub_path": "filament/Generic TPU @BBL A2L.json" - }, - { - "name": "Generic TPU @BBL H2S", - "sub_path": "filament/Generic TPU @BBL H2S.json" - }, - { - "name": "fdm_filament_dual_common", - "sub_path": "filament/fdm_filament_dual_common.json" - } - ], - "machine_list": [ - { - "name": "fdm_machine_common", - "sub_path": "machine/fdm_machine_common.json" - }, - { - "name": "fdm_bbl_3dp_001_common", - "sub_path": "machine/fdm_bbl_3dp_001_common.json" - }, - { - "name": "fdm_bbl_3dp_002_common", - "sub_path": "machine/fdm_bbl_3dp_002_common.json" - }, - { - "name": "Bambu Lab A1 0.4 nozzle", - "sub_path": "machine/Bambu Lab A1 0.4 nozzle.json" - }, - { - "name": "Bambu Lab A1 mini 0.4 nozzle", - "sub_path": "machine/Bambu Lab A1 mini 0.4 nozzle.json" - }, - { - "name": "Bambu Lab A2L 0.4 nozzle", - "sub_path": "machine/Bambu Lab A2L 0.4 nozzle.json" - }, - { - "name": "Bambu Lab H2S 0.4 nozzle", - "sub_path": "machine/Bambu Lab H2S 0.4 nozzle.json" - }, - { - "name": "Bambu Lab P1P 0.4 nozzle", - "sub_path": "machine/Bambu Lab P1P 0.4 nozzle.json" - }, - { - "name": "Bambu Lab P1S 0.4 nozzle", - "sub_path": "machine/Bambu Lab P1S 0.4 nozzle.json" - }, - { - "name": "Bambu Lab P2S 0.4 nozzle", - "sub_path": "machine/Bambu Lab P2S 0.4 nozzle.json" - }, - { - "name": "Bambu Lab X1 0.4 nozzle", - "sub_path": "machine/Bambu Lab X1 0.4 nozzle.json" - }, - { - "name": "Bambu Lab X1 Carbon 0.4 nozzle", - "sub_path": "machine/Bambu Lab X1 Carbon 0.4 nozzle.json" - }, - { - "name": "Bambu Lab X1E 0.4 nozzle", - "sub_path": "machine/Bambu Lab X1E 0.4 nozzle.json" - }, - { - "name": "Bambu Lab H2C 0.4 nozzle", - "sub_path": "machine/Bambu Lab H2C 0.4 nozzle.json" - }, - { - "name": "Bambu Lab H2D 0.4 nozzle", - "sub_path": "machine/Bambu Lab H2D 0.4 nozzle.json" - }, - { - "name": "Bambu Lab H2D Pro 0.4 nozzle", - "sub_path": "machine/Bambu Lab H2D Pro 0.4 nozzle.json" - }, - { - "name": "Bambu Lab X2D 0.4 nozzle", - "sub_path": "machine/Bambu Lab X2D 0.4 nozzle.json" - }, - { - "name": "Bambu Lab A1 0.2 nozzle", - "sub_path": "machine/Bambu Lab A1 0.2 nozzle.json" - }, - { - "name": "Bambu Lab A1 0.6 nozzle", - "sub_path": "machine/Bambu Lab A1 0.6 nozzle.json" - }, - { - "name": "Bambu Lab A1 0.8 nozzle", - "sub_path": "machine/Bambu Lab A1 0.8 nozzle.json" - }, - { - "name": "Bambu Lab A1 mini 0.2 nozzle", - "sub_path": "machine/Bambu Lab A1 mini 0.2 nozzle.json" - }, - { - "name": "Bambu Lab A1 mini 0.6 nozzle", - "sub_path": "machine/Bambu Lab A1 mini 0.6 nozzle.json" - }, - { - "name": "Bambu Lab A1 mini 0.8 nozzle", - "sub_path": "machine/Bambu Lab A1 mini 0.8 nozzle.json" - }, - { - "name": "Bambu Lab A2L 0.2 nozzle", - "sub_path": "machine/Bambu Lab A2L 0.2 nozzle.json" - }, - { - "name": "Bambu Lab A2L 0.6 nozzle", - "sub_path": "machine/Bambu Lab A2L 0.6 nozzle.json" - }, - { - "name": "Bambu Lab A2L 0.8 nozzle", - "sub_path": "machine/Bambu Lab A2L 0.8 nozzle.json" - }, - { - "name": "Bambu Lab H2S 0.2 nozzle", - "sub_path": "machine/Bambu Lab H2S 0.2 nozzle.json" - }, - { - "name": "Bambu Lab H2S 0.6 nozzle", - "sub_path": "machine/Bambu Lab H2S 0.6 nozzle.json" - }, - { - "name": "Bambu Lab H2S 0.8 nozzle", - "sub_path": "machine/Bambu Lab H2S 0.8 nozzle.json" - }, - { - "name": "Bambu Lab P1P 0.2 nozzle", - "sub_path": "machine/Bambu Lab P1P 0.2 nozzle.json" - }, - { - "name": "Bambu Lab P1P 0.6 nozzle", - "sub_path": "machine/Bambu Lab P1P 0.6 nozzle.json" - }, - { - "name": "Bambu Lab P1P 0.8 nozzle", - "sub_path": "machine/Bambu Lab P1P 0.8 nozzle.json" - }, - { - "name": "Bambu Lab P1S 0.2 nozzle", - "sub_path": "machine/Bambu Lab P1S 0.2 nozzle.json" - }, - { - "name": "Bambu Lab P1S 0.6 nozzle", - "sub_path": "machine/Bambu Lab P1S 0.6 nozzle.json" - }, - { - "name": "Bambu Lab P1S 0.8 nozzle", - "sub_path": "machine/Bambu Lab P1S 0.8 nozzle.json" - }, - { - "name": "Bambu Lab P2S 0.2 nozzle", - "sub_path": "machine/Bambu Lab P2S 0.2 nozzle.json" - }, - { - "name": "Bambu Lab P2S 0.6 nozzle", - "sub_path": "machine/Bambu Lab P2S 0.6 nozzle.json" - }, - { - "name": "Bambu Lab P2S 0.8 nozzle", - "sub_path": "machine/Bambu Lab P2S 0.8 nozzle.json" - }, - { - "name": "Bambu Lab X1 0.2 nozzle", - "sub_path": "machine/Bambu Lab X1 0.2 nozzle.json" - }, - { - "name": "Bambu Lab X1 0.6 nozzle", - "sub_path": "machine/Bambu Lab X1 0.6 nozzle.json" - }, - { - "name": "Bambu Lab X1 0.8 nozzle", - "sub_path": "machine/Bambu Lab X1 0.8 nozzle.json" - }, - { - "name": "Bambu Lab X1 Carbon 0.2 nozzle", - "sub_path": "machine/Bambu Lab X1 Carbon 0.2 nozzle.json" - }, - { - "name": "Bambu Lab X1 Carbon 0.6 nozzle", - "sub_path": "machine/Bambu Lab X1 Carbon 0.6 nozzle.json" - }, - { - "name": "Bambu Lab X1 Carbon 0.8 nozzle", - "sub_path": "machine/Bambu Lab X1 Carbon 0.8 nozzle.json" - }, - { - "name": "Bambu Lab X1E 0.2 nozzle", - "sub_path": "machine/Bambu Lab X1E 0.2 nozzle.json" - }, - { - "name": "Bambu Lab X1E 0.6 nozzle", - "sub_path": "machine/Bambu Lab X1E 0.6 nozzle.json" - }, - { - "name": "Bambu Lab X1E 0.8 nozzle", - "sub_path": "machine/Bambu Lab X1E 0.8 nozzle.json" - }, - { - "name": "Bambu Lab H2C 0.2 nozzle", - "sub_path": "machine/Bambu Lab H2C 0.2 nozzle.json" - }, - { - "name": "Bambu Lab H2C 0.6 nozzle", - "sub_path": "machine/Bambu Lab H2C 0.6 nozzle.json" - }, - { - "name": "Bambu Lab H2C 0.8 nozzle", - "sub_path": "machine/Bambu Lab H2C 0.8 nozzle.json" - }, - { - "name": "Bambu Lab H2D 0.2 nozzle", - "sub_path": "machine/Bambu Lab H2D 0.2 nozzle.json" - }, - { - "name": "Bambu Lab H2D 0.6 nozzle", - "sub_path": "machine/Bambu Lab H2D 0.6 nozzle.json" - }, - { - "name": "Bambu Lab H2D 0.8 nozzle", - "sub_path": "machine/Bambu Lab H2D 0.8 nozzle.json" - }, - { - "name": "Bambu Lab H2D Pro 0.2 nozzle", - "sub_path": "machine/Bambu Lab H2D Pro 0.2 nozzle.json" - }, - { - "name": "Bambu Lab H2D Pro 0.6 nozzle", - "sub_path": "machine/Bambu Lab H2D Pro 0.6 nozzle.json" - }, - { - "name": "Bambu Lab H2D Pro 0.8 nozzle", - "sub_path": "machine/Bambu Lab H2D Pro 0.8 nozzle.json" - }, - { - "name": "Bambu Lab X2D 0.2 nozzle", - "sub_path": "machine/Bambu Lab X2D 0.2 nozzle.json" - }, - { - "name": "Bambu Lab X2D 0.6 nozzle", - "sub_path": "machine/Bambu Lab X2D 0.6 nozzle.json" - }, - { - "name": "Bambu Lab X2D 0.8 nozzle", - "sub_path": "machine/Bambu Lab X2D 0.8 nozzle.json" - } ] } diff --git a/resources/profiles/BBL/Bambu Lab A1 mini_cover.png b/resources/profiles/BBL/Bambu Lab A1 mini_cover.png index 060e0a2d2ccd81e481379f9c0fe1556e9c67a277..f224e40b890729bb9556773856c66b4151818932 100644 GIT binary patch literal 13113 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 Wa1ZyB2IRO4l$?~ZWR18<(Ek8CWrx)O literal 15367 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 diff --git a/resources/profiles/BBL/Bambu Lab A1_cover.png b/resources/profiles/BBL/Bambu Lab A1_cover.png index e6a335806109e9facbc0a08282865a47b2afc615..93f7121ace1c0154c04ea6dd681dfa8e51bfc1e2 100644 GIT binary patch literal 17467 zcmZr%Wn2{h*IfZ&>6Gqn5SEbcE&=I~Zs~4mknUQfr3EFWB&D0BySqF7^ZPt+pBKxr zJ2N}qy!YI5&P1uH$fBbVqkuplba^=`b>RK?e=jg1@K<;QkqdZ3uo71m2Z3tiQJ+lS zfHCAd^rm9I@W8NE9u+ci1^{pL)K|pvdJ$ZhU8KvJ#Ju)QkCKz<)xqR9f%v zb9#LI2zzYZ&Dnh#^&Z0v!p5Ob+$pdHeNYb*5}2ciSC#7-XbXaSC%1+`iM2D-W%aff z1UiHF_6l(ODf;xL#t{Sua++bM#pz#v4QWxM*9K80g4U>Uc2VCXsDu8oYyQIn{UZeZ z)c9qN0!jga?7jUYs6plEprb2!k+-0^vg9QK&|Cp&85k7%29(JtOA9CV2lV+B?^JLhD_ zTA8s^Sd-ivQ0GwUNV?)AH(pcfII-u&+1duxMwfl9gb4u?mL>8QbxwLV4X)fSywWHd z2t<58@%M#aG+}pVYkkLZ*Z%aXx8TL@%#m7z>U{O3^&1=l2uo$`bisIgdlufQ|IJVL z4!bga(1I4odiCCrdlC7&9?H1SeT+B%lNdQPU+td|87T@X>M@;ZejDdzjL0kZy5m|* zzzuNpWzpvh^6YH##iLq1Zg&Vl;{BJ~U7DBvu)yayril$mtpV%1=yRQ@ zCN*m1e(z@WL@BC))D4{dK(2F&v}fdGPjpaaxN4_L15*8veP_VQ8@Lz@okx-XRH{OG%DI0nIo zP6UXb387ttt>MTB;{U+7CR75E*rsuF)T3a6%s2#U6FEpyP!Z*RB;H5r-hVDdaAgv< ziH34C7i=zgA7Tx}9ugM+QF28;MYqbnPYJI32tN(yF4p{mf;hVGyX%A-1k*4mt-x-A z_&2$5P(wlKgyNpN8^}L8&Mau+J%;7Cc@u+g5z?QdbcpHu@y)h%c(meq%*b^3Jl>IX zLQPJ=v~V#&xJO{4P^>QduL%jVI!Zc{Kj@BVe&e)&wUI+Y-*+)kC;w3WP3MDi-{WN} zP@AA5Q%Qe9MNS2!Gh)ENHBOeJ#TZE1QbD1jOW=}6mA8{ylw&K>C=!{(vdK}RKTL2K zSlI&C1yxd}CpIQvCa5Mo4s>rd;tBLdZYUua(5e@u;3)7|h;Abk=W$77elPzxQU;v{ zmq!ZZ>B&2M_fX@|h$zE_xM$IgWaCQ?6|oi0jAz+c+1y%l?7OufFNcszr;n#k+U+6j z@9u|Od7`0*qlfg%nKBaD5&0685;hWXWGa=sol4LAr^yN9BFVJMz|3&`q{Do}?DsBl z5GPe2RVy_hb+=selj|qZ8Sipb&5BQ$6-HYAB{H9Wscn`aPvck2l#zYhSyly9@h$i) zv@e(*yBy;mA1<7_JLQVyvgTe3I0)RjBe(Fjd~6A8S#%#e5ScPN^xj9l9=yibU!IV? zcDO3MCO9~qJ)NN7Pw=IdByB zVJ628YSKR6y7&|uRxF*); zb~%hZjC742+sIXa<g^q zm<`AbKzf2c3O)=y$KQ3Vdtcz6tGxaE=I@*BH*LYh!N1_`;3*I?5sHy`-p0QDgUEp< z@=gK`8C{pcCE2l);DY4djC;w7HEZJCAUOA(9?1jeFufA_EOuP@7ulwg?xR&(+g}b1W`dpl z(IKd(kS>pIf**fa22OgN=ynLDgc=8->UQZDWis50(Cjc(>Gp!yf{(S0O$tIuJGok^ zH~hMY)gL`lswm&#gFvn!Qj^Um{ZA5wBsathVaZPI?Tz&INj z8&xe?Sd!7VymuT1Ns=Q5Z?|afT`w2k*@r1j6#iDPR>Qzo;`qVhrBA5u)g;#@r#H>L zYWZ?-PlNgu->)s`ElU{~`ci$R*KGFAB-Q-WscrgwdUUgYx@-uUDO8V+eaS5-8&&(kl=b}W1PUSfohy%StH zO*v|E|?8t+@|i*zG>dT8tBXunj`(NTx& zpw1ghE+^o$ogL)3kbRuxS?{FBjL{{&{g+|2#LstAZ7+Ycd#QV5H8ZgB8hj|{%`z#_ z;ad_`%N?Vex7)3==WSk;q&{gugROG=B3bF6;a{o z%q8zzrKe0g!;gk-R+3{-Q3AIUrAFi1fyhnT$_jFKU+)4`%(Pe5afm2S)M!|p?S zyoD|)nP49@f@0?^zuWwmu95S|jQzrIXPbb|$wI}w?V$U6l)T5K)%-)m8vkRvxfb^! zrq@_XFu&ItWm==rP&hitsF+I&E<*m8tjGg)5uWHHd}*Y9yC)0G z`1PI0`9M6kkdWKL>kF4u`nY14=TqOGri*eGugmOJH<=DAAD^t%$K~6Lc2O@1K~EzW znGQRm?}~fHosO?JzD+w>+GjBxcL&n^+qYd|g4XEtn2ork(HYvl6+4 z<@_=0FGwU3n}W386?g0!zuX(&{k;urvR?gzw}+^OkL^po(Cr}Fn)`b9(82NGiAr_X zf7mfx4{J|dPh6kkePj4#FN-t=VfEH~q{4WNul=3}&20Yx8~FTu7?63`abclQJegF# ziI#8Y!ixWLr7F_*xbnI}N5{>0xjFQDCLM4|c1mq9nU+HYOd6Om-D>`q6{fbK`?fmY z+o1M#qm`#LyZh{phsEMAgEq41<1s;FPuo`a|71m5r$?;2?TjB|j#k>T&(F{QI{`p; zR)qC>xwVD;O=n%GX)R0)Yp;)Y{dZ>(B6ZUv{8f864``dKug{1^_pUHjcW#yF^>wP* zO2ck=OrfS}xS%)_+CIjrdEeC zd4SbjBY;_<7$+nIUg&0SQ*k+E>MMKx80D9aV+^Cau3Zjy?g08~|I7NP#f|{?vTSF) zak?v_p3TRbTG!pt;xBz;J+oE%8F@8o6*K8AOk>1`5_wd2?eT|m-@c)7xNAW1p|4*R zo1YsN(_4uC@94L9RW;^o>g~a%9&H2X4}UyXJEljxW_5_Pecx`Jt#_lvSCW2w9v{cj z>Mof03G{yq*syt2-{Rul3;lKhqyO|+CcZgY{sUa3^#Oy<=r{1Y z@Yr1X>>3rHu;C!ehALDDnf5+mI4$V|Q3F5&xn|rz%w#Tfp)pCAJ4CtL+2AW> zC#M@kx&KnwZ%lOsvl|4v952GpWQQBOOi-sRmQsj1eM}rulT;8V3BG?ZtTR=RLEvaj9b5os6hBQboV@SEC8AxY{Zobf$nbJi!gPI@u3mNB8Hw_ zXdCqYD>o@mWo|g84DIAZ|4Lb8)Clgz>V{w^V8J-iib~8D*{@r|ObCG(y2J9R{X+G1 z_{8v!*SrNsVc_>X+xpR&nmg~=YW?ns!p$YG%|NaX?+5ynNt_Mh!?&>z2jPLm)L{6v zQ$_B8A4B}R93xNEX|wV#85E11AFpCTVxTXVgtjikaK04Fvc>A%oDg>|S`k-C*tt-A z2ofe$(RUqI=kwlOY0Trn?BTvWLJ8O*dS5(Qx2J9SEwW_SR(Qx^i}|k)GW~JyHK4u9 zK2+j%R&;oZ(+z3}IB*tPQo9Hyk=2KxCY>e9*mzshpp4O0Bx7i#GoQYGk+|cr;_8}!U z1vWlzQ`1!hjHe-D2_qH*+jZt#MD~k)mqLE4jyFE%rFtVPoG+@0Z0vYuy7-w&;py#H zboMK)se-3Z*q+PonBCpoMZSY$M4 zg+_c|;vaa<-zWZ7fE-`#eYeS)w&fYz=4!CWKa_dw#rZBjaAZ#eyRNN7{I$&`*&VW% z)j+)*`yN;=>L^01{g<~1|8IU}>9Hhy?*;YyZvC!}2q}xxu3DhGvNsL+ zH~tjL3PsZyd3l>%sACq^)<9Av*3g)mYv`Sx#(O=(G~Q{wWZ%F9{=4hx7ai?QHyG|i zCjrjyZy>ulUG1N~f+Qz%6NX1&4OS+qC#h6KOx*gTbyFsfl&@|*6sgk#V?cR!E<`Z} zkuO&ATV()Cph=D(8NkHB^1Ru_COl5|e3NDo;C!Q*NLnoQ0{K`?1%G@hXwouF}Ngviw!4|`D(L)f`L z=AuV}I!!LGvoPkO%Qz&~O(1Ny0(l{krtq7p(!}CoNWLP(uvCW?$P$Cl2#?z1%HvAo z4*VgPrk97n?IqW-op6%&zNI5p$?l51W480ec)!T&!&!|o&41>Tcj7@a)>v@O_V}x} zHafgnDdw(32C#11Il^#pW(!k6-n8ummEwe~&N@;d7+vZC9c|CGkef0WMChA?K7eh2 zWx`!mlmZrm%}6yi)}*VKNnzdn{K~ZaJ`_>h*qFj@wptlX21Eu&V+ui!qqR7}leM$; zenxy0`-P@p19qbigZBE;%&7{AW7~Q!0nwD;f7_Rp@0FC6r8tPA3Dq|ZPyGb74bE{! zKllo274|tk&k6!qXmvYLmfX_Phj_7iqXpiaTerID$s&fUvc^bw_^t=iYx-vFQV&ja zkTo+qd-p7{@D6PBv_bG50tv+$^sQ5$5D!J{ceb8BJPyS#kI*{djR6ur=psz0`cSyn z*e=3hkyOYHVbOyzRUu`!Tt1$m*!=V7$WIlsrX^@6t%pVdPn*6?dj*&LKVLy1lHK3P z%czQ__|WVZjZ*05QtVXbHwHfujCdA$r28nKVPXQanm%{TLPjRNm;Cm967r|5s>l!u zb=y+BtFz}IEJi$(;nC4aYn_iABsd6E%?5F%RI1*yo9hu27O(Bkt>>{dyF1yA`D%=l zQ{15r^F>o-((B4t2xu7SK##ta4E@uex{}32N55zu^M}5^+{ESt{_T}xLRQP|+&4b9 zI3NEQ8t0o|#1d`zWr8h9U4|A9%NGqwUxX(|b>@#b1xb$hd+8Sn2E+4sLzI*6??3qX z#>m;M31BohaP#y3TUrv@pN_J_fFkRpjkMjq0N@KN@*f1p3#uxRyFtg{jqJJV&k-+F z7cs=%p2x1jIr|C^%GTE`U>FUZHy3^%zC z`Qu5kRY>u?x|g-KeEK5X@MSsLVcy(Tw}@UlC+^QXGD&O70~0BUFOj#|k`9MA+$O)V z*7(`&VAUH@G|5j>+AoQwBE6#otzTU|b4KzdWv9K>X~3FmJq^43F6Jqy96}T{DE6#~ z07_HN*P%@xT9-W;HZA+t;IMcXqw0?Wt4bV7Z@Np0akfV?)KKKmu9%UwSPh!UKWo9=5*XIa-98ry;l@!xuxvx z4rzjpDK&q^qUtqGbO&}O>kg0u-bqTrJCJ8^BM;S;!AO8;d97FDdNk+E>$uXBy?S8@ z`trE$*>pMjhlrF^N@1@4Fkt1iT~w#G=!8*%h2v{n{-JeCT(#X^czB5&VM`o&#U?l} zxQft@>a&+u2E~#Ow`lue0HP0CL!~^osDEhSpO;gyk_mS@mvY!4kXcuJmTN8_U>&^3 zJRITZ=#tCAzuUyQFkTNkv72eQd*fXsiwPo?iASYshlChy{(>^Al|-5QK{K=v~3$ zYk3N)^H2I|4#{IyA8x-od_zn7p=Gxx6TP2l1JrK)oM;#KLaHL(p>4htA)H%#6NLt@ zBQsAOue*gYSwbvfQYhk-V$|ZDS4x>|*^L+RuvZqWN$Y9k?x2_UfChWvnAN+HRRFSv z94!Wdx=Qf->M9vEPc>@z_6`p>v+Sz%ey?7*{WJxWg-hid$7?dXPr8!!OT*B&W5ES0 zG@2!mCd{v=PfJ4IrS3}Wg5pgw?tKm^p4XGUB1?l?Yop} z^`_I9uqdMDz(S#H{P_-_@zBl)N!~dR|EExst^TOuq6q|D7!N5-#+ECSHC#Ms(+3PJ za0zn1Gi(gBHNj|PoT+6$RVs| zv(jPF$$+kR+C4!%`J$;O_l#G(RZ_iHigdN$?Yiu*pJ0k3Sm^5v591c+U^{y2;p85z)S%nV1z` zy??a)hd^0Bfc(%xc`xGjXr09Pl^8w*Kn0_pw2dWI9YwR~6V$uMm01^~sU1H&JU%)b zVD>kpUL}<O-VC;q8D}l(y)5BA9vbhm6TDYPnc|KughNtMw`(>eXdK%*Y4DWZY z2-9Fro%?OWeK=e7v6^S92NGMN`H2~3TG6gMAeUW|golMN;u@kBbpvl4mCjlrj>Y_T z=EB91L`R1!}~c%IyElOzJ3zvF}Eo)bO>MWu_pd?p_z6**;D1q$wFdnzbg~ z57OJ+Q-6V3=gpR$LVFVXY3mgv_~r49egm{SjKH`n7(Sxb0mxkeUpr<0AvRcS^7DpC zB=VQzAO^SSS^}F7g*02vr&q_EqR*r!`O0Tdu%PS+OG1e|^$IFZ=rY?7oAYOrb+Qca zGS&N_UO+-ltA;q3b8ABO7RW=FuJ7o-$wO=?6EZBbIx)|mLH+0B5P6aG{sxEC_c%O- zYK$8#7+T#DuzERIE?xE~J+w$TnHCv#8~Z@by#SMwDbZpH z+DEJRiKSTb5af8FNdIMdE%0*L=crz$rtaw zvE;cbY~b`)`sx;Qtp!7Us%i6PQRkNrx>c?##&y<(3;>G^!E4@QfmGK%xk~ii?f&uH zyu5?k>BcIxnrnCGn~7e=5m+wGq*>J(6WBHO1SQ6ck*dDyO zKezA6eUCl@=pvo6I6MIk=IphVC~QAp7Yk5JLfX$Ii;j=j_kM9~`VA(!3LkFIy5j+; z&cB;O<^_!@IRxk=8ChA~jsVGm>M8eJhP)+dkvuDFYcT8*Kqq2y%(;E_$Goblg+{Up z;=I{~z;8seARru6CM5W@jn1;^JCQ~hWP90pf7Znn082!N2_a#UOARIjzZiXasChMY zDOY08V@Or`<@nmpm@PRUna%4^AS4(xHdXo@?p z4S*E$b<*-KkqA_w6|2U$h3lSk`iSjKBVU4Noi#cO}NXKO@~z5fvJ8vMA*|SisTjQux?1v2Yqv!yZ3veoV?}YEoQN|!5TP9_YO$GVGB&KM*3$r=+C6;;IGVVEjsmqkBg%QN8*&cAq)kqK|QS>SVC@!pjc zF)YK;HB7y(b6Dg}NiYJIyIKXzi4=*+o%xdcXrVqEz>FB=LY-@CSdx;GLQiMiV5axz zxZUFe+n1z7WZjr>?+BBU{6xljdT8TM{LzHD+_^H*TBO0b*!4IeWy*b{cEWobZFSE|lYo|z%Fa0Fptcb-JDuue~qiS5% zlmTpym0B~wnXKMqRdUP2*^!hX4g2|)DAjs3p(}(D2k_@Q|&QEvze16B-iH+1! z3ep0fI3%y9xw*N$p#1;=)wwg0?R`H~^V!@hL7_f8|1eanu-bl{QjHwTa4M;1=J7Nz z2r1wK#NqW96#!yQz>*~~pJcMF7ua^mtha+X_aA$5@_Y!}Xt8leC{1L|rRT@)zqrgPqtJ#&%bBT@c26{>rmeem07cxy7OtIF)9$w8rp2Gi2 zIDLq&%+iFAOIUbBaP>YL*h8rU17(c*ISqRjIlk6=GH&SITV9M77n~egL3^4%E0G-t z5j$RPj5lKfUju>rKJ~+1Lsb1XHY<(VP=cUPb(b&s309Vt;VUapDQ4n7*$~72TcJ2o zB08{N`}uX??zLl68m8ZxzxgD?txX;p-^!hXRu%CEJjI={(0PyebJ zv@`#B2I$<_!HnJcbI|_2b10VI1}=q}msjM@)35z-JNL2P9w6~yZNYny6SjwxcvY3Sr+aEnHb5B$je$0PLiVnFrjZFu5#Gz+`nzBiEL zGzTNqV^iu>EIRs5Shdj$!-GwB64Xt3h)bpRv^ySBNrmnZPJLHTu|pB{wQuVJ#&`ev z^EPa{oPGZF@O*biTcK5D`S~-C3E|mIV@J$w$7`E`_x85fAGLCKvb0&Hw4wy`1O*<& zYfCO=9)rp!c+S`x^EozsUhZoSW9gV-hOtY=u~F(`^XC@#;S?(>oY&H+eOk7P>8S{Z zKR_-|w`Y$(YyuX>p#VU4oIVbZjyTVJ(iSh<11fB%#beQpZi<(E)J~Sg z50Qh&JqvHIq4LaSr8I948fy1{ z{10qjw_LQL($?#dE!O>*wZ%h`_Bd^c*Q-*gos)bm5AgBz0ZKtU#kVN;Lg6N7N$IU# z9|QW!fS|kJOxne{HX%!HVY&h4@LRtmP%>YjDyB_UsK3@bcYep1p&`kz&J^Kb2-}AG zdN`j;?_Mltzh>7?&@9~@>pmdK{1`qKpHhC=&wB~8rym*NTOF=7(*+2~ad%)+X>(PQ z$94-Vk9(=y2t&P~r8s_)GnWK0(io)ton(!x17`83g&iH3Q{!ctz|N6?R4~bUM*)BjS5JOnKssu_>*e6);_8ZBeV|tlZ9S9b5L#c-9F&5&U);l$X);q+ zM*H`B9BfTP;>_SbGWet9K(n%TZWi0)@u=z-gaRltGBYW`pFKRjYCk{O{j*XAga^?f zw$+Z*>%&HMM!X*|l29suX<1ua+t8xJvHkLq`5g_Pp&X&*gnRC>;Ap;9g_$l7MA@d) z_@*xX{IJ7=EbsZq>L+W3gY?(buNI1Xlwhx;TK`JJUs;>|{Qx1}9?rtvk%L6x7m3Q= znjljcyz31xzb1qNsnHivJ1!rTy5)wEsZut+F%DYLg@IM8BFKq|c05-v7pHCAR~{;0 zi6c95rBi+nQ+eAZ*%@{XA6K&6qx9zuXWj8G%8USgThh1Jvnf z`I1d>5t}WVJG+|VnWn)qlJ|+5IL7MCwH@WW#E<%_bka9vwWI@R3au$4mIIbtY`C9O zi=iXH7%8DGN6IAdZ&Mlk{+7iZY$0zw1-V~Z^$)hE?|z8Q*8Stb7Aq4H6@?5@26!kZ zzbF1*u2V&mx&RT!G*%#;SRckGEi=JC1zB{Qy-2=P;T+Fqp$=n5 zu5{xs+>Fpo#wq@Rf&KBMDl*Pa9Y=J#y@om@Oai;#SvQK{M+lfK{YB5|cW?26$k*!D zZ1-}kiSEh`Xk57^Le@M`SzJV1rwdHu&_>A8>^!KGb=z|Q$;&UGf_$W-GTvvCGQi3mHsv)kacQr=|UNEm8IcbXw zTl8pLfa;4%O1Jf2NNd}R|Hq4p#OpVqr9-@Y<_X)r%Fg#1>Dd`lhm)To??n=ILUgK}?q z9G@BuMK|G(<*aD@9YgN-a;& zS#MKQGd026PQpxGq<9p;l048bEbT*Wo@;f0#&J7ed}5vW7^-sM9CYApO+VNtthV@U zkY&lv+{KB(+#B!m)QO5^GDRF^;E9!v#d5ZltjhlBSKfPpi1FGs@Uf-rMMI>50aFik zZk&vgDYmb--dk3aA)A8Z$P$~YtCYEp*R|+BGGvl_=6x%5@!(`5!4ImxTdOO5ufL6x z7H6>!?SV`P+2j^n*i7MWudlg2d}!XluRA4_khG_X7#a9nu=)8-ZLcf!)$+HL^5@W{ ziBre$Ys@9)Er#%g zYQ&4xb%*Ii?cDJ4&5+eA>VNp`J0YwvGv< zdt}|q)87rt9oy@OqiJ@00s}M>$97i{l_ft79cEy^Z!$1ZL*=N48onf z7Nn@^)2^ubAoSPLs7ZryYhXM2Xt6O6d%^o*TsPE6t+_)vl2*^C;8>$-tpjJmAhBWD z0!ECeZOXm?z1C!wHa6z)y%B0Hkf{Sk!(RR_6koK$S_Wm4va5@{H8~NSY@Ma+ASxPg zqCbqGJoO)Vl8q<-gz8j{1#C>|6w>S~dglg(q+)E2(Wz;!$|C4)CN&0geQ|z0nubI2 z-s~IY&JVjeBh%ApvEjW6;{8|)?uJDrDA|q5Xi*W<^tE}4YO^v^OIXf7nW!8q;D0@D z|dT zlb+*53Y*%Jd&@wr+H(#9LU#hE+9{L~#hN;AELmY2fHeK1erBq;|HWWalEw#Z{UW)a zYd7w^x%%Jhh!*y;y?n9+831`-jSKX?At&`VOVe@t3z57^Fo z&J4aKGhjx=ehNZJN(w9hw_fnGVEA}da#!fENlY1bN5jIl|d_IhAdP63l6C?)AX zkS-z;eAr@DmsyGqaO06rBOm1&c_KI|HB-$ke%%JJE1?9_t9E->$q@dwHiAm5)&Yxr zXLna$Yt3*4h@Jh*ml74t%Sm4p$9yo(ntS{BgBwgzfVJ|sFsV?|3GB7zAuG@ zEx^mBH=r0pg!9&*Na?^+h|hL0EK1vK9l`1EWuQ75dRhHr@4BRp0_%SN4%?&HL;7w26`n!|qT)|M=B)Q{`S{7-Fc^B` ze4Q5?26pNcr-r4as8Jp2Q>80ZU&{XMsn;S@l1g~0p=b#Po0+1{LnQSMWqhmkB$}rt z%9qths!qclc5}Wh-1}h!m6fG_+^shAu}<`QPaTSy9Gg{tia^OD|5L)RVhjUy2l?Fk z9kge_6-UO3iwG1)K_QA8D|ig7CU}OGKVf>tOt|-3QHK`p|D?3P8Jvi&bIyM^1xat}W!Tu8*z~(UtziH^Sr=s=7_E#qZ@S}9|fQuO-yU?KshLfjKtEuJ*4GS zhNrq>&nF;}-~LE74vCWTh7@U5w*dH)JzY{kzHJ3qPo|5!;#i+`J#ZG3ML6i7yUv%M z?Xra*8IlJmi+dtx`!Tuz!%Kk2Nh_^Fy8|`a4DFyZnM`;D^v2P8nxyq!dqu|EGEEbZ z8@>N4+Ps^fz{UM_4qcp-*(0B`m;fDCW^pVTJ5xIZajfgDgURW`dh_E%N-&OzAL~ssAbjla?~5x$RofAU zt9W}rH~Sf!?X#7$XQ!q#G!GN(h+C@jZG0}uZJ62Y&1X1af%|!kW5Yk6TV3C~!NXjs z&}?+@w=;=aDZh8rVD{Gn6yIKpc$HSKQn8b8x=h>O=iAlpUIHV9cAd3qisjw~_d`IN zHvMb+xweTS>rGm+xJ<=abqb{Noh(oRAb+LYHxyQ_nuUlOTbTOgl$9|7rU`dL(*E9B zGW*36y$ZmNaW4@^(6QH>Vl^~v`w5Mvm>iDi(Qb3WQH)TXIW=pQj0`?Ws13NXufIRJ zPLDYf8!(zp@C>{>KPJ;oHMr_E0Fpi2-`kE`Nv#@PWk*#^6T*#V_B6Ap^ka+N;&i9u z?0~4{Kc~Ax#_i;WFlXTiH~QGq$0DWV=lD}elvwSTE|$!!EPAxJ014P9A=T#m=x$%- zPe3nGd}EVpLO9W~%0lzeV;>7CnQ^`upd929P0PkeUN*ikm>J zO%@)?TeoGgDV|V}vMrbi`~-rzBKz@#!tC6Yy2W5c#FOv|CV0}{zGCV9w*OhO|4$Bg z(kM-vQ&?ECa01YZEi|i*u04-_*p_11Cf8)eXNpDakFmd*w^an zQ&>I1@c^wcI2s3!{&Aej<9xp*ZW`j=%@fOsb|#z`6(!H!bSC6s4cY zbEN7wQ_64vh2Ytz?eEbM9>Ap*%Jwzg_TNszV2a&!PQnC+FdGPQM#<>i9YWwst!hQ$ zz&W6V0S+e8{*S`-n@(=_DfT7*P>rtqZiJq||LMi~VuYEB5|MJ#m{{~X$yf(1fXAdH zSI&A>`*;@OaPIiR-C4)rmants-|O1wB<0-U?T6I6|KRaApms@8T0`vJmMPKR1|Q-gP?`Mr;*y;69{C-UsiU|> zyF_51D9rG-!hXIraX+(8PlWwJXkryiW7>$L_e=)ZqHu-o)|Y_h{uAlzLBea81m& zd}R#ybi!>YLut|A-IQr^2LM~g1UeaZ^Ofo9?}hl+Ui!%Lo)l679ICfjCC-b-jn0Qv zjphDj^-pZ*hEsS^%G}i7fMOhA!4n58$KA;mZ=6VDNIKkUpr;yDpPHX<7R$8CQ>?7^ zPfs_i1y4;aOO)D-x`7YvzNedO`I1FkHb)8}A-BSVFYriC%ZN4JBiV$c#9L?U42<|O zfVXv>pS{==n>&>ntS3uFovh?-XkaKQ7e!CkaQr*5MN5O{LxcUipUmm`epfW58;fb9 zZiVoHH+g?ttn28!)%jK;4d7vv?G`Fhg70^>(Lo2K182ihdG!f(%iAJ>K~8Le-k8&# znnBqk8Z&fDbIYD~vo5vfDT8<)f9QR)yi2o@(o~N#sf2{lV@!?7&@9{4_3h>YZ=ozS zRBeQ0P-BXegiOPuHUF2@7`cJ={HzI~%UWlE&?+3l*y24Ld+VJ9z$rV{`agbv5aZYD z#R85l4c2Q~cOKJXlS-R&gLIkYf|VbDiz;sOY^G+VvmW;1QsA1Infc~(cX(`!lV_fA z+PnO2&YoL;Kfv$g2e@$D$qf2?>l|2z3iPTzR?Yro&6X)tXX*MM_^DC=#@DG zt~Y5=s%bbGSg zpX<5Oy}05*1}w>s)3_|#FOrxdolqnS2|hH4vZ72jCmOJCNd*P^=H@>` zvV{3&SO!yaW+s%OxO_DQHy9GNwk)#f?mF(Y8~3x54S=1oTw^ zMgD5VGR*=_R)C*Ndc15qT}J85;;~EnN?wZgpYt3OFKuIpWrq1W>z#7B6rTK4@>kB< zQL%c>V;1gUUT%g4Ny?MqL4!yZ66eN?N)3;GIJYdb5Jzt}Z?a0^r z_J_qV(>I2&vQKtmzi?izuF$sUb-$Vyou3J*dcX7IIq3Pq*x*X=HwTk`w?bPk--UZ=34VrqW#pkflv=L%6CU@@-nBdKK!K zHJpNiV}C;)o1QL)nh&B`011FzT{Dr>KA*Btt}sN6RgRpsYSF1__j8G`R{Kv_xQirAKp>f zLhJ#Ozx@;tb^C(hkQ zAM%j))8(qjl9NS=t=)@+n{fGTfzgK~rixr<=q_kyEDfhJ%Vx$Q?-HWjNj5ieA;j-Q z?*3xt*)ZquvNGk*yv2)xQVm?h7%ENJ;Y7zhH^GI%3h*7=t0o@iJ*3_04yFbY%wwQR zMYs%LDPIXleBWXfrZMUFsALSO91CD{xI~RL=>G;kFZsjb=Pu7A0lGMO)ckHr^bs!t zL-?jKdE*$oP5Y5W2z6&H=PMTiO^wqUXZ`s)UTNcZFsiMK5Ed z7r*GcCPkd|1ggteD$=sW8hX_FaJ&%s5}5Yp<{ttc*1CCCK=?&}`~i{2DqlV+FX~2JrD<*`uVqy- zgdMdl?~=11`Y!#`xV!S(;2`}k_w0Eu)5hc0)6G|til6R-8a$)~*%W_bW4ft-mws`_ z8X)G901y89mFQ5(ZvRt^ix{r`)OE#M@UAiNPw?tptnsF@qYw9DgM)YU>d&X2Mf9?A zKj_WG6|>sD_x7nhil!2%N^f}y3f(W7EHa6XREx~J*00IY{vF=F^gI2tx;?%ga&>j( z1gLJwL)!rddh@ly9AVVIQ-~Cb$xoUeRZx0`I((M(kv|6P=xo>!BZgyVk|~Ff2OoqL z(*Z`eu}de??G6HoO!0c#*yiSW#)158KB?Llz;GmHEV}QO20Y_%%L%AUfI8>N(7`@L zsHk8)c0CTswXX)^d*Y$u@{ie>>;<Qo8zQLi&BBaMRk(i9)m1otYZb1AY-r1Z}!PBt?l3Z-KbiG!wRuvZ?pKP&SzE+i)>^vLj^72wiRds3=rpla4 zjh523^aBRqI@HmQAh(6BlI-?gi*&>G4W(G1>3dKp&g*lo{@m?da8E9;5JZYTSssFu zRRTd$M*-|wWtzleu3$;c*@$n)8t7%n*UX!+5+j_ETW`RQ4-aY3OuPt%#(Hl<@HvzTn@>|p3Z|zd^VNV_{c{F=m>=|-WcHWICgNO=}1-GodLUZt-+Etuua49Nl8XyGT4025j;?dH`wl z%SMe6pHsu8kAa?$LUb_K^Q5G)G2SuYl7!*Mi55y4Dv7GwJJTIWPt?7yD zRCUb;TbG|&c2Y8T?(Up{vioq>;d{c^CX#r8uNHHo7hFlb>c5TK`kN>{oPSY`^>#~8sb%-$fImZ-lK(Zq9t`K-w3O3@U!FMCJSBsqd8i*HjASWEm1;*#cBq; z0W1Ty_2CXI{$Ydo=l8lVSz48PZHd7BhpoGq5CCsRnI>)Ss9F{CSU=#o`W8!$NSSvE z1eCzHuXpjr{Lg$o&T6_Y5*$6Zz#~hJUfqX)pGUaafPI1uFs0NM%9hRUj9=r0z{B%b zSI~=p6ceMx{)4~jw1xC-m7vb1rk`H^LLrhrs%*k9Pik`sViDP{Sg4mv1NMvVHF8_F zPEP6Dx`78CALs%ME^&skFpWXnbssUYN@Q>5Ef+fWwkvhO7t?ujEXaS_dI`7|fu}sE zL5mG5`KVZaOP?D%CNxJN- zXT}iPNgD+5f;iMCN~(aIUTh?>tiuLI^?t=Z?{=SmU6h?MZvUHlP>0InU&|k-teY*o z@O37z!F=lH^ZCbtrEv1+XTEDxTb6WIbRc4bovUhkCa zOAgMDu-Mis+&$Yye^U3g43jB47kH`ckg=(dxE*%W*x#mbf@$`(O~ubub8c_zeS7+GIA?|gUgV0ZYyfdk>ad-tE+x9@{*hlVb1z&wODgdRHiMOX>A%+a7I zNjf?@o{vVO`^aizvC$d|HKtOj#@^mu%E#)Oo12Fz_C4-Eb!}}$YikRLEEHvn5^#yq z)%9MxX`0PVO-*QNX+hqvSP_IllNkum9L8&Jc6@awfmT;n%TOo;!iJ)3Q35Ve+S}V- zwk&HkZXuCK6wEMyKrnbE7zlnt;R)OxxpCu*lDr2+*`fqoq7($2N;QBWAtMjnLKg&_ z$20?IY;63Dl9RYIO1x!`5^#xHDwy@e*5?gN{qIYE8kPv_o3 zkKIhZ-QVB;Z14FWmeSBuibAKMC|i_(OOURvPM%6w+fr6)CFb^lix05^foy&K>_e<2 zixw}-q|@(4B9TqeNMuQDw9r>JH*MZ*wY6;@29SfI>`($OK{`9Tcp{b91`GcZaN-{U zBQM}cFc>^h6mT+qGj!_I=_6FWBpQnr#6Hj;Sr&~(Hnq04o&+!oMcJVQT$*@IjZIs~ zH_USdj?yjkmqh_H#)5R~{0f!v(O3+lG14nRB1hYf9UoEhFDS~61t;KmJTB-ZhsutQ zPJ@P80_08d=3RUhc|pFiy}hGQe@?=ScG%a~myfxhpE!|U*8_bqg07mc zTd-|jBKNKrgu#^B&Ezn}jbh6TdFz~GaaOlsHoc%oSd&F450LdZ(TVN3{t>AXvx;Wl|j`7GsG zE+-uy^D(_j7e3ve;RGw_Lq{g#q;=1Bncyr(L0!{)(seW76%~N%!jrbf8I^bpo(G3> zXykE=%~H@lIgy3yI1qwUg(QSM1xHYrbC)w)*vMxg9DtK&9M)sc=6Szp9vklaA9EkFF&7OWqDLFlZ9>BkhC3srXy`-G4N|2 zBES8P+PcTFt9{ql)~#DUW{gb{8Y5^EJkE9II<806#u!5dh5rDcV+M+mG1z1}HN~U6 zqiNhHWpXOxGS8#EE8VmdnkF1Z?XkIVw2UM8q;PD(g=YCGs**z5+|e~pIGmPY5FFsN zIAccIFf``6j?{I*@`r@TQd}0Fzjt?k==SvVAQp=unM@*=%fg{;ky6rbzi;}uX9fo^ zYxDt%+uM5{7cWL=lpv1r@$vlUp!pN=J-1;&2$(*ttLy1GcbXdh#Pa3K;rCZekB7Pz zG)<6~MUmDVO|KA1T*ZB#J>NZy^K8tXL)O7rLs$@8NV*|(lb|b2kCYPRS}i(R$U*32MNW#` zDzd5wHBl5r{iCW>tAAMh5mgn95JIj+(yK+UfKK_tjp&6YE62Hlvrx1pbW5Bg;Ae9@ z@166R&wjr&MnEE8T)(RdGp?zeQ##I^ZhyVFxb$pc)kr8dv4@>x_EwQseXQG z!-hKkMwyWfOPTYSnSgP8AsyL(o&jYJZHUg>RzY#PVQAz$GMW0)@|zbfjNq};82z+_ z*F7^bQXg7g9vK=LSwb4RFmhqU)JN(|i*GMtvKd-lTwJvChwWz$dfX4Fn~@6`2L^2r z*?vd+Eu(MQM;EMEHGEYZFVu~B<8-Yy0-PBZAL@BqmzTfNL__~q``It9&Ruii{n@LR zmfv0)dEe;PSIlBP!XU`7vw2Ijh=w^G;rH;I*9?!G$J{oIXRp6;=FD4_Lg9vI4;}iu zr&nSgf%cR@ zb!86n76SyM5lzjO0|d*pxJQnaSZnSa>T#I$^H}pJUtpQVDC-ZrN9)tyaAg2uT<4eT zxzyMMz1Gak&X{VYYUavw=9$@9KKtbENxP82zAK-xV@g{MU%)y+W&Fub7fJw2-eNg6 z% z<2(X16rzvVj(TsJvhQu*+=vPFSrq+`8DLry1Pl&5UY?t~OZ(bS948z!dJvvx$LOF^ z3objxACNvMLAgN=3=obE&~hb&6z78L69v5{s6)zAy`N<+FV<#q+TFW%o5EP3!3hDD zi{fN=;%z2MDE@?(LER*La1C!#!8w7N#TN;+Zsj%2*Sx$dTd4W>dih$dr9819gpu@k z4nm?hxIalC$s9M8`HDUdz&?Y`%kcv9juCjz$+9ZXQwoB=-N0SPV*sB`@567AupudZ zcdRgW$_y~A2?Dkpcn%yGG$*sJr0#Qk&tyf-IKG7a-d6ZiE4d8B8J4u(r=ohCB^I$- zIT$AbBjq^M;xNf%LC6TVl4!2r!X9;8YDyF3#w!EU<6NK;xk<07PK6Vyn^ZN;lXw@} z`hZ9!3c;Z?LNHEsLp`itq{5E<3YF#Cm~3CZ>_up}dB}kq`sqptulq2JaDOhJUqL-~ zuy?Pk`!Dz@6dS|3O>-hi^-LfthJ!+-10--_nTY&{(TbgDEL|BA+srpUc_6i zWR{A&_pv!*J*VxU$35ChE{eM4rLM4T^`s_MC03sNirS^R1X$bIw~gpErSZ~{LgD(# zAXkU22?ACfI5G{x(8Y|ia5SKi$$_KzqAM9lQljyRIqEXGBn{olW+_gmDfQ%5ZZ3I` zRP6Z-PzDCBOe{t!7=JR>n3v1vGFjpBN>u#cldrcIM|}qUyOW}@aecBD@pi!;^?1_$ z&+n^R%uBf%DRq*(XJX<={<`a4xa>Lb)D$={2pDbKlS}kt3Mvj|vrZfhROi4Dg91Nq zJQ2&y#Kd}?=6&5;Z%&*DsGNZM6b9Bg7^UiXw~=0h$Sr0t9E@ccwvHY>O3vb|1<=m` zW#0;I^=9ClQNoQ;hM&oJ^(u!7tohyYsg}9-0v1s=0MmM`4d}J25$uj}&M%h}QrNez zJN0d?R;8{QwR7i?sC(u+i1!_hZm?fGg?>5t9svsn?$pfbN_sMibTK?R77_I4-0|Z?;}hdG-1{NZBe6c*hqeIWlk-{&HQ%LJ z9J82ZhYlSwGjKl%x8?ibdcHe}y8lSwXB zYbptM7H+6{Axs>T2yx!yB*`+~|9L#iNj&Q!xOEao+0)1`;Q0aZY4}^M40;*^b(09% z%f>-n#`uWonnX8O4AjAm#dourM9Y!F3DdXc``{D1{uU;V&ThAK<=niD`^s-g4ZdNN z6UlgKd>VaIevg3n@3&6!yX-*C14zI^n8XAjUW@gd!wlX4v5-)a?2L`jwlc!neklf_ zJg^6|0jD4c&0Qy{v5c7 zjbpyb>Y}}pa1j!y@9M}G@+4qPP^#nWAkzJ_cnoe$?u&QVbGkvE64p6vXZs-blm46W z@zQrorSZpMi23$-sq_T$Payvo2IbLG3FiQ~<_X}(a1Kzi@Fcj-bg^j91DA^S_-Vi~ zJYN&gkH-*%GF<@RS)WGR9|t^}&*f%w4g4(1=a7F2`R^nDJ)F0A4saazeILiIP{=>W zdI0F_=YcCQ@>%Y8DwoUK3F)MrP|?;OMt&IMMT2z|Hz95b+Uf3>=7b@{Ebcw!>^z1D zeFV?@0%O?*l-2|RLkGSS19n0ix>HJ5AWx&g$$6xcNC5Ao?~w2z!jb?m5Wd%I!}MP> zEvY_K`sAl?w$Vc%raN$WFY=K@H#y^0``}T%meE-7F%pAt$c4SZsKEs!W}hRyQmup> zhxG{usl(@d7}@`qRZhPIya`y4)l6>yeh#QffWk|Fmu+6)r-1(koCKT@_^&STLxCRv zjtB4`fLY0ZPheIi(`NzCgrMgH{vGfgfqw=ZwJ^E+o@3zHciV_Al~~X|-64;OpE$2r zqtHSR0nT$0<$dT&jwu`;MSlLWC*b{4)5s=efw+Z_^*Sg_CZIy4};=L&fbx6L({5O2EajTen~W{|ef7^pXO3oH0>ddTL(DFu_P7ARjsH)CttS&oXc(7h{^5i$X;B1%fKZf!bE_)*uI51a#h&b6ZLaJMeBmf=zMTu@{NWf>4GYx&ESY*?S-|jnR zKxuQFy&b=^EAfB|(FUaXPr zRkIFL9BN#CFZM`-4O zV<{6H0`8?3;L%4PrK+OD>sz$7zd*oG;GW85Pr#iyu(^ofw~zyq^DtWJ+}VVkg2rxe z;Cz0DR?PvW&GF{jL72Ntds5xEXK;T&zaa=@StGN&X(X>pmQA18f9@lVi)As-^C{i!DEV_*>@bXO5Ylz4pI6E{H{2 z30YlBcF!{5z{>#iMS0b?*I63`ELLb;7$5bByzNfRT!lkjP;_V#^O>_}lz_z_T$rO9 zVnB%mY+4D}%}8nIFg|zGZJn$Ta22p%+lT~=_ac|jl{30_Rbro6?yt@Q)L{!)cOo>t zRxyNk-CwCxugCju^p+lm5nrv5UCn%JMBZ^22w!~h#U}SH(u1K~SeLkx8BBwKn{FhG z;meeO_gfKKIB?Y67u+jpfH?-Sx@*LU^_CFu7_Tej^K*mT3_TtN0Vf?fuuLqmx4Vaj zLmf?1r~@-nt4bGBAzx6j8sIF^QNtxAzGAEQ=T!u(mrCo810&f8vnpc8Cn5e?Zmi*- zt)ZVahigG7D8o@vj=s|%8g)NP0EcnRML4((Qpq7Y&;I^pO~Cu7oCqDq)YiJQ+8)HM z?w8246Y!XFU_|r`k^^Vs(XJwN1PH9lA?I~7e88a-Az&SBAVdzVDvtpYPN{XNE)2qE zz=E`Gy|_LJ*rr$VJ8zsr2kFMw0o_-(U zH1Eeb8)dJxh`N0x!JQ@oDcV7jgx^OH;6&Ti> zm>b2q@<-pR>6;YJ!r5O%Xzmd$B4U$(Mf8*35*?V*4MgbTx)Y(j^s+ITU3m8!Fj2F8 zWJx9R1j#eL^`})eUN!Yz(`5~J0b|L=#M{G%zW9Y4JRRw3`-Im7 z0h0qmgq8v9&zdXZygco3U=?@f%T@;#4m>ud9QgPkjaV_iXnWV|nfosec#~7`}W7NSiEMic?*8xak*Ny8ST7!VsEeAFqx%I|Ph`xIO z+3Vv-39n^k5^^15pLG=$h2wK+N@jp;g9EpQzpBqS1F7ybj^`fw^M_(gj<+MmeAU+m zuL%NfSfPajTRo$f2py!z5xBUK7z^FBLZ3Mk8nN=P4APARq5%PS*MYs@4hCa<^P68Y z)6>&*e;s}NaSkL|l|>@fq(&HW;Yx*m?E<(=&D*DmM!UD&J+XC*0E`peAwn0|Edg)e zp35Sn^e>Rzw$ex}iL!F5yj-Fr1U;A%5>sHGfDir}pmQ_R(+{GaF?<~0>DB&5)!HFo zXT;LkvKyf?AD)bSE40&rLBMZn;JJuBh4NqnIRX(n;KTA>T+@5_TZhf*g#~VG_sAoU zn0Z+Oi5)5}ha~}O(#W7HMdq67XDkz=3tdVVmfkUSPl(f?{uFuOdT||#(7El~BM|Uk zA$uhlLF#ujOQa-Ve3gtVVA3R!oe(Q# za&ot<>8%>*t8Qbq#1Sws&e4da>tK~zQ(Ts%bOd!H;ev)0dR=qi{BX5ec_>9QT&yPp zZKX>&DFZM2TsY>!5?kpq>K*de2Sakq*giS+;>lqUdKGPbY&FH`wL!qvh$SMlFGg$X z8d(`>VPJ(;BUZUAeqbfw)cS!3O2FATAmG+8Jre7o!-x5vSXjVC_&@$}**yP)IgMqe zfeJIa7rsYsLe5L~2d&WLz#MdNf3Up}a6oH&fiOmlI{et`ItJon>-GCdJGbXHR;m!8 z(=?9yZfeLBG6(j@QvDoAunsD&oBFx8Ij+!_stfC`EbIsPj5CdUQqnZq`ZK_LFwVw- z?+4rmxEt^poVy3lX7l$UzXz}zVDq0fDP!pG#dD0K&+mZoZ7ce!x+VzN7opYi*N=K5 zB?{L8Ed;DO&AGSFst7GciFbnocQ#^SRFUA0A{270IL2o!KmVV2wxSsaF(XmG1y@!d zE{Rh2xUP8|7@{!W3CFA_mHIX4!%w)L96gSsp?fCoX{-lchbgx+zY%S50NMCbHZ}Au z&YS?p0OALhwZIvX5;GC^8zb29#p`iyG)dB1aQ+rt`$^#6!D$ONKK>5iPXjEzUCN8Z zQB;!hPXX=(OrZbw0N=DG2pA&t1l&lUkpPE4RF3+FWC_O=SBgi#Fk&s9J!i6Ng|-}c zz#?=nBUa-XQ;5*h&0YT&7tb0HmE9MNI@piOKax%DsHDluM%|%0V@Zt z+5MPUJ}WDca>%QWoQOUQ!nfAyr||Aatp68Q(nBadYu0J99Js0+c!gHz(BlzBEiR*$ zSn9}=^ioHCUfy_{_NDH#JF>B&8XGnGOF`8jbqT6pAIED$2c7}}gInB%0U3UwAZ%)% zVB6hDDP1X^Rk6(Vz#0;VWF7hM4gq&tlz@MUSe`L!YrHZE@8y?X;OxJ5?_S-2k3^`U zd?=%@7qhdS?L}vsQCA2%UG~gUo!71xK8nk}3iuIV(X8W?0|!Psei_+KD>Gt6-S?I? zLF{^1;?{O+o)d9-u52oz<_M^vk^P3_;L|>uPf?d(l%cNQj1lYgS6?4KaPZ*J#fWJT zAMZoMe_EDw`Bd589UK{5Hm8f;MVCpBjHgT1sPPZwWJ0)GAV*KY!6_!E2y ze>X(2U4RJ-SXBPm$;ruwFv#|ek57CBgYPR4W4;XTvI*xB5N81*@~yb9aPZ)Pn;Q7w zO%Ff(@D}Wlxbfh@hlern9su0Z*ylL%TuI#{u)GG>m)Ce;i9U)M^#A5tzi4i$lQsyr z3h{GhwH@x7;KCV0hy1AuUY(yi($z9nq!(*5ec;fKXLSb%3nWxv85}j;YKKIx`#3|d zZ(5sOqUG7%e`JuMqrXjQ=T5qj{u0@(E44!Vp^?qhV-v-wLxJw?e`%k0aY-j_-Rm3g zusQ^c4{+a&nf`Hzep59Vn*etJ#_=Qed#Qk$wYnAX!ymvyT!n|Y3i$~%$`^6_KD^-P zF`z%6CV(`(+MrJ9SM0~5#<9OWs5U;!lw-jRPvb(dSW=6v z>XQX)<&!;*V!+KXI_$u?4+F0AAO?I85CO6laL*P%j5@aBZv?yvcq4vyE9%I?5^3EC zccKID>a~Gp6t%=EGoBf`EL}(Wyl%i35krS{kyzA~sWb6B#OYAPrv4#!G!EG(e3mII4>$wXGN;%FT?oxHbc+eG1y?C`x{QkK1U7?g7dpl z1P^@kLZFb-g)v{Dh)|LbQcDoITU6d`fTU%1!%J>P*$05P^TX+VQ%hiQr&-g9o!;k0 z;4h^sfP@V|8bTxOXiOmKB=URlE)M`d(8S5YUU0cR!25vj1Afq!vk&Uf_iK2bd(r+6 zq5cN}U&4+1_{;!#{ymyU9eXUGzT2{hC36opN;;iPglFw#| z(MO*G+zyaDFaXaU;*SB}4cLeJCINd9b#;GqMF#!HciRVe5aaQFjL+*p7{k&g>V*tH zz^3Azs#|KnVmoU>+iO4Z9<3AMy0Wx0QR3soshksa^pv*4Bp2(aP5HYEDf)Rej98e( zw^bk#LlNJsVqqG52s)13enC*;N#y9T-s=yvWy8D)!reN3e<%F3rJEq!vCH#X-*T8V zD$9W2u0Z(+ibha2oH`f*YzAD3ySD+4qQX&NK$6AnSEGV!P|F951zdxHgsB>?7)4a zsN?D+vG0)DAKQjD*n#%B7RNgP9|qiny64B37XW#{wP=GKz&p?$!{CZKu{9u@73_|k+7iix z*x;IpX_e-*4xHqemhUgqcOS)(zYiJvL;FTj&kwDIWuP z2esm(D(1}>)UPQhSFBVS6-3S_LCvkMq4uw>yRW{vPky#8a2L=hE%oua*->Xwy)N*- z>9KG;t;?N5J&L=0B_0_sMmrGcgJYZ0KAk0rzfS{JK2PbTP@t%#8G- zm*%l>Xlc{VLq>|_IXi!i-w>Pb-|=-2T$gCR+c$oJnePl~Sf=+m9Du$<*v3u|4JLA6 zEkt{XzN+Ibj{Uu|LU*R#rh012bva-i|KPy=cUEmbC0>)nD4oU8su1vjAs9<60grN~ zmxgpQdt+c#0m?npBC1w44!C9mw08vkmcmgrg`H+h>wrOW*aX|OHVVU}=ekG+Q4ht>h?h~9Y@9FST=6#Vc zh@LU&3N4Tq*|Dvwk!tEs6k>H>VbpdA2fs6v_-?lz+`)5ggnrI6C=WTe9xKuGQzc~Z zcW)jZ^!G@Z7OBfkG%Z9a=T%a3pMYK27Yuv9iKM16EWPLrDb#}f!l`*ic+pV18XOn| zyah`8K2%Nu7A~mbD`yN?sCAb4NI= zt_}?f(4?Iog%W{C5E31vI^b|)xR%eZ)?|`Fo&E$Tpn0Ctzy_W0 znQs@Ny)vA4W!`s-CGWnbP!mZl@h3Oj-#m8BhwFN-9q!(xL2~|mJX7yF+ft{&Q((QCx#n6c5*3omV{%7g;^9CjsjY z6j9^at}Pu|V)xbwYj8x6eA1$oF-@Aj*q(hTpDmTTb1EMCVy|*@U)S>qQ3+O$Ni+d> za05Q^&lzW+GpQQ(9QXB;*cwz%tIC)EV|hn?h_LO@9~!RNa{^Yq6B97o1lOqrJ$z3s zlQ`}qB$nmC5TW;35!$$wE}jm=AJt%Q60s(=+@a%jW3_g234FY$M=glb zf8F051jFm)-X3C$i)sSy-HJ%DdzPL9)_?A>Zhxy5-SUQ9E8tv6PGnC~bp@$ALq$V% zBPqzeO86qeJE8{!#2ZX3E$tV+QPU>|ips}*sz{J%`lq8g#)ZHu1Q_`uiPK*!M z(oI%HP!6{pN_3AeKzouZyorQ{srKjK{g}kK_Ihm0zE`%d$lsg($j%#X)qVurBPr96 zj#>=@J`iI-eW58r%YuR0uh={P*t)OkfPdeM^O~jRhaO#VVK{}kY83=D&!Ux zO69FpRjR0}BE%wuB7`)?AN(;*h(8dTkeCqavW#U}l!eZVO6a->G1Cf zniV%oO`5zond>Ca_RBu!ymNf-ySAU5^wq9^oaFf4cfa5Fec$i>-gD2-dv3fFd)Nqy z($aIf5ehW!;`%6MB2EQ8*e$)ms+rBNOQl;urXB3uyzqb)%E7Ib{acWo+EL&PF4ei#OmX z7%z1LeT7CiPp%DWJ^e0NwmRp8_9j^N->}kg#Ootg8dhd4g)+&%x2}>)_l+{*@gKG2gwcxHbFQ; ziXpj%o;yGB7NSZa_{k0DJ2~!il^Af(&7Nq&eNx)Bn%KyigMBHyBPz}9A$;_;%0oX(h14yj=}2e zh8o3cB@RQpTCCUv;gf(9ewc_vyz|I3ZaLN8o4A&mL(IwDO7G7Y_hVe=J{pZ}X6RAr zXvCMTX&RUuldVi{s<%;Bagw?l=Coe6$yD2|WMZaXvUY8gQbld;kCD(mIvOTX`bp05 z?`gXp*LE=Ub2@2zCX#sKR@8Ul*P$LugI@B^z_PzTzrOoy>(W#E{Nnp!pisB>m;rB* zp_EOb0JcDc{@T~RQbmWmnNE}FoH>aQanSw0F4|BpPN5Hj^ntO!O9$;*JyDb2P>6G5BFoiFc!P<0{Y|` z)hX+1S#8Ojpz6;Jl1-2ztSwB2fv}9&Y%*{{HOVXxxwSPAvQI*^+ayy`-zuntZ|$^k z&d}hX?=vOuXJHp$3XO_N;J{h6sf}gv&;kMmuCSWuDQ30;=}$k*Ol>0WNL|D8$xP0iUe_jx|GMjGK6@7@;K*~DI@GY zPWdA7%BMMJ1bmU_u2PPgE_{7vyCU@W@0Z_Jy>MKOO-)3#8NIw+g5@>&9rvhh>_F(2 zRdXj*q9BDJsVEe}WMV-laZrXOlkYUn}Hfy2}19=J(}E#dfc(-^|0|*?1KgE zdyck~XguA9Ff=<>Xw9kz?9th$C;t;88jtu=Y6M*2%SAFXtKK?2A zZi<7}e(oOr(dw<4mkaDTlye zo@toL_L*) z5aW7TL~xS@gQ%DXH`V)5d~P^9^7A_Jx?VXfgdNabPfEOleD+`pf6=VH*0D44ixUlz zQWq~~!cpXh{{(y*d;%NGI{Lb9eo>O-ovD!ZQwpRE=lQ` zkoL&$u}t#Y-Lz5XobLUdT&s6$?|$C@t=KKz*!hL8I|5CeQ`KEX@y` z?v9ZXX;P-!%?84yy=5Y_!x)`=BjWS#7fd|C%_Cey37C$R6fvK@mR%3HSrN_eY#QRX z06@Gt=qX(v)_WU2e@;KMq)iav`Cm3z zq`e=h#w%DFBBEYKs<{c&-IBqiXE zPHK@cFby3QRA^?Z79BWj@oLa0C7Mw&TsO7;M++`m&4C3FzqVt9`fZu95Xsa+`{;N3 zv#IGxSr2@C`?hU6^~GEzygEMKV+5ScP)U4lXbklLE=s#jref-a^C7W2=fCc0Wo;0j zHYwz#LSe&uzWMcUet!7K@SB70TJ>bDlj=ta*~Kh3vQ?Y7B5M4?*!fpDC-^W8W8+yb zoc#WQ!vptmeHrx6Wvd*zyWgLOc<)78`5hy+B$ri#+NCG}W2!Tx;Ok#}0CXXXJq5l# zJ`nHhahk@KNA=XB(1P{A4hIe#xE)UWl>%S}5sgKD`sdH;ac2C-DEhN&043m|AtT@z zV!ve4r~aS`0fQbvrQ+&^3o1feN}VMkUCy!Qg?$lXj{wqJ{n1hYR}dBXIA8UX$NfNf0n8DkkP&Xr)YJ#oa~dF0j@tW^iC({|?*< zcVy9Gg8u&g?4^@0>BFM??ou7=8erTwu+$fu%P4}BfSm)Y2>t4Xv1ohI*FUj)WR3hZ zdmQa%M!vpip{5G9Ga*EkF3A(ZcEUAvpsLYQAyiePkQ$<#TqN`8A_t#jE!Xk$*P`02 zG(b9R!_aq^5U{EwMx@@S33!`|(7dA%O{VWD>1_7_o*hVvV1(w6a}GM!>Rd2G6qxQLfDvd(##I=Pi8F?>SK!>I)!Veq~g- zb5C!NPCnhXBfm`q?!QeIs-^~)f{TbpD88Gma$sVVwd;4|N4~9@_}dsjR`rG`xMZ}B z6)>)kgfsHzWhLxMvsAz-4hy13cT^R%12&0QkZOVx}YK0$8hFD=rDF$*T)z(Y-q zShN-9cc>K#2?q{3aARWkB@v;kT|CQvUhG?}L4yS}XyD|C-=`-4w{qOuyj0@Fb!RJp zvc|kg<#OOG5v0lg?4u;cE3FLIg3~Fi3<<|6t{8NarHp z1nmjkckbNbd9hq1_hf1bvFaavMulXL9{~wa`NO`x{;SE=y%NC*xLgt)xLTJ$ngvnJ zhFE76Obw^XZCyNvFb4^8`U~Fod&>WH{0914nq}9?ezQ5eY8LjXYh`XNAz<|1zodBQ zxUK7z!G>WbJ3CfU@s#{mHz4-i3+MS197Cp|Qg(IFgYWcCi;zjv$$HtC&c+EjSu=}h zX&l&$Sm%9bhNaPg89)!Ahkd|T8u=hH;NZ}QJdD$GB&oh+;iqTLjmLv7-fu_y6Fte+1(#-2m9kkkM^A%X!vp-i?yIMQ z=r}W}T|z=Sq|s)p9Nq>2GuhpR;pjG8XX)5U8AD3QTDH$#^X>`nEasmy#g<4Prf^8Y zY7ZUi{|xWo?S38lTg2lZW-Wl%Ou&c;55QgTiFM6G=n7B&?59dZ+qQ345t-;#bprNXZPE60wV+po`F|vz)EGB1E!e9GKr4wS?(sux6GS3S+$7 zc9E``;ZHFDjw7)gCu;2|FMph4@2CW~f=xua!vtk@oVE)zO$c-CAk45^3?mwU-E{)P z*7Fei^9-0{T<>wX_5fnt;}}8?!ln1o4+rthKTL$uLA}N*2l_sb`1~;#&Ig>B>~A3A zR3)3e>waoq@DxvC40Ip8t0s?ibli9p73l%q9Y=W z-8Lp%Yl~h+B1TgY@j2nZ!^CHwT~Y$Jh@eNoz2H9l;|C}oV*$m()E}nL#Jc!*;CD!t zuur_|xEyX^02Jwuafot=+5XIZefRCbKPiSm2`}6$$iUdO6>BBe@zBJ57OVXT_uT1>!XV-XzH<=*#!oND1R65bA7BoEZPy%I`}9oq*lW;Iz${dX)B~(8G3q zcS{uT^yIP<@WjMa{=UAxuQIcInH#&40hZ^18fGSD{CaRiXtNwjmA9bO-;X}LjR)J& zzrX*Xfx&_I(KR0tQJKAec5vN?u;P6N+=eSkK5ye1*ZHmlF;P;lMcg*chygT+(7Dl3 z;lMEgS5h6gMDb7A(!pi$WeWkkm>4srz{6WV-uoDORk82BzONH>@@H^QA^yj~{{>GQ zx^;5mYK??z1>ROvH_~TOV}5N;|7{@9+2Xa;3%0Cq)YK7&jwqL!w=>!Pq*(mbrx?TA z%OxdXr;X(mp?7TGzO^(`{+4V(0wLr zm##Hp>~(~(2ey53z!n@#zFr%zt#%L{co@dPINZ{hR(95+1gm&qap|C|Fv18FJlUKr zztqtjMCgOG9f5!!Vm#j*ap2_>p--P4%QO4zfa87`&K0GPEvqp_4K6Awm*Vs?4LO>; z?puEN${K})bK30a(MC243h@^5dYsbwpHgdi`>P%CR*E_}CNML&KP+Ri!%U!I!x@0S{3;frKd>c!q#`mQ#er z0iB0KevTWu#RwwWy{#&>r@;dqfRlB%+QHeE8%a8qV{CZ@HpneJF_tefG>s;lS(g8UYSmz}+T0Np>>UYBUMv z?Qm`GSiVB6isit%0Sl}~X?i`2Xf-7Llks{O!hS|{U_|Jk123}`y2iub3lYDEx{JS# z7EC}{&p>Hn^tgPET_Kh(w4-qY8Z3!9be9|wgNQrYUXuG8 zJGV~2YXk@bEZ}>8&^fRX@9c>`DSZgF8v*-PJaKaUqOJal*A3$agn)}fxK$gi&^^m2 zLf1nlcS!i(-P~&Yea}MaN!46L3CFFI+*((*tw22ZyAHEA0OMHDfqj#!K#vu9kUf&wxmzd zM=TOz*zPrm(2pwzHaAk>z{@B?3w+}nUq8l;o!}vl<9i&y2l*sKFhB&#QE6v|#Rw1c zBK6~l)njy4m4_drGb&(K&vP|?hK?BH>Bl&?BKeFuI#ka+Nxe*ljN`OFj}9S;<@jEE zC&zMhU_zkO(!XgNh5PPCMAVmS%;N{9zD~fa6mCLG9Ev!;<=I5 zBug{ChP{G4-K+lVhJX>}=6 z9w~eGNPvML`HmhY66jmtZbAH-dx@hK+(Yoe9$6|y`K@i+?%Pe&(0;`9y+TY}vqs1N zk<5lk((aU8y_z0!9a!C5nlaH9^q)IlX&~T^j&%ZFtpJg29w{pUcP3k#T0M=6j#M=x z-qeW2wHmk1DP%R;a*+;fZlrRo123-#y#Um}Df3rWBfsS(D=&f*hW}?di!K;?FvFCg z>lk;95HO;q`u1X@^)Tvar{L5<@8_Wd$0D>6@YpN@Ue|$FD?m&Vi6sR5E++B$(^sVs z#*j;L$p&+Q11mtl!kD|d5uuAhz=s|xl_DK@xkc!u2E^~%>99MBzOl3uX2N!pEn?G1 zEXz+_HUf4xQcA!b>jb|peC1UrjbaXfe z)+RWx#zGHb#2P$ofgHh&^aff^xDy@y1jj! z1Fr$-+|ntz+dhTv`gWDVQen*-64k3AASmI$Ld+iO>w6MMMywyuJ}6e`1|!yT#zHR# z5Eyd%$cPj0LL4}O5VhqYpWcv_OIV@D&S&lGBJ`R7IPfM!=cKduNHzg_&AP)U#*T`gO28m)z)3 z&(T{st0MHRPQdGtSgRJgZs~%6D?-2>g=UKx(op==h-GPE#|=I+6QL`kzW;G*#0olacbx+dKmFXNWHE#L zl8Ia_wJHzyiXdP*B<8^LlW!rer`1ACz{-V#2wlv&)(LpkLo7ne`>(_NL&y}fgaiBb zCl%jeLE8w}m`%W4-E|K9+;AUb?Kd+6Qc4Z!&W63j*SMKjtN#iG0yTEv-;S{$q;L!p3mAgZpb#}bJ=x_quLasCg%f) zI#_MnnAPg7^0&H?W4X4rj9-@vwTyAL>_V?62nU99ItN~mRji*s}_UR*067{rR&x4qZr1faNuml3QfrF{pIq=Z)FCE z(9g7r1Fr}IzI^%ej1_vZsZi#M)*7z_5jrdpJinfKCY5{lLvOjk_-l0F->`$SmCXri|CqG^R)h#$t6j+^r=~b zi4{6iKXA~2$1CTyLckyLe3i7HBst{1R_sN!B1CA!VH2OLOgYmb_c@lnEN8OwmC#%$ zOk-^{kqDSF@mt&E{5;6PsaS+o$SJPF>IBAsbNRZv#~V zu0;dOMCd|I2&YZdE%jz>s7_~7$mBISt`a!4=}GxLrLXJX^5(N`n>T0q|7Y)8f8@BX z{LX#Vyqa%{8p+gH5^0GV$~I$5485jhM2;iHMiM2l1Vh;syutOS_IQ}=dN_ssP4%n*yMX8js>x*pv{ zsrsHe=bp#!SPuf{;rhe1sk_T}Cg3rk5dthk5rs^~wQjtr*2YB&^bO~HU7E`ugT5_u zyq4$Ri`PP-M@V?k?v5=Q1QaNP0;B?z4|FXp&WXVDVM1h}P#7nI0D8$Nz%&?&A*o1oY!3bwMBrz)FkJbk%s_KUG(vz;TMltzWxEPmW11~+e z*9!0xf)~%dsG}2Wme;`h;nYF!chVYoG1BVbNW9P~Pd{IeYv8##7GNB+A6>il!zkQX zki*qWf5!c+4v9vX&{~t36G{s@x%+W&a#gUn$?Fe>@SfK#Y)S)d2GCaF=L8gafhLm2 z%Sbk>m9x;|$$>Xz9FZ(r6L3GSeFeV*kC5CcSyFGfmmuPtDkOeR;?5R+M(~`pT9@l- zUw%(J2Ug+%#PsycdZx4w-5fN2@4=n5sekgdua4r4-4l%vU>BFVIlg@1IM9X%q7y=t zH@;fv@W^n8xNTLz4hp3ez6*9_xk8Zi*HpA>9av)yZOQN9Llz8xkzgF}Z*yG+8V(1~ zi@tPAKBpCaPvZB&1kNRmL$bi~eDmc;Eh!37Ue*}17QDA4-~z|$%2L+t+UMXgpb-Mh z2^l(owB#`?U4a?h3|9&={)sQPbNC#6P;gj4fe)0IDmWR$1s{I|@E&^xtEefpdSvR1G}jj31aiA*qNcFm3>0+@(V9vA_tZe z=J}cZr&10kax5k%R>exWt(#?1 zSO>-%@J0+sz~G9iicR)Gk=E7V*rcw^Z-YaI@@p>OjJ2^E$%U<%nVF43N$A>gE^e)D z9)ZVzW(cqg!3N8Mm=~O+!Gh?*fY=3%H&4XxWW7>D6EcqZ7RrJbWK82WEl`YxgdB&< zbI__?2ahcT39#g4mopYTKkVxQI$~ar1ad}k!iN$WDiIQ853WyTSg_uEKs#8zOB}cn0!)ue?@oEz8kAS17n#(qanZwHd5$wz1%ra;d{++a1+F^8&lH>t9W}EB zZSZ{Mf5!88R319Nyv09KP->$VQqVHW84q4)z(Y8oH(>kdgF^vSF=P~#dWt3Eh!-If zTRA9f?jhprb7ybSEbE3YTZDJ+t{i#o^{*XT{u-fyCnhr1z*(oBO1ZnYdAGuniW3WB zdr{29T8UohmR5G`@ukR#l|w$8!4O7{3fr`Asz$1Kq1StQ@LVgvY zz}wo3=77!Vdj#%BIup-d`{>$x_<6wsjMqW|rhU)mY20_xRrELpAgJnJg*l^4Lm!n zy+?IuFAcmf#0$;+fqN$OZ+`RZ;|q(6?_+blsZRX-n{U7Qzwp#A;Sgwq2KHVFYaA$9 zpf(N=j6fyp({nXdA5{pHwPh zD?NM&TkD%=;E-s92F9*(&}>D{YUIVD9!aM7dn~H!wVLMHOwF{ z^mZrKQblT)=WQ5ij4?ld?&xClLJwPj4PuaIJl`vkBZZOX=GcUer1F3Q{6{#RVrOi| zAW2^ol(z_AO>pLgZQm4;j>@KQoyDS)q`p8Q&9 z4azm*nbzVU$d%JUg75*P#`nmTCiY6?z+tWB6iECIlOozkd?(`&1H_74swlPZ37VAM z6Ei2bP8>ZE|Dj3fK6-d)6S^4!jCV@=0IE=6@dq$Hfn~u=MGa}avK_|vywHkoULxM^ zUnDDwS5z%a$Jjy%X9bBbLKdhDJg-~DP7<5pP!;PbvBEfqpNu{fU3l=(_aY#T3ffq( zs_&3jnflyo4Tfrn^DY!y_RuxKjSygCful%;5nK}JG-s2io4;r7Ik?!tK^y$tBv&#? zs!A$Cy$}qfwqRT%Zb^#+fMidLQtuXp2JbnIa%Z^sCrYNZ1~sswImdO0R^vPrHR>If zbK==jpzwsE0$7V1HB3%T-cpdmRjJ(k}Bo5Nbv0m6Zsy+5l!>LoJZW(<9wz`(Dny+r2U0Yp028Tc+1X!CX zF_GcBE4YYS2M2OUxn{(66WXfM`~lLw{2cB#p|t?(+C+|V1-JcFL3qclK9fIXX9Vb5 z7+dRm%>wegK-u<`j1f&}OPZMne_Z5D77(=UyZX_iM^=;)NOEUjW@ZXjw$^7?*Vj+M zAeY)UTcyC}kfU;SX}6ca!=0fiu1olu(4zSdeL56m5H3TQFD*c8zy)>b9@ zr9lj?e;K-#iA6|U(hm1kYPz4on|ysdKA=y|&%gNT(MBRS zLv${1PINtqm7kbtKP$LP-h6Zp4uM7pF!Rvi z@bs=NDBPe|hJ%7}lJ<7U;_!)n2jK#jlkqYBw$^yfy!u^Hu&pjY+D6=x76-#rvN|ny z=@=5ja8(8$!J;s$=zEcoo)`?#%i@03?y6nmPuPlT+Zylf9mw z{Wt&W-yYZ!Zp3UAICO#Up58SmY72=s&Zh-UKv9nC-{f^xw4WN?aL6}{`+<+KQ_T9l zNV1mr6PZ>6k1=}mXWm-SL33__$VBA<&1wtF;Cu7M2Z!Ir;XD*FFG*w_cVocgd9U41 zg17vy2^hfS(V1lj1z2yH<8A5TgEOBld~)DWQX>SI?y6LZ`JA1mn>gTr7$^X9;3Lz! z;6oWdNa;@~J2XqnCbJD1Dg=;40j4Rpq{Tsy+{By=WVMGN(~;N&*s~;WOA#_8vP$uu z5(?PqZ1K1=;G}_V37H-Tna~4x{^=K1C(R^0+IR$yx{u)g%DstS{q0|$fCJ*ds{0=j z-~RTulM}0o1Mlu@*cD54N}UX8WzmVXx)eFF&d>AXdA5xMk1bw#h>Mjh2C)g2H9s57OE2DD3pvO>p$!=hemK&Oi^oN8cpqv3cmV4xIIr=Tg&t6L zwO3$U4Lr^;(K7;?G_dw80d9yhI>C91Uo5lu3QJBcnm>*jn1L(us$eG757VXPb`5;y z*i%bW+0;f?Sf17!c>$X%YcIe7(GUUl)x$0GWx-HL`-6?BLVQ&)#-#K&9vb&2q-Tcw zx(RKCZ7H$F8#3odJV4$W6c_eOt$AM6p~+~}+XdJh z(VG)f*;*DRKuv3~whQZzHcrC<(GUTyw;?njQe9@M=J&K6gYMfAQ{XB&r?oDZ2aB4v z<$Yr0Xbbws7+oTQ%~+DSps-Y$v0OY1(Zt5t(hE&Wzyhs-xlO6|Rf0!dTsco@2NT-n z_QA8ye(|?ksChkUZ_Z8V9$0NOM1V`=_)>J=yictmX-$kn;_%yi4+e+I0C>?-D?ls? zGNCVm^}!k?QnOi3k3@D=btame(lm%4m9x^CBO<_P9{2?)C$t#2vyL%2ABQ>JD8Xr z-PlE6FiqpWZ58l1Ll!*~T7xfq$@xz!v^{L-J}-3Cz?AgkB?@$rgZD0(;xu?3$z96T zpL_0$cbt-38K+Hvg}6W{_glhGMp3lcfEFA z93=2^mw!O(>DzN>W*3WY4r(%h&jD_K_5=tp!E*NmUus|nrM?xZw$lwnjjJ`UWD}=M z<}jw<@-U&rz_k^~mX-1efCni{Yizjps>-sr)>WMuoaa!cD)1V*O7KXaEluac&XMIe z-gtfK`0VN53aNf9E(qi98CiET-ELS;2Ng!2h@C}lEDy(^3(!>J={n}Zus=MpOwVJwr;^ZmF zw5CifYFB#h2k-uH7WRq8%~oes)#3s?jv>58;GzaDgY3z}U~R#fTV3U9g6`Ofm7B)h zk{0`hFXzB8PArJU{Xz5ul9De%Y;GoS5SWnzHSi#;_Ef^Us{r4;`B!(Jo_!h=U8_*A ze1G+Y^@sP)!amWU*;;B-uN6S@LQ`pBOk&MKq|w1wLK1H8J$^5MQTQ3uzL_v!fo`0s z1U+}$_{`XrS9bhiVnG54?{32mR2OOLjmF=}+5Ap<)P{CyW_RG}q>HdyA_wEuSLZ)H zK7Gt?uCIVqIc#igOs{X)eN)UfNPt~r0i-9PhQQ{Jug=Evl`~&Nkq;&Np!Fb)q)0Lo zdMheQ^cAUH9@jBeA1I@(MWf)jSy>1}Oz4bLsaR8_%&oL^qxL8zr;g|OXcf&V6zDWf zRZQftyW8hyp8CT5Bgdv5$%!eH`3czEScALE_x9bbut5T>aaeF#rnN|)`Mix|Kg+)tw))JXwWToWDk>bxeEqKm| zV9WXFS!FY^yOp~O@Y%D^JUV*(L_V2KK<)}A2Uz&!Z=ZpEqCvCO;*jix<`N@OrxC2@ zVWl5{ZfC8`%hDQGl}(vhWHneLdfM9*9whZ3R&5-3{9(Ydg}hq`$!&A3XkBSw1Xr|a z&9-!z8!fAv;EGmucN6;b=~E9)midkKbxh>gLawYSxN~oD-^?5h5@3x31&tdm$FLB? z4fI9I%D;G8^39Gz2j-LZ(UWDN0O>Rk0_`i!!d}?cgdTtF<%Ql};9xDcR^iZ-p<~K} zb&87?9M{R%Xl_>;SPiK#o}NDTXmWCTO>0_@dstszgQevM`%dO)kN{g2Q)g)n5^4?z zX6Q|3b5D}pK=x}UGZs{Su%dKp$KLEHzy=g|YbQ&)twtJuBro)CCNv#S6vU}BgJYsA zBVrvokv|y4RdI^@Y-#*TT>}qa1D`n2+3a*?eq*hLJXe?xy^jBs+IK}#Lj*XBf+)9{ zGAZv_&~UM9p-4PgwKgl(aSk+-k9oSmTn-lDIJqNu2}R3^^#mY!p-mKlYAIH2OU}4T zu*QS-6tj&>wSpG7Re527g6z{wwiQE!6qT$>-D>m5dIzeYI&z*UU`g#72SOUuo*8On+t*&j;(Hj{e2Lc8>-U5= zkUI}u{QjNgWp(@Rr_-0{KMOT(rQfG!%1CKf8 z=U1-G!M6SOXsQAy@ownq1f{GfR%y5^Rh;(L;6CgArq3Df=@k=(xdDayuY-( zWTuZE-51GwLj>4?a|RT>8@yTGfQXd(97M|eu!m>Tz-3N!B=XjHcU9(UUTC6N3HaXT zLXR=nKI`*ByLbrpQUDqS()W6DS!(KS<9ZkbZui1SLwTX=ICkv#ij-oZyS4=?P*lXj z!-wnVVIOFS0JG-gcg?xbMX7-UFh@~*4Yh)-wN*hj!b%CbuQ@g1Io;+$k255WP~}2% zQ-I-5{v9*11n5G7l@@&J#HA}@J29LWx`$JzPTxOw?%W-znJJY+ooj1rbFdFI!d`su zop-J*F2yhsItsFV^oGoO8(E(dE8~)`o3OG%?L}wdd<-Ma&bCghamD<_`E2Piv=>cb zq{St6V)41bFj8KHk^V32j?Ei4|K<&JWL>HpZI|xj+kb-*(Fg&4_uc={^FrgO#BvnZ zGo!lkzaESOuO=^aiUZHJ0z9U;cyT^?p=b9wby#@Qhx7HEg|{9D?(7%`9`1!EeER7p zS8*Qx9)5@SFI}4d-3Nd02mc*lG%J8c- z58x2;a1)x41tS%e*O-!I@4^ogFB4%POETmtu z)W8o{*@T{-Z#D3^}M=4{BgCp*uUof%i0_am~AW1+%gKS@}g? z!mZ(Q?oVmD!U$-D26kE5%SeeB4pI_i3b}duQ@ODc!r<_pomf6H2+FA`=-{Zl&^~&h z_k3u!Xf7V%@cp^aA-3Ha#S0xZuplQE&PQqa`~27H9pb>lz0ibX$B*3;TLP@N5QxGf zc#*G;UeekK4gA3eACzn0gKFR`8(ah9bu!*wT)Z7~q1#NXamTB#UOb8#_`^~IXZumW z+chxdLN8SsxU)?I@0|->BE0yspZ)Azx(|MahM9AHSk;WKZ9KJsndKj_YZW@>!_upbUqrv1l3Vp<5GbtMWD% zddz{QE(u|vh=w9zGei-4053G6&;{;Gl3UJ^=FT5b;P5yCXyc(6QqZ3;IW@I%SS zY(cKpH&;g{cyERPbBhZc1+7&LDCr73fr}?wf1P_n&4&#u#4q_iZrDKhufiM^<*JZ_zrPoX}Y;J{$8sK2q|Qg;Sb{q zyf%fAS`9p|z=yZXx!(c`TP*(zdt1-jHLy@+1yU?vu+d$mbd8zPdMHM)6F<9kYi(wF zW}}GCSqh78_+n&!=teB~KK#Q!jA0}wDRqX?pzwZH9nPxtPamZYy8Lh6xPerjcVLzi zIp!gUyiMd7W4!e8tH;+Vl@jtZ`w1cKlnaf;{G1P+!bqG8U4<(}S?@cyXClXEpWpHr zj{0{uuHQHZS((gn_3G8Xz^!XA0vaK}|M4e(G$al@Oq%OwP=IqPW>`o9&BY9N?=Hg0 z*;$I&m6-s zpHFiX1^EBtsgGa;G(v#?_>ccfy_jKN)kp~`34LLqznI~{{ky1vPgWXuw$;Gnim!kD z>!})Pc2vO~(7;1dDRht*pT$Z20}$||lbw_QI_qR_pw;vy za+&>$&XLY#+aG4J;(j+bx=GmrZ(;)I_=yoBRCUSkdgV;U`^+rSl|K(Ss&cQ|q z@PGQrPp;q-Z$Ja@PAj_`@+82?guZbT?%iKx4Sb$bDe?SltAP)U*;BJ0{Pd?k{jVQ= z^wEcC5?;Yc`8vLT6W_n}@%4|tdHv(--@)y-aD4CDwQJwI_R+Ps@U!pW`1d&8i{pJv zE&L%aZ+;&&(+}~pKf>`LzvDnn_4m}BU2GiH6~||tbOEz*olS5SNKKU56fGfj6J#OR zZNWvVThb*Ulcp|;R*|)`TB|~S%3~jSKv5qeo+C=BTA^0r0p-b0p;BEna!|F3=nAz~ zRV~nr0Szh|MNxm}>>S^_*Uf&IG*M1CoI7`B@66nL|L5z@jH~R^GHsmV_!@EnKF#k= zv%QF{y>;O&sb9SC)`j`M{o}ofsi`R$*AD<(O)PLf^Cq;w;iHu9ec*iGuM%;HX5pP62&>aEbrKO)eL1%S%AGkB+LjWUbNRwC}U5%rX#lR5qUBvIBFG!Wj zvqPjS=Q-z8%j)bpgmO4oD&2ob%A=zX9UO%?H*$QK;s|xcv9a;JjQ=nbwaE50ef;kZ zpxN)wKJoI|v#&SmjRynxJ&)vc(<2{!y|G9LzULT>n@ABnK`_}$aANkXzcfRt+cUC8HONS;W zC*LOdG>>uY>#G-A-vFYZT>pykt&rJ@+g2OP!LaYA5+DmxTz04!oB_d|EUP(e^MPh zd-m+B+~XnoMeDk~Pm@VBj!-_zh$qLoeBHR0-p@%XY>Qk0!S2C(7j` z9Q&zw(zwtMMtzfAV_<>Zhux6|;3S9W<%=9j8*zN>!ph1~X@{mIA0ytv@1h>)4gzoj zfX$W3-vGSX;D=@J_=fjBFj|}e(70DRJ6j%T7TGsTyu84KtTomf3)C$V^VE>1;Ho4- z0I0Ze^CFWZK0#YA0@TwmE?#3Eus$Cr$&khDv>i-?HqCNRc1d?J^Y2QLOboF?<6Kv{ zSln}%$@_G%c>h5Ff(0*5P&WZkkwuY*;3FKr*h+}3zJ%g9w%%BOX05*V9Q8#e*C6e4 z%!d5-;Kal?1_Ajf9>IP3cwnCsX%HeN22$IBXX za#;nWT=VCgv-ZaM^FPnKBu;k(_d)uuZ3awNS5nW3*xCA3K1U-(1(#2Ab8`x?Bu$Rc zj|a9h@67aslzo%(MWw>lYULzLDEO0C-bGnJbx#Z@ zaeR-IX=4z1w*Z9e+lRalc^|)hkaG1iw28SK(70pN1DyHX5fnUbk_J zTgt3nU#!Cd*m^_DHIh@4cn>Gmo6X&})^5vv!uf*BTNFe(*8L<9^%_%Wl{qf^ZTr{M zof7n`6RkJks)uE6tyIrUPe+xxisn0@K~z@%b3PbI%R(o@NgBA&khsuM?=Ey4U#&P7 zS`Es_D5uxi{7=+{`oEdmK+8+Zhv~3qO{?30F*LP#XzHs%Q!FzZ+lirDd? zbjNRvq4f7$v$9W>N+kn#Ecfn|OTM4?%H8=~7TUSc?B4E2?UXh)u1*5rZ(G}Bum1^% z&-W7c+;#xJ|Ni?smugGHOUui}TCFxRKR-Wt=FFMdYPB|9tJa>Z%*~ym^M3&F9%!l+ zHEs%c)ygEoae_2X)wQ8sxA|=@9Nd(D`2Yrm)>B?x5-$0m7#`T&JLsQoZhID1nDXi@tV=`R@Im*7Rp5>rW> zHP7~Uk%x)JzRrL>0C@M(8N&>~E`Yj22i(|obq2_MPF<$0W+G>qM=85%2ShkTuN~6g z(_Q{#58K%Wh#Y+(EZ%_f+fy=K91SL{f)@|S)fI{y7ih@T!0ae#Ss4YGSV*;?{4+($ zN8Qv)67#FFcBE~EZJI?CnYpA%RI615th!X_6Tpyb?|%Os`Xb5B7rM~-ycYxa_$+h= z;Nur829~}lm;X&B`n6jc12Y)c==}X?l9x$pOaaWt7^K~-w+!M6-Hp6U5(v}}0N!YF zVp27*xm;w2^*Lo1!?vC^#R`ke>Lu3IaxP2MsH9HHmb5}9HpphRbDK#m*viqS45moB zh27rm>22o*i&WvPofkLzv19PtuuZ3}wovxUy^yu#gLHOgR<6v;I)2|2AX%P$^~GcAg~L=YA_P zbW2@G0$aTwnj|(JE)gW-sC{YRC=~nqiy6`mid-3>>e!?F)qP%FTa~(Qs4`=(efWL#vm}$tGKX)8W!>NI?P!HdfWd8+ z)4*nRMxD&LDbal1v%Zyz_NASdo!7a(&sjVEoc#locl0x#@>`~gp3?zXjwx7Q<~NgA zqdmIN0GJr~;$toMJP~{}Zr77o*RjHn0L*W~*1;{SheX>7h_#c=Wn$Zof#a6@8}*jB z@Q(|QG!PI*K6RNP9WF>fSgFj(pL-ynM+LlEHn1bDY*M*gmTi$` zRT5f@8*4vYvS?roggxGT;SDAaS9Q zO7muXg~2CT_1amx7Fj2re1+>ihgJS1S?*Uk>Jfh5*Ixh(X=@DZ*1a>zrF}dLy|EF` z(Wi%G%6t;53tgxBw^0vtvjHqtxP+L33zi-9+&F)&%+_foo0+|2Ap4mx))7H$=;B2? zTW`rHe&JbC19lkSc3eL(>bO36vxteN;YYFwf_C6j>zDgdcHPMO%7g+X0}s|74{F7a zP0eaMr7~&{X1KoAM-77qGs0yb^$OZDreD$+5JxN;+XE)fZy7kEm>zu*K0G!i}K3*r>vuF1J;YbyJShhb)5?Q-m zq4;*x1Ko50(`gTIBLj5iPI>lpbW~WMEcrN-F>duW5?l8&sA4@delqL9@vXz`lU5$8dH24V**8l{{LsrB&b{~jyYIex&OQI`ol=RO5w$=U-I3#Ft@eP6fZHkW zwA5^h^d&_9`=~&==LC%4i+|w*zY6i}C3O50VrG90{1QHrz^_0|7opd^48pmLk8&O& z-7Bd7Er{=B;7b(%&bfr(^Go<(zrnzG5kw|^JLXBdpZNFNfSmGh7n zSGS>DCf4IT$Mj4SVT~yOv(1VNfDC5z9cMx^0`o)r#IHDv2;;f7LZCnA7OnS|RL4{M zMXW?6A(KkL><5atsvpNrB^q`*X;wd`!H%{L>gCF?oK(ihI!PqplDKKs?xE+Y_?_8? zMrJN`J;9)~IyP4QK92k&%A}nmBU{kU<9N(tebTI#l9XbZDcVp@&_jPOa`Ix*cGJw)}O$25&1iz_lLCFh9dOvvyNwi))5i2TV(CPcXGE zW95zViI!-!tk>8EYlniiA(6aq_4b~Zw<_BcL${UXB@vU5uxFF>H^pL2Bw$H2z?tzb zZWA|vG15}c{)$q)UKpM-hcu-@O6?_j986CQb;e6l*Du;9C>ayLpeF+nf?pCCjH1y8 zOAj91zHR#<>_zznwEZZay#nwpyW9f)lgI*TqG-4>@-Blimus=}Gs+#x}@rCERl zQ?Ka+S$9<@2$;c)-~wRh)f^Va@*0R`dO8o#lN6=_R{<YWt^YHG)mERqD05O@faPGlxc5x+j$*o4%(lwjyl;L46$fv-q}qaa|QH_!#hRTsue=MpBPZmu|^xOPUv< zonEYxg?JJEio$=RF6p6%N@Ykk&tYP1wn~Y)QN5yQX z5jIA@fguMt?Zc8iys`fa-%tvDtSPbihFPYcn2QyhamcgEn$JA&W0UD{wjy&-3?hBw z&DW!uzv(gAS_m-H_R9+4l4*djDcTBy2zwG0o*$jFZ>o90W^HDB0$;N);V3qpmIlrk zm~EHy_|f9oSS|Du6O$xr8ck)Km^6|)-#q{)={seVigjY&nZg;^#os$-mYso7ruwiM z>c&T)V%$LSpMYGF;HRmn3$kQ&OR`v(`>ak(oOl6;3PrKpHv&c{Y(__J#mj9)qaO#1 z0><$|Pvg@*GaTt+_Cx54Cu!sWR=`Km0mikMsZXeMV{|88>0m2_0sXA+ORVaY^eO9E z%cZ)Pf4V^GWr^o8>d6fETS)3+3t;q=iO-7dI?QgO!|SXcMl~fQR0EHBQjBjTYep+$ zIE@5txE(bbdYzUVi%GQDG$tk+4pLX1pHHGz%ejvh64w@4>w84Ra5qcGDm83##x=To z$RMbDml$;6^-n~cuV-Gdy@RfBGF@FENF|&zf^$Cv8_&fqtBXc2T$qwI=9^lrC9#{# zLLK<2s+NM; zuR@>uBI-U55%~b{9?$Y8kyuVQ6b`G_W+Cc|8jt7?74QsAp%KLbGs1uj=0k`C_XV9| zfVG~rsbNjS#b$&aw31xTtXd^ARSd8)8Lifh z&>+X-T8D2$W1ab}0cC)+hd%F;8XMK6D0zUtju^vA+k|>IYo`(RztVHZ_l^7Bg5grm z_=xf4R598$h-2Wa-NRo2$72R!w6n1jo75vx!+`kAk+z~A&UgCDP@H!Fdw6|C#$_vQ zp}$6N!1(oo@Ytw8>WhHu_4?r1vu8JBx!)GVKJUQtKfuH&Rv0~v@)+Rj$B+&kJoG#` z-2~q1BrbanFaIrc&_Q$>bduVq@WOl0@J9h31U!OHDnUHjgnYJxh5{XvMjhu*9uABK zBy=y7(R5hHiEq7gBbuwnQGE^&C&(vJeO}6m)FBUCj{%Cs$!-uDrudu?tPM0W0rPwl zc}>(z)@KI5NFg&J!^z*r{IHTEF`CW>LSXo)g#CkRyPP!X>o-#KegMAk1g6W_KSR@?A9adjMGT zlH({pk3k~%YrtOyeg?1y`3hhMpaj^Qv(m|qhiE*C6?>XXoXo?84N^EWfDAxKt`(iztiF*8c@s!TnQLzRPR0v;vI7fYjT>4ejK>^#}uakc>6c zgq%HsDactEtTFg7hCEm@XqIYV9XA?8QmvA(om&x$BpktJt?Jm`mKJ)s2mRFR+7g(o z&58-W%2J{~o?GOMBx7TF0>*PIa3M`V3Mk8Y%ge3k$gyMRi@K1MfZzK2TYG^o0uBS7 zNI{s;83wpK3V9AR3>eLO!4P5D1||to4JC|XLcR--09~2q^7^txPkD={Oa2~9S>pD^ zHvs>3iIgQ}9e$(ovuM_Q?g$CEWcA*0Jr;ryXn2gFjJywl#{e8~B<#?D1+aV&X=NCY zF`f{3A4XEK&V#bAZN!#trCp`-Uwt%P}psLm3UPBU4d{q)Kdg zKzD}Ier`qY2Vz!Yq6CoIE*P98H4irw?F~veH*VCTn>UqsLVeQd!(;rm{$_T8RKZz} z#zu}A%XXCrfqCbBY?yv!WyzIoW57$GD zS(Lt*gn|~ zY8k4>En;&E+pP^=5ClJfpU=6K@`e;XGwtPb?*4C0W-kB$hh^ftv}4Rd^4&p*vGW29 z5~`KM>-1Ti8NCGrYIS8_#Iek}*JS}g7sBB?*?Z%;YLh^_%%5trr$M@2-}dTfFI3gL z5AU1I#*|%X=-%IG67y!lHk<5(n}7_+Mo@M6aBg#eDJ(@-}aW@H;^QN-*&MSY|p z*scy^5PmqvrHG@AZPJ~F<)D(;aIGB4BrmRb?elh~U}u`Rnfx$E#F9M* z|BdKB1spoc=fhc-oQOzrB$R?a-R`@3ka+yM{O%sH`Dr`)loJC_5+Y8_wUjkLnN;Ka z=8Vw>@wzx^z>K-*=mw%FO5NT1&=RfKR2TUC%z0+-*uV-ZrZk*=^9;@yZF6lyy29J+ z*gbp^nw#At0V!K*k}L)C}U3FE14X3o!0QHQwd8ut>DIAkR_f&aC4y|GaoSA2=#N)@+FElLS$ z>4!oj{K>5oX_X}-gus8XZCJy&pu2N?up0D&h6cfclW({ zGxOf>>C*s90^MN&W)>orh)rUUFv)Q`FATEFrlbszLDQY0V3FK_2T8YoR91yRzz0OH z)4E79ed2n)a|EV2aB-2-g#LEjjvcS#-Y%ivo5VgJ)}nTz{j8NCi4hoDJG}to@A27~ zqmLo^Q4%;ujo9p{0eo!{wKeN#lOr;++#_&(S{?Ga}sd^%14qj1jn~P?^y1y!uTr946li_As6!&u~(I7cRw!nXc8v05NH`u zWR6Zn5?RBgQG5ht_$6s=$kI98F}=H#`L1>y{3C1Pz8G_BT~+e$kkwKI0baLm#)QV) zcvW59j&0a4e`;jd79Nw^YqoFo8^Etfnb0i28S3jtK>qIS<4f~=Y}zU<*X0PT%~z9b z$ADYcUA(GbpbXOMPu%%g<^||SKg&*pZaCf;CK1A)jqR^(7}s> zaO4;U#Lq4oVX^SHDHsl}r|(QmKA?U3Xid%LR|pc?nghXv-ta?Qbgh*!rH+`%3EaX` z)aLLyAI~H$#mw!rMU01Sh6|dbESyYekDQJ*gcFDa?fHuSF@gn~s*-%PR=pE@+ zNTB?`0cmT@fmH|iH~BD83gN{z-1iW;{{w2f7yU>~DH z(fo*C5QdWBwm_zjkV)U$GzA!~shvS$Y97da5UZ!VHAUm&=b7WP* zYmUh3JVq+vdO<;Yrw#+?fhw+4wUWm1_df;4jWUeJ@CzRhjR?=(iejHNPvU*xwR4i+ z96b^ufuPY1kt|j?7-V2O@{AI~!_E{|h6o<~VzV=fT7|YXPyutQ#jdJE>>CZDJz>s! zMd#>%{5(&T4iMZ~2fRDC`}QJpFI;h-4UacBY_4)wl{nz0qGbEn@HjJ9vsFERHVx|% zw5@6o>7a}DhYziMTHW?U&Dz_D0Pd_QSKf+65#WUeU*l>-5uTjmhs=~H?T zH3EA?^*CN)E+s0)3Kl_`hBRO(fz+;-=6pU7@WvOL`Q6meN2V`5v2g*O2OHNRRwlUn z@7CM7$^jv?1;^8giTDFToNTSF-TtCq#Eo=B!3>qqvTHnrH?0;=dqNgzA+PoEC3?9; z=pn@lgCQ{N%INu`ds1>YK^9W=ov#qU;gUwM@1!;gqN$2xt`Zd+$!0p@a zgiqqq&6<0vMn=#DCn*zb`t7U1I4NElh$GMFi((<~&cJPJDlusx(S2iWZS7CUu(7g4 zGy*@1KmMDkQPdoNfzzDu*ei32s=UAY$&2F4K*U*d3w5Ej|}S z=1A;IJExVT)a3bMWrd9UYAd`eMJ84>NJ&7=AyJT^W31kRP zje_B(K-wS)wCV~;cjPeZ>KPar8BwRc3VHe0x$^)Pyw5=rvx_Yx^a>FuCXFz9^>c1@j8Dfgq_TL1(j?6(sHz<5B5K8^>I?wUJZKVF?{`4E0gE zpJ`Awn9NL1nyIe#br}bY;ffSw&`im2wv2hr$Rv;h22K!d3f@WIF6-!Mr}vH(od(4u zGIiz`97FRJ>mg8{EaTul@Of}2xK#q(wNzDBwxV<2g)k6ItnRI&vF*SpR?wnsmXpx( z15_iY5yPqjjw#$?JynRT6SH7SA>=xhY%PGbWxK+JV(fBxlrr+au$m z$^87{1Z6u#bwB2=K|&Z&BqqSX-bOtxU~nhFplRBs5hJS{A@d30BLalW9<=phWbMaD z+6OPNC`|exjDlpoj-wyr=wlp8b*WHF(FiMi{h9U7lyG~r&UBuiwE%m1des0VNsR7= zD$4}eM!g^9MU3tz;R784is%s$3;Ynsj{p-zE6U3|@P`)T5BZ9x&uuJOIuS-e(&oZGH7wp=nDH$8A0iP=qUR!OAaH)^XNi!#Yh?ny! z@fC0nnAS0*V)^hgEPz{m*5CkTu!sP3-cIr?b>%reM#8G!+sQPynkY6Q1RPA|s1VfY zX|OfJ7C1j&n6X0;5}QKuz?a~bcox|Uy5L)U2!8xE7+iuF;SOPycNZlELmwNE93%v^ z)ezp=bE}wUMkfsqGX;PfJkHW7kd2@hMHwoXIp{5> zq)@AqQd-dBIVWb~@8h3m*qjyc_xGe*xt*RShC?ufGl9L(DPppDE#d@Nq(l+f3m~X{ zfS!S1m0hT)sBFXNwFiQ^6#}^n!dC}wc<#CNVSMGFOq_i~Ch@)u9st{NIyeCympQ6O zBuwjl$^BBO-jP$rtKj#+?}9H#?xM1)>Zh%^eiMZC0QwdtK?U%7J>;MsN@I6P$+JO; zqH$UN&Mk06_G8Lg0LnywiT;a@x5Ca3V6ImP?Y;zU4D_aBJK4#hMhGJp58KA}!zdOS z=q4{_!wKziy-xyIP3?EeYjAj*g0fYmoRi5>Ew!n~DF4bSAT|7LX6T3uOgeIR_SOS5{Qk;VZ;{lj|_=Nr8w;p_t4RGish>OQF95zCoot9tMvsa9p@wFzcU1CC*Wpk7|K2j&QwM2E`C%bTI?+RI8yTd+!a7GY^;k)fa+8u27D6tv-G zxB!KKm!j~(YB0>89%LZs!}YJA{R+)R@M3&KnjOdefP3l3ilB|QA*>P((fkOe)DWER z?_n;LV8~W*0vv~B@kG7^GDn?F|3zTs@2V&n{!&sC9aV2MNjDiQ%V6a#B>RVBd5-8; zDp*=R&KITU=s6jCKqIE$IGMYW;}+Va%rka2%*z<=`#pN@Sk3J!Eh{~?p{gnfGj|XC z7q;WGo%lO<1!bl-v*QliUOT0DMWBH19cn=al3#;5P7KdA%djvzsAc+Yjw4z`X^-(Ayo3<(fGpnEp zh$C4td14#IWB)i`?qkYr5`{+{;L~?*-d=w5+V$nvdT)Q}>eU;|KKRf3D^H#{Rd^^IUK<7< z3LjkCe7O0UH{Y!N&hdASukY;aEIrwN>iZ{-|MP{mwi7QNYL{cnX{-t(8e zo8EY%_7AnSf2wY5*t_YKpTB%&_1D)-uUz%D>6I&oextLq)#Tqotvd(a$#j{qRdWYIpu|tewP?(Xgq0t85K65QP-xWCKy>ivDUYKz+C z?%wI1o}SaE&qS#x$)F+;AwfVupvuWgszE?NYQ4V@;DAr?>~=(fKZs7U+OEJmn)er^ zoEr57@FAqDnv6I^?F7jo@CL?G?2{M-L_<9CvoS0LL^+(Cq?o!FX zN)7EB2e~vFg~lC_XUE9G!op8f43<*ru(U9f&`~N;l&~FDC~7!~AVH{7>J5zVFs9$7 z7J`Ufl6M(L)6A;0dK~h+-#jgPr~CRQa#m9sj~o27kjP8c~6M$l|7*6iUTJ zkoul9IM&wHy=}a{Jnh#R_O013HV)Y@w~i+>fSYP-Cq|vWXlSHT|*tIzj*@a0Z&70^X^sq(37Z{mvst-DR-Cp%vf2of#dukMWx1yFF>)8C8zQ<)4 zB6e@1#du~>Uclqw%3O`ESVVecI7LnKx+)5QJp{v&Swsb zv2t7nkM`m$hNQDY@t^q744W{CCS^hSL&XWnPeDPSsbs#w9KK4|z7*uWUYEuHemMNW zMYV_~E*TOB9x0NocJx2i6`_>8k9s=mVr#OVEv+uU(~u!`|5IC9T1wv9+8Q9I{>XKd zJwPkW&Se(X9FP5U($(g;9?+8DRwUcXhf%u%&%J8@W1sv!@9iOvT>c-UU{;JIF(xKE z7$OPAyW_5VUx?iIrphn}`^lzEHk)*|^waMgz{0j%@4XC}isoHB`RIAQdZYepjtSoF z-?L@PlTp-J0-IsjOZyW!%MZW4^nSd%ZR>mK6n|vIhb;nw!D0}~)xXnNe1}rM7%ZZh z;99qs?u})1xK0Y)x#m6Z&=us~!B)^h-t`NuGL&Vzyk_&c&Vk3d>9{vM67vOi30=?q z&wbyz6S%iQz{QARVAFHI6=Pf1`*@^*O{X*#Jy4-xSH-8g{6^TS@{O*unV8p0P2{jR zc@I%DW}L@!#d)|zIajdb%HGj;`72NFWgJH~Xa^V=SU%{R{QC1AkD=R=b=j_HH7Y7< zN7JORFK!|1%6IIl@NbRyYzBTw3uc~R|JJL6qId^BXCe4p)gtQ+3!vY!|D>K(qVQR}iP7dVE*H9C$xK?$CEsS@pAB zwh>rk&8E)9#MamSQW|={`z?RTitLb@t%!Xh^>-b3Q!}8QcAR1o)kFmUMUlK zIjjPnJ4yip6&faXT+b+Eg(+~02d!Xo2^|$@MNn|%;WJk4SMj+^a#=jC>IZt2R>(3d@gG( zn?1a(3%IHBy=i!#5|@Ibf4|xC;>c7J^roFf1JFHFNokylFHnb_he_|8g3Sbg`ExvB zCW(0;mMWeZ9-G0+2hX#WLT%A(-8cuU1!{ljkAbhxbc2U~b4SgLSQk`y@rsav$oYzp zE2+$XSiEwvIiQPi>@!O9ZOmEX_vZGx`*fkyWYkqvPenz=wyojQl6|an@6=59|c<%J8TU`CG0H^^?&O+>pWI+VsjL51M(<&{t*`t1h53& z@(8Wlu^bax+6y9oXj&_26w;W#-#3Dp@5d~K2O7*wW9@+3<2OdP(oMexf3CU-!&U-Q z&)`~*CMzqYe<)}IlEBMPVn@I3dXXhlDiBCM#A7}ZNJ9|;4+IpxxiL2N5#P3eW!hzY zve0mPwKsnJys|HRM}}YW1la1J;=UP$86?Ib=)n?Qpu*K6xo^4Bnl>8T-*2Q)k1=M$!Q zf^R=tSJLOy&c^0P&|-{U%1GzX^TSmhIiHJJ7cZ16Xw-ycCEXH;Pkoh}=r7$SNN~Au z{Ycu+{ZiL3A8=y_!6p^zmD^2uFU%#cR+>?OlflVK{MKAs0_^F?Co!z@CPGq=JITtg zg}mMT?0xe$^M-GCteG0Xlp}p7C?7^A<{ne1Goih2jM-Tt_WGE^=W4;7JnHre#3_q3 zVUfWT}r?Wf1?-wJiw_|wEYnl(B%q|P3vwhj(T?}^G0gF~Sw#t#FN zy_vFgo{qAI%>Q~i#h_@%-K#w5=Ml&m$AU&gU}*CO8vm;C1k9p2Xe9R7zWp`pV#Rfm z6#38{*eQ8B{2sOpr!ZZ&} z*S!U{MRSpx3T3G#g$zuZ1+W+-<=^?Ug@yt1j~Q;rIs1vn zcx<7qGri4RVr&H5AEak%du$n|*YvqeXF zF_;`y5XeN9!u=Y=Rt zdhZKC#eKzek<8mKscYO~QiZ_sh6Z-`W&5^WCBe(VDt+n&Dro=*$V=O7{s^}`U+tRL z(9q!14xAX0U;i?~0>q5S5ZZB${xF#@b0?+DCrZ%PE(+y>VT^ie7Kf!0O3=A)F&>MK zTiJq1(-%X3_p|Dz2^*INF#(VyB6ne7L*U!%XV;EwVgZj6BK+xnUZ;)k>wo9x%N+V% zZdXR>@}7BEx4;;{ttRa5M}HnyyFBBe`aRs-o(H9@E9(+Vys>=n;-|MZ8ARo1;HV=BPUL*m7A9L8i;Ha1KC zSK~axXIU?yD@!f5Z`5jbXC>bZp!%f+PB7nRWJsJuuL<*>_2|fywa}1qFGED*%a;LK z0qe`HAyn3_`gfB+4MzPT(v%B~vh|?RwX;IfdXYq|vaS7MV}(`!yVVXLHuO(SUdi!5 z{nF~xVOsdj&CR?Gu$`yNZEruMuIXH!Zcn>3#$X(PbxFW>`@*_pjE?+n5LSh{4f`C$ z!q1;SZ&)=i0)~*;x~G^eLP!q^nKK8i|L^g^@~Bte%Tgkd@#gG{W^}!Hvn}GV|;QdiSbzY-@6K1THF~y z2sSo022PmJkeoK?auWLs;jNz-r#*nslg z$B@w7&24Q03vV7kexH#-!BH!e^5aMzEe3KDtiTB_;1J(%*?P=Wuru)efP~Y>$H%{{ zCixIq$3@`C)h0`2hp}{aXT1;u(EHDc$-0xA)WL?V?t$P?Kpm}7MYdITrGu=(>r&T9 z?|wzwY9V6@z+E3T0``(8zyR^yA#%WCm*e?5N3CY7=@0nRrvI4$4z&f%5hSat&&t+A z$D|}22gY!3p4J0j%Q^=6!~$c&g>Sg|gqL(f8v=`rM*_Gk>OG;jaC)Tg8V!OmzqEtN z{)@OxAgqXTl**<@Auj8kNfsb~a!d*~A(Enf=#tdeU#-%UjDL6R7KK_8c`3&4f4jen z=6yC2NrnCHJr;&a`UNJWt_l7d{PuACWPTR2A`EK;tOm@WnJYSH^nR{yEhXCbRoDMU zjnJXl1&$7}!WNMkj=wpcml#OjH;D`-`_I`0H8m{I?l>_qSawpPc3XYHFkQ~u(ma+E zBx6n(eG2IB5xq6FxOiv}ooK`a9~T#=izyeRO$$^v%AS})?=?|$=)zMaQdXiK6ATb# zR&{lCA`r`7KtdzYu8Mq5NzOr0`SpZ|tsy}LRG7kTw)3^@tc5cF{U<*vA43X5l@dc{ ze!$5sinNtq8tWS6Kf?wh(E|~W=jP_Ffoh9`wGc#sx_+9W`15@?sx2rmj)*zH`|n1R zeP75Nl+3KG)wLd9TRllBQG{DaE8K&R0`^PIR*|QW?+cBj6;UN|n(H$OQ_K5Lt(ysf z5T`B>C)_bt|2IlV7}DX9HboPRifZb_FRo{m&q=xMwBX^k2-!^rGgu3C|MR6{uAnzO z<7F^3{7MSL=dJr9+_22dOj4_7$*%M*P^Z+pI|hJtSx?*(fq~T=@bZYsT4+LH5wdUG zy9h*P5isa!30(sU5rGd(HVO(c=MmH_FO>eRQv3=h!{eq~2Yl3VyoB<%Z+m=O6!LL| z9Hr@G%k5_qIRgHfszuT?2Ix--v~Gd^{=Otn*B*eAX`089d&XKm0)DlTf#KS7%4-Ftu(xd_DAa-GraFSCb-n(){1@2B+$fcdPGp=d4$tmrX2( zI9Fen7Jg>y-KQnd!4I0vM%c;^d<)nYSoiM0u&+rUBk$S%Dv;~!9n5kJiUvb-r=a&b z>3goaE6c(T8WGg07{$=Ly<7)<)4OS#G!&)gt}r`u&3hstMWle~GpzGQ1A-%dbFCcA z3%|TD>3h_?5XmVhL%ttS+|RDgYyds{prjbXsbzXH#pbt(eAc!8!WuH;Po%Dv0K2B3 z2;ndgfqEve{_qtjR<62haOZ!zi!yh4o_iqUvtFY(1N+059H5BQ&n4Yxx*+V><2bxC z?`6;F{kl3gkD{+o*3?JXR&_ODAaJ-Q_|urEy;a=-ho=iD8eR*`qdKRt2` z-#>5-eI0ULjuYvPbQ;0Pdm|XW{;d1*C-F;t(tWGTgowV&C=I!1gR3mQBx0-Ih=KQR z>Ux4WpXW-uvr579gi82^Fcv;CA9xSgdqYg&XT&cBH92*~yyH~N2Z+puPSsLXzOX95 zWd7mGun8O4E+T&^55)iEG?L6^J9ppFx)CRQIf(5aE+vtFC3RA}FcAci>wCs`2VmD9 z3ax&cd&EJm_GFN}N{t(?SBnx4<)aE^4XBw)Wd&DKJi?E<$IqrjzP&=V=Ox74{+}F{ z_W>yK%`d>Trf%48lk2AGA8A6}hy*9tia?bN^9^Yh6>ss&4S;VSKSo?h+CB;Jono_M z+2Kouuuv5{<-QJLD;Kx85s1rT^*dsmsLGJ;p7p)GvhE+rD}_Y zus!nE{J8JAc_Zb1$6oa(!Uwsk;=pf!i^qOxrw@BZ@aE5Fip5S`Ce1;H031+%8m8KJ ze`_;y`6MEVVYl!CpE^XeaNTog`iDi^h+?uDv=v>bOlGFN1`fUfNqq zp%ZVWFSTx#+0GGkN=eCS5Z3YGe_)KVhUxW#tDS|{;;>lH%St%UEXlO~nXS=g7+pVE zgLa*>ZLiYj_jpYCxh=R!&wu+(?GW2AS2KuZS$mNhbgA<(hpU(lxI|0iAai0a2T77h zQZIajLQ7FgVwzfYmT%-oMQ*MIQ)bz15~5KOF{jnL`_vd5%U9;{m>uOW)zI*r&7Kc5 zE5d&i1W1u*A7JkqiU^tfdKXEBHiQ31SH90rvlsne*h9E2ezwS~&LgSaYcjPL$$l~l zGFqXeoIZAb>V>$C(5$s@djOunY;Mt&*0Ptx{;_Y$M+s`m3PsusHQ5cT6{A2QJt%S{ z@VF9TB4bLk8Z4`N0!s#DC#V4`M5TUwotpNnhCi`c$JhA0Siw%0nVZKucL@;?ru$?q@1Qw2%u=VY%aL@KZBcwdqTx zl~=UpBp)A1y@iS)ACxjVM{9IiekGp*WM0gU_)OS!n1A(-mJ>^PwI3Vl&3Dg@fG0Fg z&x8G0H1gx`jSr5W80Jt^kV={}6L2z`l>?b5u1S+>$r-zDyZ-V1i^pWUeFoQpVRQ{r zn8#P;kRgz3QjJ=!5$pdgwS=cdU%xPKYKO@B{LEGNk`_JiY)wr^{_DrWzNJmsul5M7 ziX%O9hdhFd3~s|v&}|M@dnp@;*-?0^GY~(o&11XH?JSr{s--QOYF&lbqATH&S-@a< z5)$`N?m>SD_7h*wV@LscDs=l9>Jd+~P7A6KB^v!kSTL$+wb_>jk1-5?ztQB8RT+auowSwtrFfkNl>{!*_CY|0hMZ-&vl^I3w30nxh7C^ z6_ns9op*1*&xgWMJ@*FT-_pNq#gu?|ze zz3|0)QHZ+53;sjk*V@5=j{S+HigofA&c);p%vp?malbQ!wG+w{BxRRTCLxD~S^6GO zNm_r~ADze(d8;=4%C{%e=;mytE_m_%trILMc)t-Ed6L|{>TZfBr>q9%RGx?pyA zE!vuwbc@@UG>8ZQs zOu5tjQY(N6TR1Eyn0p0IXFq-V)S>IpVP2$E1u>13DVl{AwN!6BaLm@e5pu{{IA4z{ zod1ctz{Pxa<}BvlNPmcv{vgA!65J@5@3Y0hSwWD82PA)fUOkzmUg%);B(da0O-MRB z|DZ=Z<^+cNV2ka%kHA_Qi>_v6vxmjN#5>hZ$sSsqh@Y@0HU^qj!q3_U>NR7DZycof zB#gS0GcY)gv;-%=( zFJ7hU-&F~^&5!<6IQ_W4gf9+Zy+2eA?9{hw4D|Y~yXMj%q`EHp8X8fO0y<+9MSmHFbQsl+xvSj`Ojt^jg$k}QM@M#t z!9v9fjw234(OrL0NqmWi>nys9hjD8$B;rh_~m=C>*3D$#5*; z=VALCcp?zwA;SGFwi55Ab;F|Y%?|+1hkq5RHolT5pP~YmR}{dp3Hv|neybDp!Jno& zNVi&k8vCk%Ig_SEMrepE20`hz(B^(T$9mb0sgL;y#vH~(xCIIC=%z@hkrVMC$eUES zhHc6hd(TA#$$8PI=;lDHMT<{>NjU`l*V= z_K$cw1s2Rc2#-e^gZkZ&g460|^F>pg-M_)>L0<(>+*Jq^Vfn7B?Tp;eY2wQA0y^Qi zmsGZ)R@~?H4MH+`91Wm*wFjd=zE!Gq`5DrnC)YGUI9|}eL_JJy~%FQ5Ai>v>mqgm8$D}FsDL#t<+lxCd7 z?`BTJ%k0D1GW@=xg$YA$^QILrY|B`EC^PijXnu*#@%;?9c2E31I$l_AD(<(P$}8FK zY3tLPRw}j2%y6exEeBu7q!Ly~?r14nWx-l5wy!YKkj4NHE)^19#B{rdMD@N-vS@L(LD&V{uu5z zsrjANa%1b7s#HXy$IN+DF7$%8zIa(7-Qxz6#Ec!F0G^l+Ln9j@P^ML z5Vl~uAd;-}i|m;juV6j6>;WT`J&*J&X2Q;Ux2SpH+~E5LrBjmMUDvw3qm50aL61)h zc}#FJXyy!ll8c&-^6yt{Wx-2ry_km|?8E>~j);=**%v5?wk_BLMmi)AIB-JD@0S1l za%i#JV4oqbBQ`Zo#@v1UD6UYs)L=xTTvKW-U`FpIm-o4%{lB))h7$gd>s#J27-AR6 z%NHk-!?1+UlOk{3is_Gp6P{io*m3(EIG1 zOw#DoRGA3B5GvJt6t(gNq9_mBfRcscp(7Yp2htvDWYpL6!wFL&JcTj}O0A{p&{ZhR ze4XJrjZ*9dIx$o6musXg&Z&{Scb1Plv@`G*L)rb6*wTR&gi|!GrVF!*w)W<(fvS%N z{g~Hgn>$G>D)AqkR3%FqodAUe zc!DJiQw$XyD0T_)*So+sPoNZP-U2_-Wjl#~^By%&+O*pZX<3gX3M6h#WO9(v987XmpbyA~m`{{&oWfk+7~jt3V4a*G?>*7w(B^&y#V%cok^1cH_ic zEw*4MVckwgA}^iP2PWk}ZJ_R?DhcO=~ft zMm)Jf7BjJzAF>-a#0PH3uxKDNW<7oc!J{iYP8~K%n4)QE%*nT>Svfzmz5Qc*iEV*K zP2_Z~4x-C(Q~Q={tH)c)BBya@Cjb=fF%J;`iU}dGP5?T2pNZ+~zzPINibz)O1Ero* zKWuJ#&12@rp56%h=%aBuk%!Uit)ZAInmn}n5>7}Md{>IG1%(|?zCBN_zBfkmVFbbu z@z~DBd4P7VH`l)t07uu;2}^3oc2qYisoST4L|aF;ea|||tk!~abmKJ?Pmwt^>Ur>c z^#==pQb$@eBz!f&Ig|oR-csjgX21_g!>ZdUJ^k>GtLC(w z@uWoXv69HWkWU)3lahj!kP6GeVWcxvW2iADCPl))&6j9{crnNp!?S=)N4A4veY@5KorX7n^1s=MF-=G@ zxXPTrr|^{R<~DFe0NuqHJ{NvUt3>zPfOf=tI^eagCZa)C&gOSN(io9QQ_j2rZ0)ztu?ZHHwj{<3ob{u)aZ(VlJ5^NfHeVNt#|Iix!$#L-ZgxHdzrS zt(uY43tu)%g|EWl2OhGF2EAb11e;eqCi!o9^eB1wArYY0C+q_GL}Bg!IGcA{$*9`C zredxQzN!d(nGbvs_RMyl)5d>S4}1~(*W4PICctSnMdHx0i}&WA@CN1(21-UhIw&g) zip4KIM;c1hJFL3|gUC;|{RV4CNTjNIVKOMQj2v!(_DM9z?D+%DUSn`Bk#nJ=5)+u` z@j|y+hLD#lPU#^%54s`3bfbs+?GPT7KI)F-go%!B^PKI!@fr?Whe1iL1X;}ES57|bKMw1ighQy|gWDN!Yn z7q@kUAFn=tHNHIfQ&@6({Hsap0J8!M*&>0r`ASNmO75k%W6tB_k6Y4jKZNs{vp&8o zAU;c@Gpp}0)wciWd3!ncBn2s=*?Nz%I5VyC?dKln>UYiUqcS?vt3jo5nb8e$Q`04| zfv_;lgXH7EAw1oisJYGXF=6X@L7a8OjzZZMn_ibZ&8U(#6sRC^(N=_-P;YqePjUoH zh_d*q&>zq@c<~{|b~)y@b3-NdT_HB?8|z6YJv0dXMeVu$=3Pe2-Z&ZwwOG$tZ7eTp-b$^| zl7{R5w^C!RANHI}mh{#jB0|b7d_sbBw{RQ|;vX6oqj;@oZGy>p-&;Ul-3P)c^&n}C zbwtVEgmjG$6@Dw1!{j1;PRlm`E;U^ zfgAUZzq$sJ1PP-{N|dW^v0A^OB;qLRAl4^wlaM)i7_GO;IC`FU`e$`*{dII>sX2A{ z{qv^QblBrAaldj!Lq_C?NT&C1PqTM&UA1UZGP;o@RHwzqx%4}kT-RJyE|)i8Hp94) z!%o&>T_A%^p2i&mn&SB^7D$R<=|>BV2lEd}reo(*N|2_JK$~9^rP(9T|E0Bcm+&^5 z^+%kEFcXR4@`WlT1ibZY1dKNa{V7Y!dwbr;2l5NK-vVk9-#kF=66z2^Umr+iGD}F{ zepIjcVk&T4cJjBO~jtwl=L0Q#fwz)1>Wq~!J+a1%hW$Xzjd*AsE z_5s_~q$?#?5wC#wry%U%DA#^^C{bnn0Xb^bOY(qw<8unrbPS6WT;h{gfH(p}%u#4B zTnZ&R1?+*Mr;LMjBsQQJa8wC(pqok=tK6McsIZuSu|}qbHUCy&t=hfNnPbCrc|E!g zx0Ewo01Z%d1Y+rtJ7aey;&-kf>qwQRe{ivDeZ5f#dSJQ-xNw6!4ckI5a zot9mw9wfKm*q5>CaMO1bu-YN_HRB@N*=h|(6_Es!#mLmL=&+YkC{8#htK{wY0zvuC$wv~3f za^?Zj#7zon^CO#;?=DJHb~}0{bI3X-R}iFZg2;KmT~{J!k`07fnwnj^wr~qaYA=M9 zlG!|kBYI4` zvrOCC4v&93qj`x)x-_uJ&=^nF%2WIUtyjQ`pT#CGmMI6-)Aazly6#V3Uxonsc3Aee z0klLH&Uc#*IFc-FxjbC))V!Q0vo1XU!^Lx9vjP5{0;F(+NyvX23z;fSnso-J+kypX zRO*OmFbPutYL3@$Fd33?2nzBGoBG2S2LpCkPE~xW3PzALoEHa792%vsN$a`JjC>g7|jTdq3yg4Ks=&IO30g63Z{< zh#*PmsLmjMNE!TIOlln~B#QY25wW+k(WV2g$=?|VnbZO-_AjBZ5+%n9M=XxszlVU9 z_}gyjr>sHm)r`Gn{8#`e1;hJQ?*c-!u0hyn>QwAeZdkPoe0ldAY9;(e@dLSN$s+O3 zo#h&uLxqoU)~GgwV4NqF`a?pQHWeHn20c>KpRuD9q(5{C&bE*!S;WQp&pv!n>3{JM z(-~!Fp@!@r`(fA!i_03boy4lkJ6t!NPQd~)r=DEmwp;ih!Du(#ZN`Lr+TcZgYa2-& z2H~+sx`vu0Y-;Ho=tdx#jt}<-j&g(Fsy=}y!GqHH9Y=lZBln5gTp@qEA3p!a`FY0+ zm584?iASq3$uOr;glYaX<$QtR;ppzS@X2|K=aD2)2m0LNk4}kP*z-loTqhi~!0rS( zU?7QKc=5eM*OTb9z4xjGKWm<);+lx_U0Gjzs*m%(w+Q#LE}k4^f4g)FJQ=>)YTF?s z3Vb789&uz&GGNo7|ER8BT>z_<48BixBd`rkDb6%rk;H;ny6*ejkN$K&hdP<07!py`Hl_o7)+}?nO zQU8d{#7a>yT9Fx?ii`6Q1s6h#!%d=ZQ2ikaBp0Orp<)dRP+(tJ zPf`35asipIigt0^&uJ0hOj6!Bp@j86&D8#G$&o=h{045C;Eoj?fs1;YdM%IVFcc3{ zuhg@q=G@btYj$?oVR~VvaBa?-Tbr~`H~j!cJ6Rs#*dZs9$d2!}7)0h|<~&JoN&cn8 zn7V?y;t+|!U;7)M2vNvVtHg999bpQju&Ho7hY5=uM#<8fr{V-Cqk9YeZkzIMJbLH* zUT=ovWx^OGl~FEMONz~lzNf6bN(`QyRG@)x^Y z5YT_8@Wew948n$bZ7)NTfMEvXq*W&F=w=}Y>UnI)QE0Y^>TgAACCsd57n^%VyD-Gn z^pt-k^}wCuH+ti>Vk0B`LpDXCSQo2)dp&Ep_$yHqYS|?txq7=PQ7i(QXe#G$yK-JffM|Rrb{!d1;b(3avAb~se+&{)U%No@ zGuTt0pJYfa$YTHZkrR~8+9!+rW0w0Q;ZLNmiI{<{i$q7j5R-wb8}*hDr5(jl=mf)w z3<3#4Dw@K|6(Ii3Brk*TE+$rZAt`5atGvuD5Jbu$P6E4cCsX5oVT@3h2`!#W!a_r$ z8VIFlZ%7K-X*Wbyko^orO;c>SLaVE%Paz7GkfM56LsU~DT0DRtP0*g1{1%QxHDkOW z%u6SVmi7!0u_@Xafr<)Eb=7g>`tQ;23ny{;`tr52dUKi5kUsIspMmuAk#s=d zx$pWFrFXjsjeXD5bMTW1y{sVHzdW^e1A?4j!NCeyAystnVm}kAeD1CQC4#BUE1Q zG4K#>n!u|)atb8}kwi(YRX)#rFlQTs^dF6AATJjDH(V*1pf*yh*xBBzm*JDPJHZos zB_`t_pibAaqi*KOVWfZ>QcZks(53wFibXzyAB9Ff$qTx@Z~FJoyZ)!Qmq9miF@<8R z%twh4G-@F|^x_z4XqXtmkZ((x;!8%(pLTdYLHqb%C$S;~VImb=5+58uQEnROe4O>3 z;Hrhy^-GG>Sx%;uGc}g5t{b+u!l&2u(p(m`#)j#IR-{7tjl3Auf$ojMfkPxJ%=4S5 z4}Grv91vRV{$`bUZk7uR;(P|gQMC%nEDEu$y;cW5`%+ReC7UaPG9(Oj4XGIPX-u7j zPBAy4nQFCY)F%CEY*gG$DEoy6VSZG}7s57^BG;2^B3f)3NQ{rz7ADxBEA zwyIP96jnFuZbFT3oR{KXI;{4AZ}b9=>zpD+-0DP}8vda5Nx5ub?H8kjD-5W{jEH+4Zlb{~SwdNEJ^u++>P z^Y+yDcD(jD*XEOC&c7o9vb>Lbh)YtDZ~S9K!dwg6A9QXk*N$UMyJ+c+;{6&9NXQ7B z2Gy6+EYJql?POe1n;+evG^#koL{+Qs&`a0=U{stkhzsCVFrQrv3!r?xa z8y06&-dfI%kK~k_Nk)9iI!UhM+$*b?tfxdyhn3UQHxu-~ke++VI3ro%2w#VZO){(NE$x9-n3!?Vd)(A?%s-W=MPZe% zDSs@5MtC}a8Q`Yw4cVq;O66LJ`Bm6;_}NEIJ89<9n*sNjlTs!eZcSB&{(_g0R*~)m z?{|eMea>egx`yd7$U`kp<|zyGuf`Zejq#IdI~NK*uWH_SNmGv!Lo8DNJWwgO6bv7e z)-B*s61r%Ao}Hzpz>ioiSk>gHCzsNEA)8&6OJW&U1HiI$$jhj5z`wt?bv?JKCXSsb z&_*h#C0__z>3P|Z$lLUb$ryb9GO*)!D`&I5v68pwFgBjo((fds{fa$nWpLAgK}7a$ z19R+pB>qtf!HEc;34ujIXA+M83<_aEBPF3I@ZZADyOF_y?d~?8O?V1D$Nb0a~Y^6b2GSXHQ_?%N8De8NhFA3hk~xv5I>sm+*&updG@zB z>CJ5QTsT>KpEG)+b^A)6Ei(=)Nl1k3^7K8#`Tngk_$yWOH??1rUXV3g4m_71hNuR! zDGmyih^4ed2q<$!o+dT9Mv|!0Vnom=5B3Qz zIoWo^Ej5*frREmbq)Ueh*Mb&3zaB)5goTl(QF=;3 zqa*KhI;&1IJ0b9Dsv3!H^qYBE9?4v)*}@>hlM$C_)dh?Q74wTd>`T~fN#b~JKS+!RKVQCmQd+7U> zrJ-J9;{5z2V$Mk=F2S-rBuG*I<>*VFPn_VBUt%edWFrwJqhAg4sdz$Q_ymqrlu)=z zYPRj&-o|s+v4IH;69y^I2zCM!3Fip5Y-NI5!v;^WpI3^pO;9mI(vcUwGeR*WN&neE z=M{2P8fqX|Qla8#RqP2@+@@FB^Nu(B=?hW>Nxy;nUyb^#IaML!gZQM@51i|9XCF#Q z`#ajvs9EKIcB3PH!MB1N=Xm8P`_T=Sx9<>ny^McT*VOV8?m5;!_gNl57kMUMZgZTB zZcdpHSWt7gJ!sBiul)6L8ICr;l3OPmOKKqr@!ik3r1$}1hWTXrn}JUSx_9Ar^Z;>) zm$7)F?avG|=%9`71lr#-tKBlHJ~n}l5i-{jvbm+SIK-2#Z9c)y6^rKUMR`ZvV5L^h zYJ7-TN?`{w1FQ6I1Y@*jjtwj1Qv-n6ACEsY#ca_gV=_`5`}qVK)Y%XQ`fmCGH$2 zp!k75NKIUGoap!Z99~sPn^-ZL`CtR5Ubch4e|@BptAWrwab9iO&%3v69zK_Wj%8lQ z;qhgh8eOMPO|=bs`AzYw+G4d!uj366Q>55pFN)+ulPUAT+X@JfQNTed)+wy&xCo=% zEde7pz8xX^?fQyso-oX3i%G8BEHlli;xYe6FUMBMQ_mnOjMeyELi~5G$+qu#m+kG2 zYhJHO5lzhHutmGBj=i`v7E@-ljKX~PAGF3(KeJV6$++yF@uyYe9}$xYFy#@doqugI zSizyPA>-XZqcfMGa*3l#v*sx18_5IsIZR%}WDMr+mucndeME|{b>IZoT-B>o;&-QRsTDHl@nx$q zcrnN#gDo$JQSp0msr68N1{>Uy1)n+n7lRFw)L*9_3QYA(Es!XmR)EtdvorPkX>5i8 zyZb=omrFkgs{$FbXY8X*ll&30(MdVesbC*a&MK%eZP2 zwaWewnN${a1f~SL*%*8_B{`bw9mcRsvE0HK>O9}}beJ>m-U0WWKTTyjLQ+XJ6FbD2 zO%wdT6{IPY)9rZAn0k=~e63nioEu-&Dndi2a1yY6SxEGK^#>{QuhFecc8KCYo!}zX zfe_Agm8A9LqLRbl-&}5dbD!D6eLlJfsL!!jU!~7HyQsl&3j+G>_eRUV<2N9x{jmn$ z0F}Yr0MNu%Zv7QPhJZ^mik6Y9_fHJ(_$;fun!pcc=etAbK@^STrKeiI<9e&TZe3Js ze(B>6MQe>L7_AK}-;$m01Zt(|H!O7&qS*KNs-#Wtj1QdYE=W)Q3wW;8gK~!P3$~X7 zZ|esl97Qe)^DxT-Y{)gt*7+FL&XM?1*jb2TldvFT5g#JsShcTynpO!e?P!YF|4xP7 z&wK8KPe36Qa)+1f<#NHr6dfTHiStX-xFIwLP%i&!T%4Sa8hmbETp#4b1q7}*B1~SJ zJ=hsqMul|m&ezwOZQcT`-R`0WyOn3oQ_bV8WPE}1g-u^LfBUN`arXeNl$T(=+PySg zhlep(e7y^DKpXSSUr}}Xc7gtu(EIv$%;SIbIWMHAZXWHZ_ea8^6~)nb+4Tl1y^4?G zjJRWgx^Y6HlG4;XvC8-ihx^QS&1sF^HG3vK1o5$sd^izAzQBd|-Kr-!)U^=bkC@5C z^UK$RxCk^%pDA33VN8Q?0*xJ!5$q#6A|Bb=@|A<~;M%kUbx1k9Jt!+Yf?stBh8^NO zdwkDhexVmSJ)O4oc`cfML-pNBl$km#m5}ww zPB=jiGpqB!4WTpzr31oIDT@DL=^PyLeBU;n?G~188_Rafwz=$O8>`lqt*0m3uEoVC zFB=P6+I#o?z5l>n&wXDwuk$*N&jG8Lew9g8hNIzZ*48zk=vkKnhiGrZvqC4e0;tA*F#@&KE*b& z4=V{h+aj|;nYj|u4bG{K|Dv&O@80%>ITS7_1ls~D@^I^~249wPJd2Yr5jsx+;Yplv zn%C;$?<#u>8KDGnw~O{eNu|JQEJhUnda%?W;{$W$`LyZtF9PQ}|HW#XILk*t`y&s) zo4vgG9IF=i%QV8Na0;zW#G3)j>Es!3%*d9I&D1c^q{Lk9tRfOe!l&V?6NV6q`IB18 z5oaV(S`o-7qVbS|AMh{7P0WPw7sLYLA!frh?nwd_qNttaD~B8+cgJd?f2|S)x*=9U z;zW)33LfH2r)(d0Ojs`?2^7OQBw8e!QY1YzI3EaPzd5A7JaN*tbpEu6mPuk>2?UUNPjHoC&5e3+3O!zMl_H{Qe--X@xw{A%_Q`eT?oV2YiN-U$h- z#ehc~Lb-c)LQlg42mZI3|MIo&*=N%au$R7WVQU|^&C1x$K>G#%Oefw(!w-6xiv~IV~hIRMKui@4>7PzXa@Yxb8 zw-=j!ciHH&K!F#>5i^u4a)h`-JtnvUkm(bC`hOP7Ogy?A^DM8in+z`aKv`Oy8N* z!)GCq?qN(3FASfuFW|yS^MmeJ8B>28yj>;!h-K!EyewU)}DXzv1r7$tmN z=5J1UdHiBQWcya6{^?;}O8CCANElSE=x7}u&4oM-#abGpi#qXfUgXjkHlI;apFaKU z4#3BLnek!urW?4`QW2m)Cn?FzI3@ikt0986QW39V9SHNq1^h} zkPOL|pinUGcLlz4!$0MdW67c{fdNDRADvE)3{z@lQ~_H+1=&dXVsVA-xeNEvJw~$1 zT+gFOM6nEQc^-Nd%J!JVY7c@dZapM#lN}z_?V`TT+!4P!iNshdQXgplg&e$(vHu=I zh=h+JE4|jon2>~cOL=4mV`5yd|}FmyP=TpX31-3*I`W* z=I_LPCnPdIU_>mT4bfdYaEtSCc+|d%AcYc4;4RHfZq3Z1w`bZo*MYF~UKv+UFenRE z$zjnsx4IRSgS9p4sw0d{nKf7}ED;k9O)_!L-rIiv_^;aZg=x4=*Lzqx-@9ofrg7*V zaNcfrmz_=B{m%c_HF;KYbRP?*3X?{qf-iKi@2gT!h!{VDcJ$fzk`%FOBE7e!+mOA5 zZE6{EFDuoj$l@>wxp0>64-3A%1C};Ao$By5%vLETlFdP_2}+*kue^M{ijpV>`-fiinuixlMNeIg0l$Y zU*_OR0tew{vI1KrnEGYWC~DA`Kwdc|TS6Hrg-Lj30qD?{*#AlwDw&jPX=t9v_(NKr zvP$8Yqy8KKp4O(bwN}g%2^4r3tAIgt{y)1EJU=YN2L>4=b6Cs+!Uj>p`zRR5A|~IX zK*@K3Wm2)cdQVewQ6GM4rXTgWia-3Ks^M|c?uv;aqZ&?ytSs_cg^TQ!Xf0oCc7%s| zf3lbFu8dd`W4`m70WP)32_zgt?JAD}5X*Vp-)W$M&&>~YP?_cYE>ymX9LwSvVOMqM z#Y&ua42POGlt!ZLPon4dIHEG>AH?vuFeL^=&*pWJ3eXYA<5`;&(g8|MT-)IhX$3KfvQY0KvQ4VHf;7WbN`eV{Q z!y*_=sPH~AvoRM!W@6Mx4U|2y0p9WK8A@b{3{*w$YP#`e%UEh(VLJld#dtY{+F4LG za_J`zxLvkWU%JfzD9zE8MgXu*D7W8CFw4E1*@{UWsrTv>WU==DO15%3vh0Np9vVEF zK>r)#6RU5|sEkUXn#3f{Xs~8>$5I}W$xyUM^ilPwkn>J7M1#?+RM%M4>%kyrfT!Rk zcF8xb8Z8W-LuXibsPe@e`?LF-o~$l4DBtrXp^&dwB43i`7m)})9cl$xEcu$}r#W+R zTxe$_%A!QRm6$>35h`#*g>x0;!|;uRRGZVxfO`AT9i4Lar_gGW0^Heu!@g~wEaHoa zQ{i4fuQFlhu;6HX=SCV0kr19K*bE!5cVRtA@HFt8+oONWsr=!Dq07&MhPlc}K@oIn zKy$I495C4^fZS7z0bas1qh{Gz$kzTv=cP*rpf~0OJNGIwya^@b%RQ06t?_vsL~AtK z_YpfnR`jq=F@zSMhA#r5;$w~|o2;rHj+@UXNaLtxVTYj%pcnuFMCSxd8RuiwO0=e7 ztIJgE?rEKo*nf5c3a2U)Pos}<=#}OMK|kHVnR;H}R)Hxt4{U6a2z2NLj2iVBHqxZw zEeIL0dkS92S9qp4&Akm*1~ji&PFb_)b6swL%ET3p!5V_YWY$SwFdCkuf)+V(1S95m zv)2evsxYC5S&DUU1wi5qf$>jwV=gSo-e~&9boJz<{yH^!oDgjc_cw!#cO`o#XYw*| zj1xKldptG6sb5C=7Am2)#Y&GU50X=E=d&;WNyx@fsUe%s?(z2cuoERb+RCWfyLoi$%9nj=zZ^uZKL=9L2>d~8%j#1zU3!s@G6rzUz!{AS}> z`)RwLD|-6jGN6W(&VR2@Gv|T%`Rd#Z&Ga(>pJUrG0c*qPhclB@naI|@mlg}k2mY%B zBpKuge?V~&N5PoA=ItsigjKWBk>mq>%n-Vn*$inugOEczT)!^L=kCmw_!x9q zYx`_cbupIYLyF~>6Y@VZk`Zd4_V&LsMq;bx)W93h;gKrt`AJiNycE@K7fW&c7}J`| zWv$o?Nuxrb$10Oi8K2IOScx*0Ydp#`5daNh`GKN%UcU~<6X=qRgAAG-M9#nf6QRL+ z^8bGv*w{h=WKguYqnG1bd&n1Iw5*SlOcmRJM(=44> zC`u1dr#7@H0HZ>lgxUlk^(s053e`&jO@JVBLp2F%@UGEyjBdsN(O|kD$L5FxXA?8(%He3oKx>ej-_Kdd%kZopuG!z!~@NcYyN6`@sVSDxAG2#lJb8;QiD5?0AXbQ*q{M*=jq+#S?fr?*8xOG3R!r*pI% zUw8jp?=sszPsO0Xl@-%}bf_IytSSAW*-;#ZPK@TIn9^VrTMu^G9Z5taA|`$)5`F^U zaieU8Ej1H&oNq!hox27H9ma9qagqXB!w^{47$%+AG)ZZA=nY*j66Rc!4p`{>RkDa2 zt*;{xJJwbA{B_%iYIPTT2M2$&%LbPXA?Xjd?c9KK`n`ljvx$CCO@^mqY{ucSOOk)D zJiQ07Rv?>MsPU}}`O7>UG?ct&il#6VL4Y>Z!4De{~1K67ki7*h#YV#l{ zW#SXFf=R}um>C2t1&Y_uI5g^vhbL0vcjH;h9irZzGH>c+w8Bh$D5bQP-O%R9<1jL& z75Qj+nEFB0PuSSV1&`!Z(=>XW!5WD0hN?RRP#mYSK|w(>N%}0)JM@C=dD&`@>k1^m zY)l!*+|A$!ao%ZP`I|gn<|+`&2WPx30e<7f*#i(B=uhtT4|v+XndE83nKn{MEa%kX ze=)qi4D%LvH@50hPB;AmTTf=b{OYuW9)Dx1G@Jr34_4}?cM}6O-OWpm)q`y;g$4oD zn{tfrIimrIOPaEQNt@Nb7eyf1k?aGjhC){O(tnJ+KwV4B{k@u zeZEv@ns3tLq@S-!K?MA_vn@Dp?Bvt04kNiBLf>2_DUSI(-mR zXNE!**cJCUXSCw+CyF$)us&@H>8jpjFU_X@Mq_edsr@Qph-Zn=JW)5kq*%JH3NM6r z)SUV56B%8OVcRG3eBx7T1okE!Ja>!83F4Wb=Eee1(=QvZF5IC#Cgd?bZtp+9R?CQCI?VYD2b63))7C<^(>Xzw@~Qc3c=K|r2YPJ6L{RhD*3%!@DSkhYta3hAY6v~tMHr)tKRrw`p`mUh!5hU$| zG?#?RBy|Qb6|Xp3N{14Mbt*{Mcv&mWL-+;Sl>iFM&2ebLoLjAF%#ShHbCmm zkLsg=MpcN6Uy#G?vfie^Ml~QlA;-k{K`A+?aI(0iHHxH}k4Pd*7wu0N{HQuxvfx2B zJP3wz=1+-(-lG%FkUTgDYGY13S~r!X`PP9HT|uPFX+MNJ^iW&_i}%ozfEt+!?Tkmd z)aj|iL-{Dsu^1g0hC=rdaXTcJ&)GmmsAEs0g`-4cvwWuGP8Rs*^q|ZiinPq0oYx5T zAgxY2&EPTwS)5OA%`<{dLIo`IkOn*F7wIu*Vy0kk@-k!OuZX@XvN+-|08q1TOucro zTK5uHxTY>2a9Lh7x^%ylgv19$s5Pu(AMiDLC6^ZuVG?L4%;QJ-rf2ZnkcK=n=F$D- zi>UyT0tOd^rO%xJX8LCm2#{3X+f)3*reOB65wkG&Ia}fUafki3%0r+F-kzp&j=5^j zdg~be!RVKL!jZ11B@mdr&>*gFv=as1 z!u*;|609AxPm}aE`Xm*P^dtuqv4zm+#-;miABhrZ`kEikRyE(=9m^3K{0fJryGo9o zrV`j6s0&R5t!(7g&2%pYyoWQDC|A&Zbv;k<6k62E+G2snjg3yM#)J&KN@)cOjR^{{H3X%S!-LJ1eMahFDoqeWskXjmt-qVG0X6KilIzu$K+>eHrM z+QuY`FdvM%Q+THeEH2dJ7dbpAU8=Uu7LP{6*5bA>55;(SqCx&Lsz0$gKh45o9yj2| zS<~K%);hcW8oVH>M_Yu!+M(K8v<-chgGoIg@8>4S^NKo!ecN+uG737U45-kDvFQ}R zg-xIMz!a7NfW;U-B*wKAyg%@nZ^9?JV zs7QBz8q(^}DHjS2+73z-(wW?A(EO$eR?HTbmuGx}Lf)({d5vRHPRIRice4>4zoBPZ zks^Je4Kx_OlLvUnctR5eiYpbe1m{>aYdHuLT?r+ex7;tM@Wji*kP&Q&=c`V-x21G6 zCMJpcP1}P2xKc|(NOU|OQ<_bMQcbhD8~OMmWcZANgk^SRChYsf!waZ-!Cr_80pW=0 z+nz72)1@T(M)ql*iGnJd%PA6pVC%Rx#gJ#ct_sR3eNx+-(%xA$BvUzbmO=L3XDq(D zt~3}HZIP3}izwn_kqnAqLsFRDeFh}PS#2>$@Wv*3Ew^K?5RA#&LP8hP&EYM|Xo5+q(IT1el>!}1^U%z6-AiF` zYxIo(c>pLdX0kQ7iR@^+sE`y0B3eTG`4H0fMaq@Gy642lF!Tx4)iCyfVlN`#x}BGy z4iAe~l_#w8r#JoEun^ZpKTs2e_GAmu0h_Ej;uun5St+UmgC}#PVeN*E`9U_^I{l&U zp4K=vY!ub0eSS#X2gX;7FYLx;QqmKr5a*h^z3=YR$RMuz_>BO-TferQnr!`Ppa}{A-xXFh$M$Rc#2$3z7%{^(91q)mbaw31420*6Y(pS_rgz_BU$MHgcS78dHvbVQup61-;`-E8zGvj6;CE6ZlubJ~7VGF<|jC zY_4jwwcFT$r_cxHurFpG@fAi=Y@XbK;S$M1#BPory)GZh%>7nEc9bjIt*aRJDG4^D zeK)7kF&>iu`zwcyr_+zhhs974D!Y!WD}ltv?(1IQ6zUu9b3TBmkpZ0Cv1~G#v0J#S zS`LprF)`L0oLoEC+tFGAIo++cu)rlTrK7B_blJO??MDjJEyM45tcO(^7wm9Uk~W#O zJLF7lr6#_F_--_X`5b9p&%^gs8{ZocPOo=Ib-&v*1Hipno^y0^(XKO$U%(uZWuS=y zn;6ul9Zw?^p00X0S7hdm7=9k*M5g*+m(+j*^s(MKG(z?7U^E}RW6J6x>p!;C>jBQK zOfIuo0E5f97}i4^$i?+vIHtMIUyGAPR><RTFx$Sv;^#Aw6Vu0{s;y*97C=N=a z^NS`lpsz$(d-MoCA~CF}eHW&aoeJlRaJ|wqAcN-DCtYA01Ap{qeqYT|TKQWOsid9Q z{qf)S*(cu}>;B>43e$$BGSBzLeJdCx%VHY?l_0;uKMpVkVp(@lF zov!GbgyVb~>mPPJc>)_r4&uly{{@9n>}~ZwRMghidjB^iVQUK$Q3~Q@4KvtkLYm|C zBjyc>iAHIlQ0_rLfcZGF*(zjlMfq;dLP1?v$7>-(wY*$Xkqh}#ZK-vp(lZ&qi;;{M zA0e-UmN0QVfN_)ue?fB&Uu5kfy`p8zX*GhTv`%KtF=}JQ)qX+;WL1a}ygeg9>gETXb`VgQuoCOjB{T{Geh*NvIf8Xq&;Y4`# zLu3g&u|gjVHJsr`vbC5{Xj=$)$KX*ft)w~#mQrP+Z1*#1b03zZEY4Ur(}*Xn*Ivrp z$V4nKgQM8MLR{jQdC*6pJdzH&j1kIkP}IoTvM6_i1e_)PpavTGKE>LOba8nm_=Zrw zt~8<`N73y9cBqL%U{`1Rgck2ENr;}54NUh`Q>m=T{94CVW*iOH z9lb|CJb~7_=Q#FDycWeXQ>i3!Z4hrp)TrQXVNYI9ayP-ua(It&zUYgmZYYv{lH8l` z6b`i_k&2;IN1rCL&u%5`M_=6{vm7)3C;7JdUQ+?t8jb_{d7rM_r z5v7;8OgWBP?;nfs;9Gs$gi;#drhk~JeJ$k{Ct|N6l?wNLgg8V<$JEp`wb4)ZmfT6o zwNzIn0%Fv+We_&(datvvy!3z~*g>cOHP*~LG9Kyc#)kuNz|TQH-Yl1U%07C|mW%z% z>n+y}3aN095S_5*RJgMoq|pIjH)nUpmcrMd)1Z-|C>;Q`*|{$sFab0S7^l9eps)k> zu-_g#20*E-%C6r~a`y6yiFjkQ7-&nmqN8i`whv3Xh39;5K64y9{t_|k#@s(&Sb$L1 zS0Bk{ArHGx&4YxE71ycSQ1714OZzE!tY1dFv8dG~5H@>bn?V;EtD(+jw-Gp?GxTF1 z*b&#Ddmu;ZA8%2v5hh=^YWF);WRitzqIi*{n<2sCuq-XT!wSPkKsogOs}j3x)H`Wl zs)Sohb_;*M5{pZ(BTb(TIOwd0l($>=SBu~bcdklV_7>(bpjG->$lLhHuL2zvkp$b) zsE~m%n%V)h$C+IUc4J<{?-4W7^wK{^D;wei0Eu`ydy%6_fbTf%ju)cxjc?JNr#6*Z zuBGj5Pa>C8g2{xF!eBpF2QSZk85Ej!3SIg=XNjh&(Ay`2rV#O6+rM`)rztkR;CLJb zno@6EJIl*KC-Q~96D1_&<&)^)Ti!s&f7=@+ITL|9p&g?Zf%1lkPP+40Mu7?jCGppb z?LK*!lHu?2Z>;_7zKfVw#0mHSx7BQ2*4&dDD_Ua_=|bL*$4?oLwZi=ggq%fGPT*fF z4$`}!4|UbmYy1B#)Y9^a4JP`1_zsQ;V4N`4XPu61QI}ItEW-zl>=`#~DV(G6NUs=@ zS{rGazX*g;E4ie)-)ebgSAGYk+7JWcpd2^Y1c1uKH!n>w)4cZO{o7o5$Do)NlH|Gw zubN&#YgJ{Tz^6|dO~{1{m106UeA5GD9nb>{1L~>gzUW2;{i-c;Zp*@_$a|9R#3TH& z;i2#ISD3!K7r?%pY~>kVQw;1?vrK_wv87W8A#|H5jY_6jqxB#V=)zsuG+v{cY)^06 zexNL#(4E3>R@%(DJk!prSWWL+RTS%*5Nn;9-4sfp0nn`*?Szg>d6oA5hle{7|GyE> zaiE_3ieYD1&9?BN?BR<$1(XHz$&F#P70cNfS9}oR?5}wx_QX^;DXbj5^r#s)r%~8U zY7x<>#UbCs5_Rd$PSrzYqT_ zr3z^yQ=FC7Dw-hhdeIU%^M7$K7M3+eVg_uY=`;A#31TYHZ%yVa_oRw{3>f*uJ(Ms^A#qX&C$4`y&Zc=}BVv zMBFgucSEIA|Y_e4S1! z8f=(EuK1>ubhd@UcQ_uyql`N1r3G`+Mw;0(;I1&S&L1)_eeFyUy zkV;lyBkfOcnQcj?3-U0hu!P(Q2L8FiU5Ap)E5}ci2Pnji|D9Z^Ju^Zsawz;;*KT;@hB=d45JV7 z?dt`T?qg?>r=J8=u+~=UEfJj#cHf%$lOCnlq8j-Vo8wS#?Wh7g+v*ufJJfF%5q(=9 z$RKrf{hr0Li4*dWQ7Jw)l}&$dSb2heUBj-lole7LqTN;Kha^VqY%eTjP$c?H0d2HP zl+D&qF3-rFfjsVK zV^dSHWf?Ta5RT^JMI0M8U4MV7+SGbweKE;?9&KvtbI`0;O{KURIrTx9Y{iKS6vh0h z(?O!s*5xDA+fsFJ-{RrsHs`G;P7p{{*|)YEaDS#h{GQX9Ce*v?SRSSlDu$*47^VpA z0|^KxKHznG#M+A~nIj}<=KWtE?9YA{xz|Y)yO!!DN(!>136IdExUcUaKw0>RD9EUP zxcKjnps^MjFiJ!ZLbdQGWWGD&Wd$^NJ&w0WbGbV6i-iV4X;8hKi4U|{MmXgu?=5E0 z17nQ7A|QP+9ms(Pe8&MVk9Weu7;785o}9+!9hoB|vS>(Kmy{9iz%{5Yr|Y)gQm3f+ zTR|7yY`3N<&je0F3^EyGES#Y&F>}FGKwX-XNgKs-(}2cOz}hvBCcHgzq5P$M1AoL* zsEXK96Q{L;A9ud=5P>BT774}SxK!f-{F&0%h-{{${>B6nL7X&CniWMkw&Ws9XmAqz z07iD>ZQag>Z z*bw_WUMNm%r`;e=LaN~3{@?RapAa0hSpAY1D~OAbZO8$n_{;w~9VwFf-*45~bu1W4 zMD~2;J7%{(qh){8+ahz%p2J65;Y5xwW47R%iFt)~0`sBtW!9$*RSFYCz=f)NLQx!w zSj|kqTXZXc;X@0yI^BR=11QyYq6N&kla_YTx3U*z@STCHSgW)7;+nx7N@9!kPt7pA z=7R^qlCaU+?q(@TIh?UeOCZN5OnXKOgN?5bqGqOo=pQ^50fpqYi3@QJRc9^TzYD;W zs>H<=2aRD?O3nQ5$x_wQEniymbe%67=HMxd4qR#bMMLFbzC|5sDlUb)D)keIs+)6S z!-lKtH=ws>a`D#BAII_1i|z^LSoxg;*yYVhlZ38hK3c3>^aACJ)kgY8ySXBB5IN<8 zNy+Bv11S0JGIaJ{x7s1HUGuJE}(5Vvq$3wtrmBMoo(wyiJ zDxMCaHDtYZ|7QLA(EIPj1-L>kiu9lU+b$0FIQStrd`DdZV(a&ytZ@QPpUG|i`xMun zPRF$qr3&iRDp07P3tG!jhV7PG2KPEdNpoXJ02)2ew=BqsZTi#`Pl!{Hu9QwsFx~Z0 zp5V;PtkWf3-g#Ary3ZOoao<-wkvA;$Ko@W{KjSPXrwDN(!fh=q?2!SZO7wm7+gfOI zM5xyX(MJ|>Vg70F^`puHLP=+(-<2X?;uArm>l_W=&Xoo=31AhcfyoX-nV$Z|fVcew zi$w*b!y)f(0xdZ(bL1F3{WBG=Z!DGiiM7LeB;mc6)NX(qOsVl`kJZQwvs z-g@0?F{f$<21~QOcfP~Cyu92-ViFf#TqU|)bsuKBL6~pw5#XL{K5{CmX+@nN2yIrw zc5FBP<>>U~Y7n#aW(D9;Egx|r-!`||&_F+&Z}pOst^GNVhN{u0XtKl0-*cF0e1&HI zieirURg>VPmY)y?Ye4x}A8n<;(f-R`)f60GLkKq9 zy6YrcG$$O*h7=ZDT8UoRw5|~%w+jo#Q37V79nYE=fcw4=w#xID{WTi?_ z87X-fjVmQlp)xg?TJCV-)U;&Hx8re{ zLi^`Xa~eA1muqvXjNt=*E);Fjz6t|?TK?NuOq{3fD-!NE9(#>L0FeJwLqPD>P@S!M zXVy7*5>|=mJ?B731D(_WGDqzm0Rp}*FaX`8%R?yNSn7;cu#|BCIamIJ#6WfZxJQ} zb{_7%>p=aW+aW4DB9nox@yC6M5z4NTmnQdyFhrgG9h55CsO6CXk}y+%8)M1d3Z|oj z@Xi`p{tJta(DRb@sT${KORF<~`)cwm)*r_L4KSwW>yU*jP-Mb?yE1kA8 zpdX|@>(|QwvlNSKO$7$t(=M~Q6@T96{iq%;O&uuyx=viAz ze^3NoHG(iHFK@GaKTH3TC++OtC;s>Slv)~){pkH#po10O4Dm(~45}V(*+HERl;aQM#+LtJKU3d_D z4`AA4rN4yVjJC>CEftz~XQKO7Jv#lJ1@Zn2_gZV|3BwoJFmKeW$tI{$ty8r!WN^Jm zX7sg%DNA%VZ;~(Bfn>2OU>O7pq?s7dskt}=om6_ATaG3#Ui!+jUlZ*}3)7>gS+HrouOP9z6k@&7r7% zx9TOTF=E(Yo7=7)!J|+IE&bi`-RkqRIY;eF-GA5N+$+>d!uUuTbxBF8z0;wh5nWXp z3_}##HGx-6!gm?F#@Zm`80JIK`_x{T&URc?BNqA#H}3L8kEe%=GvBFd_8_axIqvn7 zMaLoYX1S6OK1x27qrZ+}3lNA<#0tt6~W~>TE~2#Obb;9$4jMtK{L)sZ?qxQ{{?x++*$evm$BAu$2_6{;BWw zJ+}}<7~<0?c9X~pJH#$1^O?(%vwo9a*%z>h}fM`=&@$7WZA;g&!Fm`=ev12hEQ zWX6q)|4Br!sXQ+bDnANc@h$QwBWjz>SA(#THJ$W|Xq8CuB_+)9EY8ow;qAN%5ysZbo`@z5M!FDkWUH?-dC7)%(Q8KqRJ1~heoMa zn$wlnZm9D;!geL+4JzD9iV5#tDUZ;8_-Y~vu+aMbgv{sIHiSLKJsqZ(eQ+HFT&7k0 zxhw%gl?{7m9_#g^tg4r5!379@s5n(H3guPL{F7rr^V)wAa1S!?lf3130pOV97R}#v zwz4b)zjD>!{*y52sNWcA>U_*@ec<2_HObx7{1!-4dv`b3K*4$5H9zmj5HTTS z#v2=Dv%cNTLoyv-v~$~+a{zQrN^Y(n(&g(~J3a&Z zADN^7Z2v-hnEZziX31@2feisq@xs9-JS4JkeMeU$4 zaTG7#A4jw7A^eYjMaEGmpO`=lNk%Jc7eQ2glWG99uir+slT2EJa^jwa`C zfBw8??6SH~&{n@YGRdvmF4EcB?za2wncu0Z*2hwg{}JIKVmJBvLGrzT_tH?{t0I|G z(6xTM&KE}|=j+7Tgz@6_P2+DeicaGw@#TL-c?=WxisIZL=PWVUQy8O!y+fZ0QL-laZg2C zyPc6rM%A^VI^R^&Sfm%!;$Nk;uAqIqz`$vNp01bzs)W`r+mNpJDC%2`{aqo2(p!<{ z608#c&ShMcGV;4t(s##exNwv`W?hMfYw2I8jJ=MV82VaU?)qvJ`s{x~-=U}?|J|Bf z{fJaM?$0gmg@DJyp7_UcvQfJ=enEZlf|*JlKRzpSpUC;Vf@7MX+9+UJOb+D>9b%e_ z-#2C#?OH{dAZM>ltrS(fJWQHztl7lwGQXTJ$H+2BJpLZe^t$e-%$dDIdQYRN&A}Ox zAj`A#K_Z6V`@m7W{=u;eJFe}b%j`$QbUwzZ?oz4xM zuy@%{pPBFx#-h>aR{!-giNgQqwX)tICGug3PHQs?XqjezJrp#*?%}xH0mPoXTs-TV zoRI~2Mh0u_Sex?QXml}SeKc@7^s59na=Yfw;1f|?b}{m7wzG^h+qv<2p}YJnOSJz$ zU#iBc0Liw$X#MH&vt+1Y$@uvm(9=D{Oc6)^PEp{y>lQphy}`6%IgJE8!<~}rfP$%L z4uI=4Tk^oGeo^9WnO$o+Fun$(6O$ zUs?8kW}J^Lbxy-B4xSd?H+9rtsggP+uX?+-{;*k#bE{0Ls4670&dm}PFZy)0u(;?4 zQ_J?FzOcJi#MEquV#4}GP&-#U4~b&Ix03w}le?1ygfXR>z_NQ`;B=pMMKY3I z=l)p`oaJq^|5r$G$gzj(z&Z6V$`}fa1#Z&);Sy%`@8!cgA(8%l1v<4%KV)B1kLuv* z@61{#Sy?3YbZ(1C)a8yhy}xlRUj@a7D8`efp99P{*dkWf=a+`@I~`}BgV~T8Cve?N z;%f2SN1Llr9t0^4{cf!L0z$t-x{W&r;o(ZdHd;AQdY{)Ctka*iqw9PC3^KvXLvik0 zS{2<=N#x=5SME_cAMy0JGr`MeG^#KKI+^P0QSkvtRIIzqc;e6M;8%})FHEtnfenub zW5Q>ef1mXo$Pvde5l-ey-%x)4}g%n z3xt)Mp5FCRe~NgFN2m<<&BXmAmfm^2$@#Xaa@R&jx7;R)gx5mD(ebdUB`K-+{&GW1 zr=FdNp|NL{$cB`oILh~Rhag^9SxEWj@%Oq%pdqp1%EKp zrruXZ4?(`Nra&Q;QtThprA{an!+&F2mmxb5vT(&sd2kQxKv1ZR-8a0gP7q-m*4L$Tw5T(>;k}SKco>!rjhw> zL;C=f(@y&Q!1-8??a37&g@f|}NO5epJY@I0^J3(8TSwaJ)57D4UJ7e$P-#NARXoS~ zt*XREZB0@Z?XWe5N&fM0lCj6puv!2Sv!JxL%&+*53yqh`pCyITDR_89t!txzuIy0+ zDo#<#rx|2p&2I%1?E}@xwj?6{x0RshzNuG<3)=hRoDBKH<<8Fo1!-oc0gKFP4n*87 zyL~;mq>I{smyXoq>~u)Sho_{i=_rBXN7B7ctJ`lK(~tuak-GwEhH0d04&QGxN^9O7 zw#zl?OWhl-e^QvL14DwNg=g1)EpmuGz9S)aK9Br3!@b#~ZD_o^tcv1g%eEU^-7Pg% ztRm0MYV`%@nC07zYBmv;o->fVGbNy=TKY$h^Uxed3NLbQ^`$(dg;2R)m}Nk-GHjluPMD7FpErKaEjC`p z%U4=49*UGnfXd_D>afT}IfBpcI326eQe~us&rZ8lRW`B6 zj}mHg6DHn+HcM7#sUI0)C>-|@*30YILK>CSaJ>u}YG&}^CoCQ(d8m4_bbJaNvmOW; z-w&fUblIu|MzT43YkqsmV_(J}kULPtG*5p);C)ME!?y>jvzLf|0I1_A_W0NJgmmlW zLZzHUVD?6oUFMgiwZuC~!ge={Nk=zKk)Xcdu^br2xJfC|UmUvH+>j{~f#ve(TAW3^ zG)Zl`bM5sEAFk4Ej%eNjGr1oF`+LqspR$nx7>||LO4Xl)Wr`{Y++DoaWU5wM9Mwcy z8jGid3m|KTs2Ih8`?9p(c>L0UAj8{|tf~p6WL|iC9`@Q&kvS`mMffL&GP9XU;Rpz1 zzR16I42F^UoERYmET)tFXI756iTtczDwfwUhUkjYV6n}#Mc!r=W=B`MG;Y3Dch19a zG}TAF^tZQo)eVET@~IzJF1AvsN77%SiK$5E86KET$h zp=|nxF4ECy^SS8ho8#+r(DQCEy~f^Ekw4K%cgf(_nwNKJj7ur1Z`7ntwcy8}gs<0F zj4L>J3WhUlQK!E;-<+2hsd8l3qb4iheidPd7O`kt9SxXsJJ(YSc8m?pt#1$JGvYn4 z7gFDsqSN02xc7q9d?aHd3~Wss5S8dstw*^4PF8g9e9hgD_N~|a?kwh`N~NJSSr(ominKI zylI|7FX6tn8f@&t)Q)C2S84B=Dq0)8_o&gWh>7}knRVl6Wfms8S#L-L#~ZOXdzPuH zT=>3e{!RIfF8%6bJJK^!G80`@ImDcNem>~JjV%_KFQBuLc%8Vz|m?($&5(UQbtvVsyOwgLh zK!LZrLg;!p<`{nNrf~%&b0mYh*|i&I3Y;k2lH;%;>URLHZ=x-|6V4Q!jAjdk;wz!; z_J(DTui65%WG{C&o4-_3`H180sRb;qNHX}qrq~g!zOFL zfUw%VQZw>Nb&5F*v8hps=K9joRa`P89Q05DOyd9vnaEo--i~5!U9C!N{ZK+v`S~%N zh|C>9gRbzh!Sl^#O{Wy?&Cs6|dwH0hqn+BT}5fEQA z|Jl=A_vw9*;{UuZ@Q?M%Ij}qis{MqQwx{>?wAUL@VEfqS2emvsF85v_W1~L-u0rR3 z8~RE9lAu3)4AJk&F^$hfuVdBB{wSz{!Q&RSqmJ-tF?>y?-vq@oebq9|Ka`U_%Vp7) zSibD=wyC8zH+P=cqG5yfHZax+ybza*{KOCAlW6*0%-K>Na#$6}+~tyPfh0RG5y{3r zSRnN0xqjjLbGk{WgbG;Fil7!TENWr{ED;O`E%%dgkEfNqb>E*s8~Pv zvXrIF7niNPjf-R3e4nTL)=q3{xi&$1qdn0-p$~qB<#~DZ(iQ&1)+azzpsYYXJ2xTS z4G>v>FO4eMcG>e3DA<11F!^DeF4cjv4zTmFN97NtA$n zImra?;F$VFy{thJea&T|?cD6lG=dgC2_HmUxLXqL?N0b!iLD*3*nxk0b;WljaGjx$lkVB*%a{qslxogQTa9rjavBt~SW!wk?MKN1r) zU`zX07;iM^QFHFf;K@)CkI#COhEJoFLYvgz1U1nAC-p7ZZ;RjUm$Ye{Td@4_O0u{; zB>NNFm=Q|0E;D7WI;+UP=ii+x?MFrcjDyo$q-8^pC<(5k$c%U_KhmMVY2;bcB*=1GVM_|S-MU$QPrzED?YFjWV#0T+muaX8m zOST#^ogSCxA55FLcevhOVf=~eShJIVSwdeuZ{51+ZIl=538Z*51MEt9dUIE=_pQCG znYah}+L6c@E@7AP?h@|OU;pls|2tYfYYTCY??SBqX@Y``l?XRRVwKDl>6jGzVb>@}xmW@{8A1x`6Fn=W;b^r@a8Xg1=8LK94BdgCqjrTQMY=A` z!<%16CN<9nD07!GcF3ijvi(&xI#YM|_LSI)CJ<1?W%S{o2W8!H8#FYqOOyMscU^@A zyJ(r6_9;;5hR~5?;en8GirNupV2|9?&VQf2w6XILYz717ql$ASb(OfONlsTI8( zf-4qz%rwMMsj)uZgPHtGcp#O80-bQgqM~{0;bxNkUys1mYXYBHt{l(sjtNIQ82cT% zLv3Jd@x~4{H^BR?w{TgZ*QI9^dKo&)!_Faz<<-z*VT(Rzaj2aiCw>rbhYTJP*Thn{ki~&adtL!}4D5TYa zG@Acw>@3`xe&4@M!-UZwoufmMZrBEFqeqBzN=u5Q)X0z2C`B0|-JQ}Xp)}GdAfu%P zM1T7}f5CJA3GZV&?)!RO*L9wPVc()+KA;mu*Qf#O1uriOR1?s=yh-;ScOoI4JSP!&L5`xRe3$ zR9d_$w7VG;j+BQjEeHCk^&$X1I^UilyW_V+Ib9p_zl#%5ULf~qAoaXoU zn@r+2*5kM%lXs*1odcvCO%TkfO1qxGnFgxrpqMfwJ@UYLu$~OTE8<3s(CCDzk2S0j zCa7)UxYQ#EC-JNEIX9|@h|r~Fiqw@hPd*g{ZHGmPwZWp`;*KJO&9W`ey|Wr%U76HT zupwChHVWp${oVWU0@za)SrerFR}hVJ1rWHl;$@RmY*Q&FxS};1oLC%8L8phls5lwg z#gjiciC%BIgs?m(bXfoFMr3^B!||aqRj;1vwElmX?Nyus>t3SlHW(xPTHx*5jfeTD z|Gq>=mzh18zt)7{{g`G4x@eLs3w%`*a#hN<{i{aZBL(9flr`kN_DtJ7qLxII!n%6E zH&c>sF28aD1(uR`f)1dG)z6yUOx_?`Dn91hTRK z?rZSQlgIT}4H_vnn9V3(wpxiFhW36Lj>YW7en~Ei*(ww>zQ?@^*2WI7Tew>IAob7K zuXca-jdS(>(sSUA7|RwB_rjW6sR{VZPs8nR&l%gZpzJqN_T-4EV6E4ibW8FS5JG~{H|pa%qlQCLdqha>Fh z71p(1B>Ga`j@BVZ&DK%SYg1|oaP8k6o4=p$f6DgwJhb$VJb|kD;T35a2bcZA&ZLCJ zbM@ZWbM88HdH+2QAqm6T3UT$MU*>jDoM<^to%gp>X-0T{BDq?eYA06k|Lxcb zx$sUQ6FogU=xZD#Y*IoO7LoNO@PZfUC@GyRVR{|C?@`hZ1d2GyUVt0A!Hvs>CQf2@ z&qg4%_#%6;MS5Y?lb4=3lR;OZB0>VWAM=c~-Bw7kLGNK~3N{xv1@4lZ)$;w6MmR)tcvTv*w*168O*edS)X0tJO`5(`R>Hef52^@aO>` zu3zN5f`d@fg@?(AbBVGl7xw(e_e^ZWqOf@OQOnQ|>4pl~?C)~Fl0T`=Ad%k#+%0h6 z5R&Q$Zihd~Wa-dZLWe2OcRM$;lrG6=%_AN8Kjib0jw(0^*7I;2N~RYyCBDNicIlh+ z_IhpaEV&w1w?hEZE7wWlnbOHqe0A(^*q)q;kkEQ?XGvX7k2O5=VReLmB!D#7LGg+? z>0cY0vq5$?34EQf6d~dGaEbqdJ3Au+s-s*@tQ5atd#3`PdibgGaafH=6<7dxTsIXL zn^@q3)$G<)Fz!wd^hGuNecy2wMN{INYm&W4m>o;RIe^yOj#fFG;&g)T4|9OtpAs?l z%p2S-C#vvFjqG*VAozpOcyuCV9J6A@Mu)%U6#s4QKcA29Rrg$41tk}|ezJRA5CQkz zo}{$7K!KC>F&wes*RR5#UhF%lVj_dS+>4TCFg4%A1PwN*8&N7Qt0{bu=FUC0YLeI7 z6&WL3nD9IrF1oi;WO(^bLxuN5J(X=ef>wgn(h74ZGskv8oEmDi-x0@Ig>xC}xzPKr z3QY%-{#>HvE;sr{?q`KrS6IQbucP)r4E_tIxuJ2BHhkip3}Z8x*-adjz$Fh-H;+FS zr+(*+c6|!j{4v{WhQX12czo=+?V^l z&M3aAneYwDGuO$C3H;@=!q+M*lU*%APCxwR$9&RaVlg^=3W6Lm+Qx2DiMSZ#)hfeN z%guxs1~%a*Ja|oz2Pe@dlyvx4kOscAEv92C9K~%U_TdzfpdxlPZo%x3upL}MEVS|L z7hBu$;WMp}6IIqM9DMvMS;r$<5C*^xT+$TcJG;SK`R}9xp0y6-vU4*c8WU*a_$oCj zOYj?hd}vZ!tHHA^ebZH+6iYlUbVhSR;hM+p^sBo~X6>Pjhm>yDEPB_* z*i-%XRmc0huW^%3>d^~<8vKa>!&s1fw($D)@W`R2(~>Hym1-(|nm1e=USgc1rTeKu8S%lOx7K2C9Z zGz$qmBbZfRGLI=nRC>ONXsN|tQnx>H&63l8M~Yx?ozF*9=hZ$+1$mmY+Qkp5Q@lp~ zBN&;!t9I}?JvvpculCG-Om68nCT)%WA?wKb$~`B4Df!7j7^9rtC5z+NS5ezvPf5Mm z{r$cti_tP1CwZpQfJ-LZ98|}LLZW8vlJTbYNhV}M6;j$t?wLWuN&^yV^Y{vl{Q4Nn zrt2k=r{MzZ&4oRYGBkKhm*mTB94tZs0~%(mYoyOvWlB8csu&%{7(2Md7aX+s=p}3t zwsZHPyj^~{_h0GA-E${6Ji1L^3iyH4n$_EvcvQEp>DBh&PbnRk-y7KbndfBNgx_fT zEd^yJK5DSwgbTA|BP+pIKk}2(H`&U}TqGdVl=CgAwn+p-8(#m^@ZZ}{Ummg$Gh~v9 zNzE!ZjV_cpe(NvbldZgJOihc2d*=e8<>S8Ky%l6n`q{+s{4V-` z(-7qWHf2b+C%iOO)?G{22mi2Is^))GV5R2<1Akkt8_W}5Kk7EZviva(l^OihZ%Rdr z0*$PN|L}Pf>+C8PIS6OSLm{doPinrVGqRP%_$0o{>E()S?DT+bO2kAEp~ znTmSz6LfgEYYBWMD0X_kZn-57uR}j|9mzAqRkm6ul|RZ<3Y(MZt9NXQeM0|p5z9q0 zDmNp4sJ5TrkoD$2grUBCqs**7HLfy6p8hQ@1Jn+&sTt2OFFQ--)@?H?1Pn))B2%$1J0xZwNm3LpwQ~CG#)T;7QkHG(}nH%NBk!axrDxMeBMHqa1dq z5~c^U*XIdcH9(Q6Tv+Tjj?;;axCtb5rTq2mDX7T^R)01iM`Ik;e3gH$-_tYaU-$gk zXRj=)u6&PQOeVg$>!ATk1C`d7!q;gjp@V(6kvqav&|%L9^H@qb+On&^xXbi8|KFdT z*b@qZ;xDngJ0W(eL`1M{}yj3+ztaO?8Q;lB&u?V>pMRkTDm9@HEmlk^Jvxpdjj6WbS1l#Oik+{gQkjD z&PvXgn6@@?)AV8r{~dxXD@&fTA$|G4+#`)rwHJJr3rY^B7c}Ybmy+X zsDAWCiwW>jOP?pXsE()iwJ{^p-#H|j@_25-6W+h}2zsm>V>I(*zKm zKVdSD10j|LPjeUabNN|Q1;=c^PU*(#labkVaH8+X+{7S3#$sD;G&M8>^4o3Gr^LdbH zQ39$7f9)ghV~z-MN!Y_PLTvCyJ64Y@E2x-v{yT#Krx8mVZRJLWY2WF$#e)gWS}bin z**mQEj8Q^(ocV=Crb!Jnq8%-JsRHgyq~Mr(V|6jU+{MxS>z7(f@Lg9{!}zwB!QD^G z`-ff%0dnsydztafeRDB%7kln;-g2&TW@O+DTW1^@gfpJq+K#p~pxcGEfk9DdqGOp8 zJ>5A&e{mD2Y3zYezhxI&RLhAr*7A}c6)PlxJ;^`-lAn%-WYH2`ye{kb-C|xr`3@|) zXnr<5fyvOiRfYgXQ}!M!}gaO_~NYkUP4F`I%7;9*4WmR>$%6 zoNq@ycOC_Q_L67Y=k}y-7Cp<-xR@5mgKRjo-I#v=?aJJToQ%HGsffs7f*tDA=HV;H zO}0VKVy`*f5vV4=D7^eHX!<%TD9*+K)oY}gu}?}S80JN|!D&nQ!Alke;&EhRDN%gs86WI)3&YT^Yv(?%&5XQ_+x?m zzUP8$Qa~wRvn|VQ_j)`Y_njF{80cYfa^{m(RFPkE2~Wr^70IuefMGbsOrOPN^QXm6QvF1%eDbAUpG2t*OZ~=*Jrvq{;B!17D3+ zGo6Q90%M{pbo*5Sq1^XEr5})Qn7D$?8Pi*C6#d!V8=GnUgCD)h*r<1($m zWHfq0Xo@tKSA#jwvjVA(!b{>{$V!28^Gy+-8OfAnY$mke?nfhd#=WL%m!i_XRxrc{ z%|Fbfod0+k4_gzTwy90_Z;T#$Eyo0PU9-C;S+d)n~YVwh>T z;tRr#QXWVfS0?y={&dSsl9qV;K_f+O<*oJaao@k*iz}NXLZg~>=*V_zp_c+dlu~HW zcT7Gjp9 zECKB^R-viJwrJx`-?dlyfD-y(@MKFw+&4mQp%H|pl7NuzbT_ZYbYte0b%sCWdg`tz zM}M*<8~W{b(VGetj0*-<)A2%R`dniZ{t0?=vpYmdn0k~88GzSI}5=XKsek*2YC1T%KCO`INV2pA9(vj&>$e{sD>xA!b4`@ zNE*U9Si-DBW>PkJ0`hIil*$MIK5`M0IT`&D85t6UCgvDM>1`-}h5MT*9k9H2F<05j)qF{XmBmD&lhhkX|UhJ5Ag z0i6PO=x!}^LMht`nIb zRwiy_Fo-Q1Z^q0|!RxN7m}Lw^yVad4rU(s$gWR(x@2lzEYZueKoWABrf5!S>S)oB@ z-{Xxt)!(S_ncdqRY0bKdf?Xl=a2{uE9=MpZkV#o7apeluRb}s$NM^TeP))7-H7CGZ zch#yvmMek3OTUaZ4rGSNEx#%Xn%356L|HN)`)(nrEz29MpTN^{ilav;I_1>XA6t=ik0WKTX9#>o;K`WLLcUT2Kt-NYmqoi?%5!TIr z2S$t0U9qC}W5ZgIdpIm;g86)IUo!r|$oD+#n55YZINnS<%}f6(E?(9j6UKNflI^%? z)s1=(^a@oeLiPpv`C^_-ZkMUT`*rA%yUqFCVOa8Zmw$0HKc3XQ9uMsR~bex0qc^|HxSTOZ2lXeD{R2On%G zK1@_d03Y)c)LIDlAZXZZ;ijskdUOqqS13#Qm}Jkoch;4c+-JIAY_30{-HeYSw0p%1 z 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

y!XOj&SxBKJ7V}7};g`qv6&@y9W0~a>a36f%Q9? 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 Uc>wKa0P^`NqbOY^Y5ep504@9>IRF3v literal 33714 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 z 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 A;s5{u diff --git a/resources/profiles/BBL/Bambu Lab H2D_cover.png b/resources/profiles/BBL/Bambu Lab H2D_cover.png index 3f3a099bc7567f332de72139ef568540a78c2e6f..753fbe31aad121db442e90bd38fa23974bf34bc8 100644 GIT binary patch literal 12738 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 literal 28572 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 diff --git a/resources/profiles/BBL/Bambu Lab H2S_cover.png b/resources/profiles/BBL/Bambu Lab H2S_cover.png index 70a048d50a342e52db76e5924d55621a26f86c17..d2c5718d9546b6c58b474c4934a9405fd885f547 100644 GIT binary patch literal 10719 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 literal 24684 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 diff --git a/resources/profiles/BBL/Bambu Lab P1P_cover.png b/resources/profiles/BBL/Bambu Lab P1P_cover.png index 78c0d5d115f40cb81c61124f638f73238e405666..566ce214569b510f076456fc4a4c31d2ab564ca7 100644 GIT binary patch literal 285406 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 Z5AZA1_)vLC`x5YaD9ETtS4o-%{}1P*fvx}m literal 28732 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 diff --git a/resources/profiles/BBL/Bambu Lab P1S_cover.png b/resources/profiles/BBL/Bambu Lab P1S_cover.png index 04d179dd05d1b9dcfe67ecaeb01efd45afbee788..38ec69bb8564fb9bc35669bb53756b1013298c3f 100644 GIT binary patch literal 7671 zcmZ{pbx;&u*T;8BrKLLsC8TSSMoL1uq`SLeVG#*I5TqLvmR@>UdO=D;kZzD(7Nn%Z zm*2e4Gw=I8Gw&bg-kJNIbMCow&z*Z_J|DC+l?m}^@c;k-p{mL&ork&cAA5xJFiMT$ z2tG`YJync-004Zle+&r7&ZT}>r14cW^40aQ_YJV}wgbr7dRW^rtGZb^*y-3=*#>!i zx03__7~ZSClG6)Z*f&FcV$k>R@<74cIszi8kO^+oLW4%kMFgyrkCI3eGM|uItc|U) z{Us^*lB{*Y{_~@7au2N*^Lxt%f?j)pe$hGiwu`Nju;!H@@XA4(VN>}mI8h(AXLwez zr+@dm#X+Xpyr%U1dpLd*V3$tJ{ZT~}*0{Vph9e6LurVnKV4?ze@$@N#l9W^y|MBC( zsP_-*{}TVL{*U-?^}+Ms;=f$~Bkn)yf5v^-@<03vqe9>Byf2w{Mk%TQmYf76^WCmylY(W0|nc3OdvJ081@E`&!t> z#zr<8_*9(u+(#ht$M9iPxDsX`u8u^s$4w$`;nj#dq#xOTarDx23~P7%4zTYqmaqRt z^7#Gs_A|}g@veZES{q^55S$|`le_zy!|5n|Djeb*%y>A;V_p4^*avblGP3Jj0MJ}g z7IGRPWJBl<0)fgqueRw%e|qI>mVTY3rdn0pK?0`!^f9t+9J6&mb_HN9kH+kx&?n&lA z$YDq63i!h8j?T-&R1Xw*v?goY?Hc3o6hcIT#L_y>fKcIEZjm6C?=Dtl0_)cLsrbz4 zJv~0>)e+Bbd-KUA-uZq6fpeDlo(hfwy8ZBvH6NZbMDXGvg&Vt`dmeIp&DFc!eB4Ne zVM7aWlanVzHCGxOj2v~ax36FQnMeW>k73UeRX*>(Uh;gOFegm?IQo4|M}4#c&#oKt z2MzN}%5e_Jk!7Ly69@K5y6??KDqamC9bH4KPOGm}D5^`4tVj;9hW zJ8?85(n+641Ki0A-H21^=>ad0A8k}PI6f66q_qA(FL1mR1?J57-9cN$O<{ASKDjQn z{ocD!K$kZCf&-k@3nI-X5V5&DmEn}VF_2}FLx#K0&tvFq3EoUfJ4IO$qm#tbab|Oc*OkGK5Y0o)CgBpC(fNJvE znycndOUoxFn-xsONvYeTZ%v+O^eMS&0kwH=NBn^hvWy=5XNwJ^t~)03H#U?+7&@|G zQP0)G52JzKy)14L8zP$H+H-9l&;NudRbjGjJePfBDJtbR*Y7*BwL7l%h|?54w?i(# z+5aAq_F9i&$lUSVJL@tVu&3nX*lSMW`6MTzkX5~lycUa2#IER4o>sTifcBL>f;LfM z|8%9}MlUCbrOk-yA|d3^|Ftp^thp9Zcz-^f;r#a=^ZI6Z*ltLl!tALiEx$vdDB)lN zuJ8`|Q&EW8>73)x%A-ED9B;8V9rfRjpgm3|6oV;_T*(|Hnz^AWdD3?(t8hZujFmyn zQY>MJlsSNQWxR40R-s14S8*(VMMp4&3qAWo$5>O@eGTfDh@=Mg5M zm+h^Fw^%qQT$U}r`g6}#H7`2-zAzjk+t1+4!KPYZy5G{V**BjR4m^p9y0Vrspz#Hr zJ5z~?;ku?Q|61n2%nJAay#!+LP;>Wu4`%gyjK7`*o-E=XAH=~J!LXN2rO9?SkyFPd zF}9hRoy99m-!V5cHlX4Sg?3)vzRS*>`Y-4uaM99S*p9_`?_3m;3Ed?xhJ%EG&$yg3*iNE zkXeCX#i)^0K}XPJ{BMeI1rCe1`WfMua^R~zsy=W=!$`s31B+>y+l|9%lycaj%rnYs zcQ4*Fs!44MPk}nVo+6hu-c$z_VyY8%?-N&MHg?i_5!Uk~GutjLLZWr#(w}W_QBUJV z3iMk1GJxNMQfM%S>AsXQYmK?P$;;!g{f-ISFkd@QzLP_8vfLz{hSeZ(6g$_6@U`}B zud5+&pXE3L2SBRfX8a7xwt#bN$$=|e;Kv7@_wJQ+cUTw%f)X)A`V36E&2d?_t<=7N zus1%t=8d|giGc8o!Jm3BPvJn{v_H>aPm@!khr3f!Lau3e@G)yofos|C+=jNa=vCUf zR;~3}O8n_56M!KrBoe|%vTzTE?!V>!d(bpxv}iJBn|V5S)#SGLV~}p3!G+WXBX4h( z-Py(#)9V}0u0etb5suF8{uZ@(RW%KbH)t0*+joO#HmlFw|Qom9W|7Z{P=UYj|*|`{EKY>UD+eIr;s%{Yz9o z{E1!)n*X9uc>~Y3PI$X~A6b0Jg=SF!w z+8$#ow0Z{e{eo}$)=@_A?v0IDGP0Bsa8PK*^{5A<_5eOMiQs8bIj7&DRE%0yYii@o zgpb9hr??;DJHO(Hr`Htu%QoT>(%~l}7j9t?+l{R!F1#+0qpU~@d0J}Qe#|7RdxbRS z-xxa|u&RSALTpemIJb)K70HHfVOYq6}XF1}qQCkNCjx9x2 z6e6DL@0+{OyI|A`V|`fT*=n(`^^x2NC;Fgisz^aMm?YC$$$78>-O_JgjBuT7f%zpD zF>H(JLZ3#BY?3EM0?7j@G+Gw)R*pdXGc_IOCQ01KC%E=RtcKERB$dES3e1L1D$!F{ zh^?7f+qrHLk9(@@22qh7pag0--)W;;pY!^FV?|G0ViGx}ABsa1v)~n55KY}f=AfY# z0b;&%04d^X&@8+lB6!&lGP35uUXlK78cJ!I}{v~`gi7rAD*!k=2sfTBx6I+Bshy_W&@XAX#&&3vf^ zn1D3*khj zaLqc(_Xs+B{9X^OFWj)08yapLT0nb!t4;x^g*2(=kOwyhgEc15*;k6E_DE!(c@tUKY5CN7=~HQq8Y6iMEV)-*3`}}3a0&C`B^;7L!~=5l z^7qWb@`G0-stB>q3(eCk&c&Vv1g>wPnrZ3O7>)z@czukXFb&mG+w{|*CR0r^GNkRj z5PH>1b`c?*E8p*9kKe6$k-kiyMT2G z3lv=ZF2(hj5J14UDgWDbF%^|ycD}#i?k|xT{}`$m+2tFS>qJ>B`@8{d;7qtf|9dxt zag)8NZ{*UtAqQDPX9%8x-dnzD z*G~L>mh-n?fl;#!@F0XFRc+7=`G~bAmB5Eetoaz44Fg(*JTA)kE@zfTcNLd-6ZdMy z4t5&B*SBqIC<1jGEyA4?h!BYi3 zm%lP6oBEn`x9m=vc`#`{%z1O=JRE^Ql_yr@3a|%{jvP}%+IrKBlAwVXrjZm43`-}m za&l}MIn;*Da}Cv?#<5__(ItO9DM1iXP`5n2fZ`9akoHT2ze?60&J2CX2DgM0+aIN8 zha7$@Zl8O^bRODHMHbRgI~r=p`}qX7oi$C8hGrEaMa(YQq{nq*#-AFFC-kWKiRb3GXx4swAkKEdJz~=dzoG z4w}lDUu5q^xv5sQ2+3DG=YYVDl43ElkE!hM^J)&>IxZw`Io2s!O(6mEx_Jg6mM#M) z>rD4$KXQZA51A@ve~M}Jq@MHry@mb|Q5Sd&?G4lO+Y$p#CHPe#7%!vC>K0bb7ljE+ z+Y56O^>~wG!+#4Nq?yuUddymig1k;rB|^@qwMR?!$@t@GjqAIh9tf(C%+Sz2BBHCwgO?*n1%aKHT4IHFV(yPec6;|LkJ*7@Qu zFZ@!~y{z~k%=K4shqP>+#xkbsiNqZkHKBNx(RFJ~|k^Sor-2QvDNp^Ou z%%qsLZ!OM&kn|7%?@g6=OTQ8{uvfv@y@n#@Ud>2+RyDIGQv4mUq3tBF3b{Utyf_n0 zEa6Zlr^N4A8!u9b+|QD*e$GFhlqD!6B!plZdX4*QL51p@^b#2Y{-%zSD32wauw(EM zF4ma!FG?(~!c6X)z8TcoI&PZU(RVm6F3uL~g!HwPzHGwIJ0Pwdnc&M0vUJ$@0b=f8)|$-{gRF+`qZvxe`C|B0 zl9JS>4a>7gTe`YSI5Q>;3%;uI9xHk8&OPaZw{GjVk9@YIGi@v7Mwe#dflHhea%Uv_ z{Vb$UshZVx43ySau``dw_U^65Be``)@Vz|D11Hqy(lqNoEJ7_ynHV>zy10G%XDnmwM*$uOm0vhzB_oN zzHWe>U2!#BCv}r+J_C!D$jOsP-6F;8H)^mRIgG{rG8{CeMeRp^s|&XHsZgzfXf?|ui= zIdBh17W~-MePL76kPUM;^)fEO-SJl=^V?9*vQ6DjUp8J}T%kdJ2+|<+3EJx;tQnn{cGalSBC?+^@~L#_ayy=Xd9WO1T;4F!A7qjP zd3k$t>d=&##j7Yi#(6xB0w`|Mn9D;sa(%hxjr{TK^SvqdKNTtA2)($7m-xf-4;YWMc1bixnSUpcUJasm6n zTsf^0$Cg-n;JO#>Oh#(i)cn$lDE|%?=QN0LXW<)~=NrFs!aLgUMY^S`d1JFq9?rwt zTqe8gmT*ccQ5X#=d+1Ec(r25uS5-D#3JI)b%3s){C}NWYUQSDevhYW5ZswvoUo-W# z_O(hZ%?F&WC>wAR{M_3!VX=XQhzn*kh)Krh25#}{jzKO>W z8s>H}=4heESHvp=o0<(#W2w96avyhnubMtcEXPeO7$^L-xSY7xD8Y_+zA^`3XChI% zug+^Tsu6AsIDmwj_e-)nrfQvw<0tPt!%sX&Kh^Q?L4j%ka{FAd4%z45NXZ{ zX>X-8G<@1;OqxSxjQxkzTMre=}-i8UCk$C!zN4cv= zmq3Z2f?LK+d)2J9*nMDwG)h5SwUfn3w`kK)r4dpIy%6ZmI6tgfbH{e=1u-c*eGk^WGGuAWXIpr`((9l<4Q zwJFY4R-Fapi_=b;nG+${F*8xRdd6RE>H&^z9nAo(5J1J**&X=yEE@6RPfI=vrH|8W zYIsO=cFTvX=4hGTv&99am1)d`{jE(6U$5_Tk}?@t0=P)gXQ{=OcAh|sS^X~_o%f4S zn=&s+4U~NXh$zvUlbh?wfUCC6b$2IWpT}3R_5M!MT)M?;CK=qt6)A!4&;G+SUs5mL zI=hF#_>^m2NtI^uPgS^w`t*|%nPHZJmyOK$Acj|BEf>s?ZnJxQbdgycN-x&5pfyd9T7i6n4c^V}boDu%j|vu@xmqm2H{iHXZHn&g%$2a~ zTiVVRxIhgLJyvYrdV0Lg|H&eSmTIkFg05r_vs&jFufPAXS@Y{H?NzDbOlsY>$HHct zj-N1+%<6q%ZgYl7k{Ot#qN#6MVAU{Xh7v6G%2+-pD{|zL3XOz4t^YKSCeYfIBz&lm z$%S{AK^7iY;zuF76K7i?RId7hlXlvs?+kz*DO$t>ArdLQI4KLc+&C+Ya&*oZpMWq- z$2aMh(iny*Y$|t4jcCIXP|aLP-Y*{`dS#w~NMqaIc{-dDl{P{dS>RL$4Z)i@6*v3C z`XJx3zkv*SxS`t}Q&nkD&|4)ABvbdx*hN`kdhAtnRZ0o_0bZ&6dP|%=?5r3T98h$) z_^z@7Fi%05Z9=Poam)5$fk>B`7!t1{^3X-3+k`TGswDEtuHLmch}+Vn@Cwaq(y5{m zMJw$gUFz}M>mW+2F1^A&TArRdj=O*U{26EF4;mz!m2#1s%Mb0WK+LgE%L|XQZfp=4qZYeLbkJ=*?-*!*|_}sWD{BIc0 zS4BxJ`D$-{;jP`NpD~RN$fk;Vi%XEkC4Zw82#y((Os%=PM%PqQnFq?H%Cj1AKPOHS zhs^&7{XZLe;CQTHEYqWp=Gp|Ls!Ot}_;iis&)KE%Pu$VUmE?T^8Kek$h?RcL?d2VT2p z0-dx9Gx5zOW{h@)WOt64R7A0AA@vvJ&@b8wLP2dBH{12W8c=13J|1XF97s34B r9P+;j=D#83|I0UvlE3_=vIO|3D?;ObI&e+t{)YaM9*@^l2`P#z5LJfKX@!BLZYPIT>YPC8&K3<&~A0NL6 zP@e(DfE85nPqQ!kl2WqfYb>{K-}XSJp-QDPQmfStfKV-&gqj0Qn)vPqa`70-MKcqsp8voHISQnrM^ zSmdQbp>VWVEFOU_iZFf*C;?^QM5$C70~xBoS&)XPAv}Tf8t@^)=Yb2rMZ_+VCI$Q^;N4_di4MFJ@o% zC8gxda|lRL#X|f8aJsLrZ{X?ErzVrh*u|-WbfdDmx@xl7tXW%Iv*G3CW#-$o_4Rf8 z?8?fD$>nUbSdQtM$7fm^PAtgfsLeInN1Xl4pspI2X^lL7jGb(G0MGAN(Ldl}aG$w2qv zxg5qP1Ie;pLY~h81HhmML3{g$hlhQX9klg9Fm_qge+Y3Ob*)Jovh1U@a}D66Qr6gB z8RHDlhxi)e%Xn@Dae7C~d==z>Nc#`!`8VqMFXpO=_AaB1pFe!~@N;aQ982~?$1wFc z?ndd^0)xCIsC$hdI2JS-IanPN0*OH#i)MhlrY%D-PVLfIjyeX0+87s)gkhzvHEScT ztdnS*ZPY$e(P~olA$<~M?{Q&*WY*&Vj^dq1;WZqCego+fAmL?{ImCL?h>R62^AKEXHx5ml z(lp>S($7G@4}2iUmGi)l5&jw0!2%)e`-t;`v8(~-F?N#}n={b#5=RJxeIN&LLs&6; zK(e@3VS^8%GlT4a4VOwIrE+-$`Zc7#hBV@J;0P847H+A4W%oxc?6=7#6&sA@j@SAx zTBJSEJeJ&4E;(I<){6udi6conB5PRd)cQy&3(C^c(g^CfE(_z=Nctu8by>9YTr|KG z${ku2G6#)-Is&F4zuqu)Xw-cegZO^4wRle{bTNw_1uDSzfbRnD0B-|t0&f5% z;5hId^yvun>(GaRL%;}d5brq%t?&ty8-{)bdXPYvdO&8hUpD)kAY+k2LYr({TDwhE z(-YCIu83r$%|1|+F&mSO<1ETg$%gZ>Y(kvd8<_iPA^QZ#eHJ_z$J%-e$Rkd!5FXME zWZCSHWYLJfqrt!D?kl*3Rs4yEFg15sXx)Jqfa~bo0v6z#fF*6dkT;d;xG9!PaQ_NI zS^V=oIomPpLvI4|B%Jpp-)V6rsih92L3=Kb>2A`*ea7HM7l3*Mgx1w|!6=CtCIQ(; zmZyM}Oiw&|Fh8y3brQGp^-_mOf_L$C5zJwG1JQnL`hg*&e}fyKY?AK*AIPQT6fg(e zRB$sF%YGJXkM}ueKe){F)bt;OqZCXWfjFj0pWa@kc18)(=72Qd1zaXWmwiuf|QM!oUm18nDr1M zn%~*tCs<*G*+vqXgicjYFR~3)?h5IBLra!4b#C=Mh5C{aehguKy$XF)JfqXVIp92S z31#QRs^1jLKF`Zn;0#a!S55*XdXb(l!Yc%?ZcIv{1-^xfUojmdvbedJB@HBn8&Lpp zNwy$pEp*QfqLd?yI|oOMOxQ{W)PZP=z?MyNujKqovV|?LwjuSd94fEYTF=2mIIpYS zem6=R60k3c?rqfb2_HE$U7;Iyuae|?CkfiPEhO$FF)qF(I`FC-Wsb|Ss0K^|mw}&( zcRNR5%;vF{XMqbK^cZjgDDj>JI7;_j&guUrfq#QQM*@cjhQ#1vW+Um+qGl6>&Wufv z*fT6A9r1*u`tylnFQ4B`f~F3-C1A(NQj&%*u)^+gcp{mPfzapT7M)9Tq8nCtLm+x1 zE{dm2+%^$!g}2lE3D8ulRrb%04So-&-WW?P7(&O6<@KmSaK3Fmg<9tfcPp$*%j?E! z%l9IkE*_n1p9Ova;sf78yT2_~{T-kxM4tw(BJY}5^*M~|yb^dYZD%ckIT1o&y1k`J zYvL$@kXHwo=it1bXUIOsf9}Fd$s!Ra$nWfWInp_TMlFI8TJs5Yhna>!Nabof0;gXj z$V*l31@m`lIjH(UFUM8LZaFUTf_$o^`*LL1P!%x498ki5?w!L z2%2=Q8BS+;r85dHJ}#QXiAI~bP<27Youk8UbGVErJtwwQier$My_~0wCQ@3_(d}oP>C48HmJ76Wti1)>#3GJFn@2 zjt-te<6SSF&Ly@-?h9s~#uRvTFOazi}6ZET8&_(EWI{ zmlVJEn(cglxAG$1-Lk;N;-?4=rFo&}&VwW{e;(ouG+pEtfrG%Fjicg=dmSR8)4rqu zJ`ndlwGw1LzmBqJ@TL03IoXp76#0FZhz=z45`QBWQtM`*WpqJD&&XS|%lG)$^NM;! zw7Tl%GES(gt7D^D-QeeyZpSJOQB__R3!Jvi>O#{352gAs68W^4b?(Ak^xVbEB|Eu% zGN?DKW%blX;o{oM^s7MdnY>(sbWtfd#ERfSW+6R7SnYzdfRkSVVv7z?dj; zb;C*|aN2?Qc8alIk>qjewcLx4y<&lTm2TSXTxeL}vhD~wAQ_Fsol5F zs^vK^R30c43ryeGCpvvgEa%3*1Szs!icr z=%KV#f=JFxh~tQm2^i69^X{Sd_6o@&_DsdVpC<#zdcl`q-5cI8G^AUaXs zy;Y7BIa0LIe&N=Br6Wg{U--h`fb8IVY?fUhWaz z-C3wT-wMz>l(W!IXoMu|yV|vlZqkr_lVYPNR-lA5x%(L!e|o>+ndb-AK_IB9kGK*E zY+SKU%kU3MPM|Kg9F0%tm&c*sn34EzE3kmFMVWXK-uT}RM$AwbJh*Bzm ztVBmd0ZUQI4A!I6Dc93kzI_i;XD}o#V{u!(GI;VX68Klp{bPIY1BLBNMU>$z6k6N` zZ@n?*mm zW5o6`>hXT@7z0OuG4L5*+8cFme-+h}S3vSMSW$)*y=prXWq1_sdZmwu`gwE5b%z)s z?Q{ha_)=-EHwFf)I45B+o{A0yZ>*hWYa^uO8^;1C4`AG15EgOGw(7vraF<4Z7J4zf zu^@kg6I)|FX8>m`-~&cQW>{}W4V(fnS&68hk8_&~J^l@}wb{iY%&pBrpMsJ6uCfk1 zCIM*b&q@=k$8N0V?kzJz1522y5(#vZMJ>ANs!ABKV{;jQ-HaaPS|_pwwFWnEAyVsqE|ory{#6H z+RK%w4L_2GoP8GkmHyRUFO4hC&$EJ<~^$w+NJ_BTp3EXp#J&q&-C~2AE|t807at+YAqGIjiIRgWM4E6_6JV&XgpJZ>PsoA z?k&mN{xw!^2hQfwFcMDvvmz$_XCC);vv}Irw-}B{;x#4k8gZNhL+ikDxHm$K!Z;R2 z^}U@-zOgv1K8f}9K}7vg%QT&BeA|U40k0vo$f^MEdu3Q7Z|-&A;L#*-Jt>98(?kTf zDym1Y<_ZSLsPRQNM?1b(&}94!GU@wAp&XmZD)1Q-H~`KnQ{9X!KvXH?pVn?*#{k0L%*DlB)jNc5*U#e;VYB3FM-<- z2@DH{?a3OZML&u)26k57ZyENx#d0&o-D0u4Y(l#2meuV+-EODv{G@AN zDUzIoB*8wqCI75HsNrMIs>T_fSoeqXzte}{Dd^+|4ZS^sk==GN+@V4Qw#K^|E+T=i z1;b-tej3o55@N;nPkBsFe=IzBW|RjZK4?A#dE>BV@gYFj7a&bH5DX4w7{7PFrFw<`T@U(kQ$E}{kzYu)m+My#yT|O&&Vuv0LkLJ?j9 zw8*UbqWu0=hlyIr>X>3P!%UtH@t zhesX3+V&h>#C_-mL$}`~@JJW>vnBAQ(siu^d%Dnbtl6rNW$R&6wJSlcCExz;9M(?Pi>=1qilbH3}=WUsL6|-q4)_ZPm50lj0-Sa^b zc#U@Q6>*TjOyD4aktnme(A~lovR38-#(C1Gz(1;7hBX?Z`IW<&Zzf@3>`UM<-enRiNkNJnYa}O8oV+S9=LFvSCMcu(_!!tr;KyF*08;`_ zO^>pHex%urfxr4I%H(rP-vSFb2|7HA`dvtEWQivO?KuvsR0*gN#`ltkU z5hjL&?tLHvdv{+=(;Z6SGzP{5PLo)BuoG(?;7S?78SBk%6qdW+e=DtE#RN{vH|j3E zBq0QbO7(e;1eP!&Nrk|!q0*pI8oCGf6`H=L>?pm=luVWH;xATjQ#aK7)w7J32 zpwADYypcLKZO8@Y4JTg1-Bj=NKF5`U!?+h7b1SLpkR`MO{vb5Qz0t3HPVb}o>@b;=Gd9|UrE-F{4SlLnQ=o+;< z_GceITl!}J@@7(XBO5uYvFCoj)4Vj26gw@GIr{za<43lWN~yTt3xV61of|j!J<&$_ zwY$*wAb~%+(0s7_1W-<5jjvy_Pw#r*7fFu9{F8T-OO4xGymL(RPU}>}J9|iiTq56yqqAr2uHZXwTc}BmyYzT7jZ32&U zV%@^~-5aR{RtX#=uvnD2z)(c=ktC(-mb)G zr(Cq_iJ;4e7S5y$$q}1*blOa;UK(kM`c>Lkv zA+)Di`Z7tFz)u>12Ya3gU{s+2K>U5iw=HN-c)SzKT#n`wC!ubieK?fchkXBG z@xocm6X~1-ZpY)aF1F*E(mE{ZENkAMF8myv_ToEx#Ql|~Ni?5a$hSnkWa*a;3n6*m z-rrYCeYq%*S8f9%p!U(B^33y8Cmyf_&K^b}tChU3nZ&~q_@xwy)bkm8r# zGyq+mtL>HE_xKUX$tQPWf$Jh}#CHiC&?$j?y@&RO&=Aw)8g7 z#xWAOJyQd29**SDPd>wMu(z4~gsV2v#F-uyIwMv2vEg#7j07-CJ!%ytfw@nj+syV` zAn&jQb~i>=36(KOQd#Nv5b2=!&nSOEY6s5SEV+aV3hVZ{gG7U<#SCNki}469M;a67 z^IE|N0WSABDJryW7zyZH9y2ENMC6G1xA#PAB-W0<1Wc2_FQH)8&sENzP_D~;r+Q3k z{C(oz@i-r=$D%%+*E|~o?c;4)$3JevE(9)nq5YbRUa|>qM+mtP3>?09(=ZaG+nlGR zyg>aBc!|J}Z(HJRe{TaLBng~W3qf7IH2^LYP(Cb+inx$2C2C4+At-!harsm$%n3+? z!CL~$154#1y=aMbIJ6X^Ox1T{Os>Sr%&oMGWjdBN@raZO@x|W$98AWeMBs$5&=KHX zi&*j+FiirdlXelR?rgqoe(01L?MA<6qK?>HIp}&z(y6CB`^ySsTZ0Y2pH^Ozy;hkdY58p<-N%5 zany{=3&~M6eiGEeapdNT$0HhC9124RKW#b~p5%0Q$id@lF}D$^({%@-!!GpVu?lSTBQ&(wbh$^RriI~p`u~cCGJujrgT_gEX)`x=37!nxk!VKWYJ zD7fB6f8FS0Pvf;Hg@w!K~Vi-r@Pn+=Q3dICdWI3q$C ziXVbY{uN5MQ;3Q1P!@wZt~EqE5IZ5Y5Bpi_nrjz3lCz z8Vn(Iwm=Jer1e6l(B9K)14`iE!}=#Fv!*t%Z_g5t0)Hi>6p4)YOtxEVTKG3_*OuuO zkU%71)BeM`vk83oXxMsjEl5;ok$A2_UM9ILMLixF3}+Kzd_L;LIw-x+;NZI@7Gbjl zmM_@^Np03t=$pYJZCM*I%xKVoD6Ojb1{xQp`;ymG<<(K3hNqm=e3;BT1)6UMfYG5J z=2&9ACQNGsyOq>!M*^36yXi&p%zNxflWfyM`&(;VMD=VIe2YvlOK)C-Ny)?nNKG-B z?7oqIYF5OKwz?%2rX#*j3xw(wKtT%Zh8*7|@Ky=D1CqyRsm`=rQ=P>&by$p^GyPDC zZ&%blOq|E_`k2p&lq%BXJb~$~j-SqIzkx2>VUfV2PW`VL!xDHH!hMn#gZDGHi?#N0 zSau_CJ8RvcIERtGJ0cuOR|Grv^EtVMjl(##52(48adnY&?{J`$oClbYQjPt>-geVZ-S+GyunQlTB#iQD~7UNF4(;}W=iwtVb@ z4TY_Z0r#f26 zk=?5t!V+U>W&8R9;~jWAnTWe2YQE-sF6TRH$L6uCb9?3Gx#(Jsj_D~n<|RGB)*9F8 zwqPL_7IkVBO#)l(pTAWJ{JZ!5CnsR24ZILkB(@=qGh~v@faJNNnQE3KCXzAXYL!{q zU%E*iD1s*c&PmR$UTis4wqwhW#VRjMNIb@pyUH10DzTc&r+T5h_^b{I+}Q)YS3S8U zTqN*_C06@v+ws}BM*CMH`5yQ6jmg${-XmG6EtygJ-;4xaOey;%umy&~)6RH~7a)aeJww0dn(#vKg9{AaJ0(sq&=c+b>bVH5 z86p9Yz(Ox{JZD}^tk(j}AF0qkN*V8N0~^UpcuqoV>1k5;cHuLIjF@9UhXXSb3?*o& zPiUT*x1AA+Z?Rbd-wE$YQtJ@ljq$m+M zYlm-?zz*6UfE1%;J__UoLb6Q{`P$`KFij$Gw*=PUd2_#-xdGM!oe>cUz~K5+=xaz|B5*-g`bh0g;DAmQ+Smr(g1s_o#pwNKw$GIS z8QlO1HW&X<5If!B0-!I(RaF8n$0P}?tI(+`FPm37x4ry(P?5k_BXG9_HmlGP`x5;c zuu9*lFUR|K+jJBhm`<55Dc=nzNyaS@2t0Ef7{E^4YfIoF<{SOqoxtWc@X{VqRp=y* zYQx=Mp+I}l`#inpH?Wp~6FQ&QP=;I#Dzu3$Tv2g}!Qq|Ii8a&)cF;A9H1l0acrg+f z3H((caPfdND38~rnJY5Ln5;EAcMWN|3DR>&#|8l0k>x5wJ4JLnm27n|3BM?vScF`K zmP{!#=Zl+Y1CvoogTR#6T?rguBXEF9-~#kAh`=0(&HHx6*eR1ekP2ElHVuA*0`2`e zoze`FhmjVvLxT4XBOO_VR;F|9m%yt*B;Ki-Q|^gHg?@esEZtz;iKQ1*I{8)voAg7^;)DySzKW>9)s#7ryLHV7K@Ko5z7K zFGk5!p+c7)G8DQ+C+AL??nSSfyanF*p?r&1TspD%9@#}Dc?T`Ah`?VI6}ndf!|Ffl z(h{5Z?#Ln)8rMY`q>{PaG}wq#0*l^A%gYqoHYJWoU`YaZwy$PGd;aHy<XFS)0DMnLHo5;&cs8teZ464;_bhhwS=&DV2>24%1% zfpZMlO5Y6Rcu-Q=ZaG&(+6&DRcsV9XV&^nzxdIc|)QQzAff11YL+Ao{URl=DtaV}$ zaf!tHdm~v?=+R-M__8W0H10zZyB?8q1z1#N{w+U#&kM8MV;i^^nrMq_g}+_o?NOmq z*xSI#bp}I@`DK_v97bB)2vK$3U5z(O;GQ;cR3iixI+9l~l8^CmM;U|Na8p!0=OGXY5qF5 zW2`buFLXNPZNRSca$QttEwdK_D;Y{MQa9wleb%<5;pae$gdr-WQ0t9!$27$}-4eelC8IB`Sp>d7c13o|1 z`KuUmxLKB1Bjdng#n3XV9k*gqIw6_eCH6L?omdO044zNj64>a_-z$Mx=nCO3}1$kgbYapPWGu1xcwCKOe?L|Z*8aE0*Jf>UvCK0{&5Lx z?8I8b)(f3qDNmTbf6smdN#C-Gd3^~i-C(2>3m>}LiPh5vF5o-KcU{bRD(O9pV+kt@ z(7cD|EKHNYu45e7`-5o6alWGcQ6lVLmKmt2n0~ab=FDL3g_b(85|{`qx)W-cT?idL z+oLaF@UkwLXtq>%TPR0*8{UqtBZN??m2M{gT=)rrOX#ILZW z*0+!B18c#1FYUXIIwt`t{=jYbhiwu#61c-3IQ%xWfq}<=4J!1t%9+B-23(!MB!NF5 zk)<2-_ClBAVT8mVxNS;#M*EoXoIRM6%C!KseTo`+*)NX)S9W?uTCTwF94jz>=+_oV ziieX#;CMlKnV9$eI}?+@?lr-cHdl5VMhaj8YZ=v4=;GSkBZJ91v(B=7{tI)H` zS;KP%waX>20!;#+Axq$pIg_)`fnOE9?axeepM zvLS~xpnKdW=XoMDTj*=3&}kd^U(yXU2~3dM0>#+yx?R@cfG{J1UU zI;vg@Earw*c<(ztYXW(f;VJLrX+hKaLGS(Z=g*6(%#s^$IR%MzdZK!f82$e*oP-2E zv|l}?HR#YV6O`_)M5X*s*#1GffhK|DwFUx{inLBgj_KsCL~topt$f;ON4(er-pj!S zdH|3ViZG-^ZRN+uM|c1BK5mD4X)Y6r#reyemYtpA{lY)Mh z&v}1;?>>C^;C}x3=eYg;{d@QD_!tQN;2s`m{oo#P`~9PPACBQUk6~H1@p!oQojcwg zaR!j0jsS1braHxncV090-T?3Yv-d&=%#pwaD4a;CUWf!X5lTDWfvqV?<)z(0y>tWg z=duGp9up>q^fXJ3#|M}~sJJU;tjvF3_?#Y{wHDu(p;>~g3ANopeSi<7`w8#pJh zMP}^;FB>w93?n@^HmQw#Sw`R1@C^W9yBF2pNW#DV`iSZ;)|1$g_4VudqyGiBpT6Qk zGbQ47tOp-Iesq6*JYR>PI8vWKeRiL}d|t_JllC0TVPDsmB)B`(cd|qyBGbNoBXW=g zmMZ8B0*8I#Fp`QJCXIylW7|IreIJZ1l7}xWb!aGA!zy$nG2s{pNR=1WVRCfG<=~gf zeLT|jxGx+FOFR#+J0JV=&;OznZs&dNfB$W& zP$_{CmR@Mf`0q^Ye+NR^w3tCM8Q$yfM?!ifNE$2G3+!>mHZZ>5NZ7ljhZ%qKKI)B* zL_Y5i3+}_~@i-9yrSczt{E;-r)b2IjlR0bn=Xl{)g{cip68N8g{xMaKg}_WytrN?T z<}T>CuO;83*I3W9pl=*lMjQtg+Q4`SP7qaH|Nr)`=GT(rs&_I;iN%#e9xNOrEG3St zV98q+EcgfbV-OowC<|m+R)m5VAq>VC#~F-qhQay33dRhBGX!fiii|Z3!5+-yc|3Zt z$Im9*cudFRbMSc z8Tv7JLG4}xnY0&r)i+?Qd-2jm9QQVK_Uzf}(#4Bl244cg&=YFb^XJb;^xY=y%fP(n zFP^uPLKfsZ?HY*sP7>xTX+Y=hGU=Do$|l5U0A#et#&OgLFJ@0u4Mh=sR#o zGaT0jLol>#V@j-;hUcf;A1j;#pWG}Up^dC*$qrLF#$CZg*Ehr3!!l?rI712@xGr>Y zq~a4ipbXgMEog(W>_hp6_ zLdLZ)g3qUF(8Gu^1Bb_AUMS|YiZI@e9O}gkB|DxJihZGTkiMUsE6MYuuR8!)8n|U5 z$xfHX5Z^|Mt3d43QC0L9c-Np>5B$a(Z-_d`Hki<*z_o<~AvY@S^-}s0@d;W3YwKFK zL3$<@fMVd5iTFLSbQ;*9CS{8i9+F1fTB!HLf-$hD6HpAyZt6Y}_`9Gxy`&xZwDK}^ zC{%81LW?JIGz@HjftRrc<~1j`t*p%~|GFrlfpc3Y{Tw%k#)%~z1LI7r6^NUQ8F+{n zTHR=x6)4)Wm5|h3kc5SI6#MH^Uro${K>CKkEZaKx-?6M9NdZ-W9-IUn>Dx$St?VMHdh7V!MAWU&*=`Z=5iMu?qQ5)Hi4 z-V!ZrB1T4xG{tg-4fNfXff?kiMyjgx@i~~#T8trF`Zz=RfcUT*H^92i*hx{15r7Nzp#5s=2jzd=JnK0EUK>a1YO_ucKAG_+_vDENf@}Uy8_%z zrM#PC;1;5pVWu+buTN|n#2Q$-8i|8M154(Xj)mN-@%1zWgE^r`pSK{&83Ex$4uSfM zomjCa*q4(#24=RRY{7b=rvl$EhC`%*wd;YSIij;Pp`{$ajpr#y(&Rx?t|o1lKa5-f zi!?A4TEq*@P2^~pm;7e)cEh%-P6KmeV5$s>7rG?4y3l8*15-^kTzQ(^Ik>ixy0I2! z!F!=A>f1;(1J^aZ3&$D^_wm%-fJg)Hz0hMqHpxTK>`Dj<#OI`VW>y1}>&Dx1qOypO zn}s0F=?JDWJHOw!cnmCE%s?@!#DwPRP#l7Np-a3*QY2NS9kMV&a;+N32u)VUz-D1^ z44iJGeiPb$m4Vj4=}*1%&ZT6w1eg|@{-S|O18W($0mInafbxxRGA3(m0A2%&-r=-U zDRWKe13DC6T&@u4Mn>WdHT!)7TOipMo1yLQVDZyV&Qs*?%d54s{ zrh%E)Ho+JeeH>{fO3lPt$V_N)zcGUEA2*P;PQk3dN$)=rVDfTB7t-Q zhAf{Z4Rw+_7pIa~3So zr!ccJsQ^!neHZLEGfZn>M4h97n|$;d;0ELvc>H#n5-JUhYk_awx<#g=7;!2ST2epl zTT1N+iq4XnCr%7o6gm|7293Fbmi z!N6l-$ZI4$(q(hk&6|dq-VW6!#viQO^AkCU_rM9$*K6RuJpNBDRKX?I12av%afmgr z)QQD`V&Ea=mH>72p>^Z6?XYVM$f^R(GL0u$u%I8Ge_8{3bg!&g4xC;OEW?oJApuuD zcYcrt<_h1XxzOb?#x)K3yM%czd1j(5b*h>k15;I7<>MV$c&_Y?4XkxyQR84~ zXBYxW9r+Y;@YmzdvqcmFcb$&#HHKiI5N=JcKm!wF;6BuST9h0lnl(i2kx+;VkQ>Ufz#wI%6*A& zY^eL}dS00Z)_z)rdKWD147-gncF{1xV-}=vaQq@%y0>CremP-!F++MT^cvp^#=l#{ zziPDYsnoz46WW%QZ9-24`fd?)!*T7!T}_o;0It0Bjvo|i)$>}IW-28)2Cl1|P3_tY z=?yu0S4RxmN=Ns6Hv_c>mM}1+&DOv}8Z9fYFi%$51k%N&oi0YXy99MkD#GeI{j54r z>`GZz>5rSyu=xa2JB@O==q6C2UlrBB)aLGi1}2$!Q=spD81&901eb>^L!LgWU-mQd z`$7}_gfOAYdZBaQ0M8R${#1COtp+BY6Bgvg?vlj}+X$*Hq!?ZXonKyjzL2#hG^v59 zi9G4`z|z?p9%cub*dco+7N>y$q`AzQ&{IM>7n<^@%fU^oD1-cRqm0aWH3ef#XFV_; z+1BfPWM6mCH zhiKsLYb5HU-rU>ax%ZJ0^~=)0Tv`BYLIaB5%utL~gEF@!AJYzPSC^$$3R|y%(|ck; zc^M!0uH%?f!Gsf9f8X1NQM}L zAQRd}Yr!Zu-JbKn(E5qJ(7~>hq6)TVZn21ayEdU`hHru))V5NTlPmO7LPJ+%g=XEd2G4q;jg z8DqrW+xWa8mb6K~o==^l?zKIp`%qlMQn#8E{x*TJN@nGDu&luua8uVCc)-QGY{A7UPc+!JMyYZ z3yc^hWXAp-If&1Tw&}T#F^tjI<_?t!{r1~$v-@6AlQ^c-zzNT>KW5TQ-h{+@Qb-?% zK%5|Pzq@H|fUzL7$6e^t^{4meEE3PDn+GBKitbtpYTKHW_BH7-u-t@3Y|aZkB_#D1 zo6xyi>Li#t@=kjKX9js}vA{4vHr>Lc)ATc5BCW8DfVo^*DdzU+S7}|EMY_&Fo>_x) z{+)A?VHMV~@0t2CdafCjRjprx+!vZ)VA>0vp4qj{kk(WsAJb+l23@e&$1X7-TLVp_QJ(u}+4WoA3qI4Wylk9%Pk zQ2X0oBNQ;5darAH#)h`@FS?q$TlOMOA8S40UMiC|A2YFLnE+2aYvmPh=sF_cUS zlBcU=h@41(_|=I!n$}X4>BbiX^L2z#!1#_rOXR>G?+6wzRP4C}T(0MTW9aDayTi0# z%G%#HJuEVaLmS7?m{2cJVqZYr3c7l!+PHyY;FIWumcVFMBjFhMop;`08;3dqW%$zvi^ZBoLKC%03Z%#rZUq3=Iqovye#gGPk~gaj$VnI!PkH9; zlw$uUu0cMlrc}N@{a-$?7Sj?1U@JH)4{8p8$b{B>p+8;mor21QmO8PdXvb`6r;IgE z`;RX=?bCxB$~(crdbv6ont4qaq=ip6RV1AJ=}`01 zJ5iXlIPvxFsSkwWIpCIoofeMm)2{wkc#9DSPiUNjidow zKcZ#lSVed+c`*56=IJsCp69)>t2B`YcVX(is&|-0d5|1qMWHb<^R6==#kj`M!|+vE zDZvx|@a^NDr8S|CG4ySp*1$EXf!i$dSb(DqQ-wFV7#3DX!-dfBO)~9*58$bI!T8 zb1&=QIE2l(+l94Fm=cAWtOowM^ZF{Y-u21xJbw z4-eb;A^twB4sAR zg=E|om>$Y;aZK+S7$W3*TagJ}Q_S3e@Q%x%NxNwnV`LLKv>JFU7~@pJG`l>m!vLin zLpsE-K+Ay^~FWGQWKkJ->!EnT4#S|LbIKwE(T3WSu$Gwd~U>RmF{^5heTF{2?--OKIRCc}sx$(1xM- zSW|7Yb{$n=*gkYt6J;RsuM4R}nZ^sFaISdhQTI+YT5#Coi_B+CkAbU-GnwlXx-+GS zfddVk-6*;F`cSVX`KQ;H=Al#_`Et00{d@^!k-A=8r#~(h!8y3Ho(H9YLlau^4tQ*o z?8`%;V&He*eV4rnI6k5oJrFafLMg~6iRiFeL9~pVftG2gQEmH-=~Y4a0wGSH{YgE##v=yIODSgIj|;e{J}K@5d0!MX9j%4UG9Zm1F4a>t?B_Z*s)4=TL8PGGW3= zff|^9#S=lWvAfg6X_J|n4m@su+#J-ak)&SeIhxSJz~3_qVG&}+6egPz?Q7&bFEpir z(-S#pNc!rwL&d=0h0bo2Ie(pBg3Q~V6vm`iFHM2w`k6wS8UsU*Astq8{o3UePC#Cq}c?9n9$T1xa~4B&71Cz^K7%BP?^w@9XTkJVc_YJd%vUgpOR%2#84ADt%3FB z0Yu-k+IBQ1w4}i~4a{|TNxnUXG3Vyn7#SvaCKfdY_L|toYm&h?-xlK|%L~2B81s=! z%bu%wEWr>Hn$o~ICiF>RV${IJ$H0^Z<{F*Hh!17d2VSo1xia}s6FRMdLoaj=^X{f8 zz0$zcp34@4Un6nl&lyGPEiFQlPLgILKt^F)!vUlknDRnXDDvE94$*6*Km&^!htkrV z>{dk@Sx zu_T?Wj2X>eCmVu$$VYy=Z3~8&(3-i>9P@5-+iL49eh=)NSVK_8i8Vc_b`hgM5p%~- z6FRMdr5n1}J2`QK>VIwwOeT_OVD3WHxjo8Y(`}5`&z#4>jDgq8W(fJEgkECq_G~QG z7?^sEvL3R(l_6k7hC=LlqAu@_ppt?afUefPuR%a$<$ zhunN~g-iq27#HmgePYJI5+_z_DkU=hojZ3Ls+1j}r$0~PJ@v!}nXkh88q!Tp; zmQ1A#nG&TWzI1mK{x-%S`FNLhaup7X4c_7y?VJ9LX+9_oTnXkrR~1*Effbw~#2VNE z(xQ}%2^$_mmM~rXyLoo^zFW@7F3 zN+k6dSPLjC4*SS4S`^37kW5N3cOV#4LMF)P;;JyJoBzF76D*{V;V5WJaxd1Bi~1|u z7t|Vaxc$aAV-`h{+rP zXFk)9IfDE)?g7ks40s*F%RtWplb(j(e_%E0p8|aw==(rdfqo41Q=mJQ0LZ|Sk3*Xh;`!C>8*KD4zaEGbJp7aN|OR0=39MvhaX9w+E$xBS5opqu>k;?U=M7 z_d8@%psUa~FMwt}gNzFCN8r?h5J!!A2IwDwUIDrV^#9dBoVw?pdp==|`BjMDgo`bp z0-vzV@o_j#cBsVpSQ@be=~U@MN(h#|W0j@mSR@EYfg=$<05(l&;lo)4+_U4#$~n#< zH(%};c);bVxK9T4_z*Pc4G6D7_#80j(-8j>#BrSZ$3W+R{?(ekH>^hec{Kt~0sS}7 zUjaP!M@ryt&LHs2fe-Y^Wcns3wVEYP$SMa7F{2_++ z_cfsFK(9mDuVdU1{62*67SIytJxKo^4&dSVPwcVxA^v_8*4Th3U?4oDU zr&pCKjw`?E242=3L z^wHBmU%Y<(`j;ThSAo6*^lw1_(=h79I2HXy=6MI`Eg)pLSAl*2^ditd1HFJIfDQjC z`28HvH-Y{R=x>3(Vd*T;-=Ki7=EK*4p0xBe6dFK(4h{1-y2P<@a3Bvt;!zL`ry+Fl zuexJ4L?QDy=7&6IApR848Hi(uLI}fWPzV8i3+M$P6gCY(90k%3tbjQLLMe$7^(N2} z#E+~X`2Y#xO=yJ({{9fC5g_&CB|%6E3CgzzZ;-7@Kp^um7WB8=(X2gdkD^b+4kWVN}9hVaH^UIerBn* zjB*>vO0@q2T4HGFe}Rszka-j6M<{G8T?2Z}(tiP6wGDn5=zA!Htl;?vD|EgE^fU?< zD@^_Z1qu)fj>mz?SHi>!5fmUOXdVN49O6%+ut0J`1O*4sIiw)|910N#FGBdDC5)pr za|P&Ch+hM`jv-nrC`_=USV6J``p^lHpq*-a9Px46DM^8X0)Y}DJpyI05J?D?j&;&I ze5v|}GyZoxC=LZ*Sa%azAs;|HzmAq9j9T&e;B)>%AoTwJiR~9J0UctW8_WDHfw?g7 z9N`!Sg~&1zBJTzQ4X*&b40H+TBGA78U2qnSHNnm~OU2R|D^MQ2 zefu^Fi_@0Af`r1vg+Pr(f&vHV3=mo#&tNA+!2$GL_|TS0OG>tu&DC^UWve*X%gy+h6X!SWb1>9Vn6uGC8q zP$0OD4v(IE29P3kr;LHlySqDnya(TZ z@g3~zx%P9ipIC9Pd)+%!MM(zx4e1*c6clVZSt(T%6jYP{p4YFQXZrO=J)Z|m2U#5$ z3JMm%e-A23YC7@rBq~f*MgpaH@WamY3%cbe#ZM?GWzkso#xGG&yy)emKB>E-9yCG< z&8IZjYAyvYTpRU$JEIOdIvfG%!=V`g#J_Q3@Ek>iR&SRv#ICd2gK?YdfmMTgY@jeQ;G&FeZJ;%}}2dhRs3JwKes~w@r{QrI9pDqF8YM0n)>=Nj9 z+H`DSV2AYDHjnuy{*Hx=!x+>|_HR0Vk^aqGK=Xj+h5y#T;9HvzYfHYTfdPxFO^?U9 z78ldJ&gq|G1v5!{f4*DpMvNhp`R}fd>~%GIXA`vyZ}RBzUN`JckD!B5{CsjU=+gYf zPfCDgfxW1z$4E6qs%u=~Or@9B*?rFz$Y4Jz10+=b0|VD}C>V#_PAT2JuD)4iR`Cxp zTZ}imI&TfKvf4nxQW;Woz6fqF;%N>#_sPRVe^DazJ%r`BpL@uVGq7W}KjbaI5_B?& z&!tX?P|CCsJd-Rxu@+&WM`Bs!OSx84)~H2fSKw8%Miv|7mB<{i)a*qhE< z%$h!+qPt#9Xz@PHl|0&ia!hJZ&D9c<0X4+Z!R~4D^il4xgrsZW1?hiHvq-air>-aCY2hKg_yx zW15fdFVvT$4MR3PP4I4=vleR{fKsOY`@P}itgSTU+Apeo%!BX*UweQJ?Lfh2WUQ!0 zW5Q?q+%eNeR?o%_dGV>^Wd(ESljGH)2<&^BYurY4(?wB~l-uF#j9j|P7xCK*O_61% z%l(wiX0I(!8WG&DNznWHRMWgH`{o=Wwy?k0SPv_&4Y94~Y2Y-HnOCST$)B!-xWW3M z)jU^=UiL&oFS$-~bhdxXU0i$Zj_+)?w4#yYi=FjzKUMyBxtQqqM5RrpUF0#}vuN!$ zM@x2HsbeLGgn7-7S0LRxcApdZ1?h-q|8~1w^YOak#Y&FybDV`DbzCKRT-17d*>vxG|bltY*cZ=}5-9Tje z-cqJbHxj)j#Ft9%TJJIKx`Zl@E6%R?6ucK`9NC|(p9DZG+MrGIwnvMN15KKN9PvM^ z=iwkXig3Ny=PlBH3+vjOZ_nYg53aT{r>bF@%1v`ULJ67bHLsg zHU@Cq{)P7Kjg(~1@(;@UWxeK$7Br)|T8NfR%yf6zQ}^Je-?dRw_Klz4-M7t@Yy?Pk zzT9%i1jJQ3qBMIjQ(m8u4jPy1*QWHY0Ma(TeUT(rm7RUDO+GX609#6IEa-Fz?$JqJ_7~nhV083p7!|gD=hMOck zq0k24zqan9|f@sq;g~G-Z%s0 zbqmJi9FEz;aF*oW0Z7+=tahzCmbQL2%0_F>ao=XFuKMA?8U#+CE2~z#YSJ`tF6Et@ za^(u1z4JME_%`_{4x;g2c${2H1xUkdAmMUd7zk@?4{rwgN}ixhee<^ZYmPjkb* zgj=Hf(}HPV(`*&e{LV(mQoTgIetR6V4Dn;I86Ab#!(id!{JOuhDTq~Rteq|8RdB`b zWy>Y$cf=RHbdjeUYKZr?^02}xtJDMev0tm#w^L1%fJI$~K;I3Pr`dnpiM;Qv?#alu zK&l<|cpt0x)XAa24g-}_Ro3prI}(y5G{(PxY0bV~bEv|%+t~)Qv6hc`xR}IR+l_jE zf8cmK-5pdP2|FyKSg>C$Q~gfbcCE5wgLo7STpAi)RZgL?avDtL{g<^-#ER;+9LVgq zaOh@&>Jg2HkoK9Er;zsfK(BPO@lA~6!>`#rZw-VjGnOm7aOda0-`RcF5K>Cmn9NJv z`3?Kx@bb;LibHhe+P*AFQYUwbSUF5;c98Ti(|+sqv1C^`M`;A!r7S}qZZ;zG7MW=y zBUP_d?cw{k(ys!z!(M%r30YXWdrpm_lSxA-Rq^565^U7ZN8GCX92I>JS&VK+>pA-| zX0q_%9v<1K)t`7BcQ?kMXtRQ#0861UB2()*HD!^POioH2DEy8JTLm9C=OXnkI#OI| zN)o42O{2vY3oEh9Qi5Rzl~c}hu^l+p|i_fT_5a*2_8sbepQdrwHUg9Rg5YbD53|{v+3h zKEbBmNVNnN*qU3y0Wv(qUdx6hR3%cSS=8@##btxncBKbq969t;3sM4ukT*Hw(Wimq zL+5ela`${0RL7ctLtmARn2>t&=(tyDuHt=fTeh*7srBbPVfl#_(N#yAdeGEEJGn=! zgZc&paGyaJG4xW$?~aOY_3bmxIU6kg!lM^yx&_yv{bA!)uE)|av5ZSDI-X)2X~$CQ zJT(TT4FG==zng9J(wY(|BV7Y6T~=*AVo+?864B3~$TqN7M!E>i$t~I&U zIcH+8(b~r!FmRmZSGKRb3zS;G7yvT$_j5R}Z59@8ld5@)9(J`rznc#0_R>tdD30hi z-sAU=1qX$_3YV_sOJOyDoK1Omxp~X*$95TW7E@{R=*ntS8P!Ni=8XqZO22Tx@XAq^ z%bPn~u#F9jW9(^<=Mee3Hfw{c*``=~CaZryoD>vVG3_0rT|`*}(Ri65Wt*!Be&PrQ z-L~FYq-0CBbC16xBO{Y@3E508&4@biZorXy;1ZK1TV&t0xI5&ZbMh0vwi!RoC3X-CW@;B(?j((zbYt$y68l%isH4>ljAExIr^+<-e(7U1EWo6Z!+ zm2&_NS89Bpu+LAzd770O7t`WADolxovd?XLkZ6!xNech0h5UT&PF`9aHSZ`kzm|cE z2I6d?>D&&q6T@iL`Ho=!V`|<^o}o%JDaC-CrvV8G7x2adz$WlLEoh`)Si?)_$X_x+&u;volM-OUsO26c1@_sLX=*(UtF!L@K@N z?%ULMkx}_ZcCC1SZ#DG%<9RDVJug-k`S}X94Bl_&ztrsZI&}9AWg*TvE>}@}3u3K* zKi^%iP(H5YX=r3XKSJmvPr4+%0#@C2D3U>5G5W1J;}*k z3x?>h_f4PCp{B1m*UOZKyM-gW$D7Qj+MDSv(aHM>qX!Mx9JJcyRvUcP%@A@^Tz_cO z^mNzUTrN|m3$XTm-12Mkn5ti#z&~eyTxEB?^=zP(E!Ga}s<2Mgn8@15zS&>gY3P^j z)nql!)mHAE8XTcD?o2ziyg1ebR~g3_o;F=5Np<2bt5v_g zrv=#<;&DZ7U`zCB<{zK&{%^_bBR3>_w>nS;cEYU?8F#r%c^k01P8k;+7aPPM z_O6J~Z^1n_bvlQkE#j4R`}vx{6Em_Q&%3$wcy$&TqTb zDX2|W{|=9}cJ1c?n_0R?8DH(!moJ%p`3aiK96uQVfWP%wO;J$OzcRO(0@Uz=`?Zka?ak~_l)1KoEEDSR|5z0^V!hfznlC08jAkz z$dW1Hyx#GA68FlC_$CIIHMxOZ!#>@yjBw=v5s>^Lip#_PuaT4GDHD5$FM)5-4Q^?K ziYTL3`q$~GdEdwX?!&j5ghaa0rcIL#FN3D$>FkoY}Gk5T;bu^L)Pl1+FHxv zJeAVcAx$OQqMriZ*A5KiHtnXO&aa_li399CK{*z|wXPD8=!Na31_s7Ufr|xq&)h;W z8Lz*1)?5%FmdndYKCcdR09yq#|@*$4QLMf>T>U!k|=E# zl(Ckm409Bfk`h|{G`Hws;$omUtG!G7cLos%F;kCwYHS@8VcLGNI(7bc5r3QTq-nNJ zsCURMGA;xrX@-J*e4a8!j$iI1@$LjBb_E+adRXkLH-N?S`u*esZQITsBngZKl~qlG zs}&2_w2dHx4FY#U(o?dWBm7H?-Z*+m40>I*vtg0gq<4A%p*eDn3K(Bcm1);Y4-?7E z*w&=M+fFk3{q7(F9mwDE=y(GqxWC<*d}jcC*jF# zsc^MmGt%8@=XCXAmoPTq$k|>RM z6C3j00a1QHUtgM7LoTW;xH759@lnUCc;ek)P)qq4OR2=FPE3pNAvrTs|5}&S0#WmM zZY_>$p2bhTx!{V0tz=n+Gv1D|n+KOEqvjZeN_>Z#R5qFN{Llo#e+5d*BZhr5ix9zN z(&i?jL*MM%?)c&qoB@Oq#p!b)%;cqC&hC!(@D9~$wp%2zRvV`cK?v#hID^>}^GQP6mu!|roJa#6p z622?Sd~J{to|*M+Xrz_|bnd=@D%1>W67HuA#Z?oy#LrNRl=_|I64e7$heXd5VE+=e zTy1_ND-R60Q{fK))nh)=FNlv*eUYsmXOT20Ycln@YmFVV;N-;Ed0&5IK?cs#!%4Mp zr6J34+aN{PmG&*|`c!njIrSxVJMak3v%XiM(F#qYN zs#+@qzRM5AZv{(&g;d18A`^gFwSBKZTl5R33xa}Geh$4PuK$cx-?F?H4?Ayv`LJ;2 z>`ISLr=I?BJm0fbhbis)7v#=aX`#=$Ma}U1ub>0j0%?W5|%Ld(%iPLujI}C16KaCTTingnV(V&hP2U*Pg*g z$r1;|M3@tK#vo8O^>5VFa7Ko`ShfgVb;XT9$#c`?Yix?rpWI~ zMwx06u5e!Xx-s9mp{mLyCK{k(L!baAop3;z`@%SqD?8O$$q3&G>}%b>(@%(%3l2^Dq2R!`UEJ&A zgQ|oFr+K5crWFpQ3CSFfp7!X+*ve!h_WchYvq}Yd`>J$lyE$lj#0Nqq1$$`X zTy9G~S0))u`wrKGevj8(^%*+DPbM$yl=)-%OS}Q}n&SR7oaYQZF4)edO-Zg$di*_l zLCu~+@9?#*YUt>;EyI|F-UFQNkKdtfLEKq7=8KMKxlgjD^Zr?p{-AZ){`~x57P%n# zHg&G?1!pGmk9|MQiaSh>b_`cy&1_ynfkx30HaUMk%y^7e8E|7S!*4zE4buE!!?n7FZI}+GSETd@+Ne;3Xi|fs&38f z|9)9hZgq90px)}|NhiewO?}d?W;)+NDYAinBnINc+@WOeG--t$_d^d=;3S)On_FGF zzi)@=eJ%PXQajhWJZM`E%v||X%6Gr(KXZ~jE_I*(z)0M`L6K?lZF=Y#RB=0+|GM%p zyd6_Jz5;deICJ~}tUa2_+S%#~tK*fO0Tb0je=C8go@rvvcNKBS4D^2dZ$OX4UbPN2 z?vIlW=QDYIv@VJSEzx}@IXSc_C1`RRV@Z(Eai^Op2d6{Gn!?NsPE}BV4tr%!oO7t+CbpFxLzZA1&RPEF_6%ca+=NjKN7_wSQ%TF0ORe!tq7L zC>iZ$Y>nTo?CW-dHkTednxT)6M^8<2s*yN>kZ3vA{4f;>dVI9>9j(!dfL*!p@{fjp zo+ivK!4Y)OA-|qNI;2ixkw(gTn-Vn;b#@TLyeBt8Sa)2_V_dcsc`ZL$7};4d9JAZNuG;o@W&cs~PmdW(ItqWc-vlY;@6gHMP2RplpN#z(%K>VW6rhPz zWv_<@cBB?NE~u*Ni+2uO_U11I{1BwyhP$tZZa%{>Ba2L<)T3AGTqgRdzIjl^*BLic z=elw+D?7}npil(4|K^WNu=HZgLYn`XY)9%0N0C{2oE4-ya`^g2^rzeW*|d_Eczm2I z7&;uBBeFA|H;_7apVuuiF_Jip_;6R#NXQAMx$O4GerIHRy%X(Q;jx_+EOb_Wy*{kZ zI^xraD*tcLp8Qv_RLIfT7t&D@$H*x@cV*RbSEO)GP()qvMK4RqzR)|+7fX$I`XX5Y zwm`EzqpWy0Iwe-EB+THgBmp%*TH@pOV%^zSpfE_TfFLL-g2%vc2J*pkqZ21WJRu#) zQk9{=MoCedq(aL&g$K=a51NL|>r$9b;71$s8q1+s2$+3{+~Ur>QK%-7ynw@bAU)s` zSH@yVwF^lmRelA=*qt5&uzUXdVV4HFchhGaZsei`qQq1rXNJJ9BFqFTa%0~kd)U@Y z8tSrIi*03N3EN9^kiH4}MZF!g&a4cPL-BDMzqLR>S5^WF;(zz5l+hz{;FsCi>7;Ts z?BJE0RfSyIt74ngay!+GMQsi+jYaNM7IjPKOH4rK``ek!hZ(5v^_t~y*3+7dkVgZ} z(7TpThr1NN2nPgGa28%cF@LP@$u%;Y<1_D^kd&^MK!OFmCzS%Fiq;3*6Y(?vnmcNk zGGo7dH7spI2RCPE6XY zZ-x}wuU4xL_Zw#s^Hw+3B#_i|Ji4TMSAS3UhCJw>ahtK4kGJ6R)F6NpZ4{?zg^)=L zpFWFDeuwE0yC$#y_d~{v*!y8BPLIxiPnX0>RJ^e{*4bh}ES4EPWcUfb=E5%!CX&IT z27ajZ;OPpl>i`sJz=n%HhpJC}oG9}gg(p@`41&*Q<$l?^yJC!$Ti(NN@jnaw+J7qW*d4FlZfotK~>QON>yS8kq-8HdN!0jdDemUev_OOa78&h;@4 z9oF4emXk7z5F~Cyu864t1_MXscZ9_%z!uz|xOj-rXqIz$B#GFishBHj=&yNVwh251 zP_7Ai>^5iNZLyPT$>+%WSqCRy;ZM2rhY1-BjP4oBKRIqUAmTQ!^N&fxaAszPDh1^3O|H1i1FJl{px1Xq!3BqxaH!J zCTq~p_Q6*joUNDm+gYR(hygb92L}fzo26!VWi3|KV@tZlK`kudsG`w6#=HUVny+*+HoR zXsXsXLL{5yBU7jl-D>Q�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 Q{{s+7Q8|%nA^pJr1Lg-_`Tzg` literal 29762 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

?1(QEy&5z$hY?Sf5#QBDW7|)~k zn05fEf0W~p;~~vlp<^K5ymXQ|Y>gs304$(kax4fc{wcy2L6H&mO3x#5 z__z9ile%gBRC}14Z(9Lw7TPWtqp^gBzJ>OgApzt}j;v~zYFS%(Qz*p_R4Y?1>4d~x zdH$b5$!mUI`aMc>vR`}jA$734C9p;Bk*6~ok=LsG@}c% zKwtvz|A}PH!nZ3yi)B*c;8Hb2(7>*KzC&6*nYi;pTLri42;0oHPM2um>g0fs&{;{b zr{NK#SgY){aHYnOHtB0b%raRTI%WqGUyJ7Ns^Q5G9=}qxlBgx`8ckWt z=gF)?!TWlGOv%p$h~A<1bm#?4X%(u;pu zejUFU1OoUm-Z< zbIfuiG28Yd`@J>&v1HxyyO@dyUjmpShTq@R>O=qHb6CRDta&}QG3u)5)Vy7cP&Iq< z?ugM;RuFb7X`aqZp$eB$%KVd*KYGTmXgtN_+CfnSP}f{@7`A`p)O#U+g_(rpl-qSI zCZw|Lj@(iS8h)=I>_(}2Jk0rRY!W$f{R_XQ7g&|tB3{;?+e+nZW7!sOr zo^yNa8^A#`z<1AsBQhM1s`X}Eg-5BHjX8RIO?%!g;?k4PjA|HAlR3GI> zWKVhODF&lrC=;dmPVyd+xaH3`581ED4(udpCs8)ffCCRd3P8Kqh&VlsruBy(ijz!u zy*`8cd?7ML!&^cHq}P{^p(k=%Igu=N*N8~xXX8E0?k~9Bk^e5a)lDw@Q*p}bgWP6e zmG!hl%B#g={A)x)O#E~|N%f@f_`)7LqOU5`0@*0sql!?$SSx`S^<>^q4;o1GejcLZ z6@29iHQNmd6}e+i_b;j3hu*7IK&d-*DRuPwwaMu|etRv->epV7xsX>fE_T;<%t)q$ z`$BqRp-E{^5DO%*KtUL6^8${iB*;Rhl%|LCC&#|ayV+{ZuRYWcA6(dA^>BjcY`cQ> z+bwZuSuFDYRnAhAq9GuZW68@zmQXZ4!g6xz$CE5e#4G}0k8uW92g_O_?@#3Jm^6&i zJjl~os45>Z$A-+4&|4(1lC}-_5LVXlnrz%Gd$tV{6nV(ic}47A-*HTYuaU03Y#!$${4B%m~#QRQH4} zZ_u5F&81imT!>?=s<8SjRC~L=DchpLw{KB~{|ndtKhu_1*paGCE(-r=wypkI(8r*g zFT~Vs>B965lGIQ?m965zbR%)EDcI6C*eI!&N;Bhfp?4lbjHvrBRL;q`0;c-W#F{BIZ5f*n%ycfttW9Mpe<8!lTNMCD&0Pv|7Y^A;NdLlfd8Yb z@SztS+f3q(ykkRtf8JRM&cp^2V0VV$uALo-?_s*G&4F|4Vo7N{61V z6nce9B~gzW|Ille&qGtfSKhr-&JJAt5ab~b#E(zjwJ=UT-D+4V`MRkIw0x&UK{XSe zT6HT0ZwG;}dUi>};n=#w4gqp0{&IgndMTsIwk_HlIO`H3W}xB^yponS`^`7(1WB<_ zh$xiL0)lSS^b&Cw@eq5?Br=ik=QaiVtTi;IPn%xQ?6B<#^@Ah?3v?Uktsa^F7<9V_ z`c+_Xo*F$8NQg9m=;R3UpWDd;kurw9Jfp9_ zEnNQTaJ)M7v$eoscM;l;81qLLViU35W=L|XI#OgsE7Y!9CE@%D9w-GK&R$r=7#D8T z{yIdwGh1fYgZcTe6}xJgUSBRM0Tgl3MytsyZqqN;YBt2e3JYIsgCw literal 19875 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 diff --git a/resources/profiles/BBL/Bambu Lab X2D_cover.png b/resources/profiles/BBL/Bambu Lab X2D_cover.png index fa4b9cf8fe072adfddfbd18644dc2e1c652818d7..7478f9007fb0adb0380c751d586533f87736432e 100644 GIT binary patch literal 30712 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 UKs_1cLA}>BUg)TyRIS7R4-%uNrvLx| literal 18930 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 RSnvP<002ovPDHLkV1kMPsL22T diff --git a/resources/profiles/BBL/bbl-3dp-A1M.stl b/resources/profiles/BBL/bbl-3dp-A1M.stl index d31997c36aba3e8b4ddeec810289b885c32f3f92..ccdc7982e01b32fa2ee4eb2a1f5ea9e1ce9c1514 100644 GIT binary patch literal 48084 zcmb82378#4x&9jn67~xT$|~FlBr_wqC`=&Sf2PSfK-f2P1wlZ90f8hyAZ)U<5)e=# z5J1@^$~wc2PGrzb4+?@n;3C1W1!TLRLSkeS6z;9Js=q$Jnx5u){{1|2=Ic}SzVBCc zda3%ls`|v^rXBsw&AztP?vu7^?7r2+t+)R2wqM?A>n|O)@BX{(J$b9f&O0TW{eNu( zD<#QxC!U>t)PCNC-#3?Sd-Xp%n@bzpHm|yJgIxA9XD5Ce=l+`=zR_ovx{rZYN-I~4 z-ri}P;4}nDl90ozIPGzO&J`m0U48wL^TjCK!*CS>xxjJ8ExZ{?p`XD5#!x*oCA{T933Jj^4Au1E07Ky(Em zx80VdM}48AJZrZbw@qmeiO7U_;DBwKJFnF_AUt!$=#Z+|uhjf)V#HDFd^`Qq z@Ljte891PG_R`Mg&9lRu%xtm6cg{k<{mW8ad33iNoQvorIl*ac=`=1{{Q56=Ket?V z-)-I7MJ~?48t#h$J2GOg?m1#+y7b-~x_+|hC7u6xrnC8P4}@~aUdP$uGCkScvQ*bY zm0aI47tu-bd#7=v)3|uT{=JqFZr`z#Tu-)7;)1jQ`5cXzS8yd;kR}k_^Zz5 z`bnp6S;*eN*m3jF%aQeCB0a_un}(Mj^S)41)@SGvBp)0|%VPCcT<*7`lD!Fr1k zr!AVCzS&$WefOdJI>%hm+5FXZp&YV*?QBuTUg?{#WvT8RD!KNVi|8b|+i6_pG*(-` zyO+LGk7&=H`A=6@)L@xn#2vGCOt*e~OnT`_dFQIfbT;*;-`s4m#a;z|eP*fdXezn( zn2YEndCzIQv~Wy%{keU;^xbkvk7%*Aeh+G}Off?I(z)T>zE0J@QpGFpWQ)@DWOK_> z-Dj1mZ<&keBvC!7zAiZ_@3magpq_nS@@K({HCUz?q2F7-`|9g=cj|o5uO$r~EwaTH zdlmTgnWeh>TWOh#=p@l`tK;{*hwkg8@6;pOD`ft2kOu25M(F(0d3gR#b2@c>(%GYO z=&+`<{&SE9>y3IzqWhEX zQx`9OeOuj!baxT2?ryThW_p3S^_itiA>#J8M>?e1)!KBQ)&2IdfdhICAr0!;_W|KP zvtVVZ+K8%M?X%uug!;7V+qz6yxKobvNdvNTT7eI)oEmqUGX_0b<|F8c+2 zH;uvdX8ige*A;nRd*wyfTe7+en9w7#T;es2kRCh?--mDXnWf}ny~TAE5LFG+3+b&| z2>S&pw_Nl}c3dMZOqQ$fWar1_m;Pg-N-M<1n_S>aUMWYUL0&6I6~Pp%1?7sprB_7I z6QaxfnXBE%U!qyQ65)(2S3lFvsE`s$&RU2ONV6ewd*c~P><+X zL;Zf87vdtX&N5xas~SX5kLXxKaRyy=#1->~NKsXT2ZoKzE0#SL%~L<9hT(3UX1e&~X2myWn9L3s%z*EWD!^tQfak5&7F%Td<*fKpp!(%n;=Yg^@NV_oRlSNsLZ%id&J@(EA7 zRt6D{Y`{Du+V{_MwMW$!<?+@nc56*RcXI`Dj%brD&xZJsVk(aq1B)NznlkcnL z>Z`r);tagYke99gBypwA)f2wS^|r}H1ett4s$cymSG%3OTauS8@+5J;UanrM`vrT+ zMFg3AAE&?Q<8<<_PhPfUlf)f`{pvxwBe9oUM3Bk%Kl;`Gc+|!E*m@zao;c}ht#dX> z+}YHx-reOc;zceZ$P`fFGfS=I)%sS~!X$|`bahj2;z@UfW4kTRC0szuvMtsif*x9K z{g3-m*4|Z0)mwc#7-6kqr4a3Vkp1dG{=h{!Sts<0w3|< zOR8L~A2J2*EZt`E`HkhnLauGQKbm-WVaFPmEdinz>{S43;ywz%Zf zBf3@c$;ZVdXD+j=<+$^a^BSN1V(@*>-IB(YJ5|e+BoCbUO8@jLr>3_)Gx{d;S6pVx zXQHhP`k$rroq9yO=MF_(ZMN_`x6ohaGP_!iZ>)J<N@2ibjq4D_9)iSyJ;P|!j zO`o5f?tJ*&-R7^j%$C1IYu`54ibY*fkLXri?Y3XuO@Eoo>}omY9dK@A*{Q+znafvb zynlJMOi8lrkumxCr|y{E_}nJ9n7`sOTRszQWzhdDrSH@ux>Z-F?DyAO=r41bT`kAU zpFgE>$LIgk-vPcda%5@8UcED{Gk1UKzONtrBTEsN+47fY?c0{6@1Ar{P@_cGBlf;^cH{Ef0)psz1Z$M&7-7HQ+AnX?&01tGv#YiH>Lw>Q z);}=R?!N1-SK4u1jlQfsf9TaNMF-1T6c=+5t$em+DQlE^L??;;g2K^X<}$lljt_>- zYW(GbP>u;>KU>C#~J!e|F;j4SzVkzP>TmBNQ zecQ5>zEh9rB(b{Me9F=7^q0BJu9joJy-#R-{jE@rS6|zpv}3Qn@tceK-}`u0`qj<0 z@3s_inJu4*wle5{meP0X5uGGfS6lz=z;^n}TxM6xG4RoGjYmETQAYV=hd z{o5aYMtbl0<8QGPahWZDiPpYtZX^flih4vRiPhEIxs7)E%Uotx%W>n+W;Cw*-%yS@ z7jInJu~)+%ox0%nKR!EcJM_3VOA(jZ@|kEWgZ^hJeWxDL?mRE*YUKyM+)jU)%WRe- zv|deJDP~KZdP!pCPzt$-Fgs{C!~~Vx0W#xKirHdf`LwUC>J<@Y2Mt&9E*&KsKk-nz zaVf=Y@$p#jK`tW9 z4jS%^>eAKc){{=@FfOH-Ee&2{{ITo3>i^BPkyk{R9W>n4r%PAry*8ZNVO&ZvTN=C` z`}5p;b$jF9$SWeu4jS%Co$9VOZQ4&dj7uqIOM~|=e@*mWePiBlBd>@sJ7~DOTB;Vn z$v?if!?=`UwlsL3_xBI))j>!8I`WDLvxA1(Z~A-Y;~P4RODSecgKaH;uk~K-{qgOQ zS45Z{G`{#|NBY>^6a4vMTuL!p8f=~Uc8T{&DdZx;?4a?{>FcK#{cNvv{P_EBGA^Z< zEhe_-lEl1v=#dAn>A`7o>ijn2Qi|EqVEZvi%&XzMuG>y7BFqjN zUt9KE*Z5fmx zY-zB!lqBZWwZ~u6MlK@E4jP~R?WtW4Og=Sz=ARK}Sq8Vgi%VJt;lX6t*RwQpON+B0l@Lp`Efxn!GPVALCcKdZkEm~>g9!n9I+47laD}(-LDSf9N(f-)=b+z?ntF_Tz<}$llj@#cJ z(X9d&_m{dYMOeX%ct<|&` z+1ktBDr01^hQ)mjKkJ+hOA(jZ@``Bf+m@yLovBB3D@L~7@o~wS%j{}7PB>|;rp3t4 zJ@f4{MizTzai5tNEa|WmahWZjiMBH6f0ojB>JiL!&1a$wtObq%Ao&QO5dqRbSp+SVcqMax?(P~tL1p;yfvE^BYWn+ zWo3*k_R8WulQ+Go!&1a$w)`bp`?h5%eWxDLtr*!2A6^jE6?2(gEyt^0TC-^}vUw~1 zt&EYyURm7dORJpQVJYG=TRszQWzhdDrSH@ux)me)<+1~#x?(P~tL1p%`8AprBfI^M zzm+kv*ei=I&An>l4oeZ2+47fY?c3&J;ixO>5#5TBWhcJVPJfxpY?dQLqfA{XX3GQW z#W6B+5n*=FV2sSTlw!6tSU&A*t9nI**+Ii%Wcyt@vD>(mVz&5rEVN=|_Z{EpAr}#5 z2MvpnU2@XmF~+47v!%iFrWGUmw=dRI1E+Whh8WtmSRGD!p#cXM?{n(0; zDTQ1_m>o3S6U9`|gdHF=E~S_)CbqTX7#X>UFgs|t=jW-OpZ{t9i@S|WDP~K9{SyDA z+IuzYsP)^)MTFTw!;LlQ(pZCY-rA(cxRheHG}wppPpZ9F-`ud-PA($M4jOK(L6^p5 z{O;<5dyGpdW=n(pUH??ydv(mtW829^gxNvEjY#Rzh?EO|w`q@YDaCAQFs|W8KzOfS zzi!udauH#6&~Rf|CTR4|lG8TqF)pQ;Ee*y|{AdyH)p<|OX(JaAX2%-zS1IH*J0O%Z zY+2gVe@NrWsVm&CeT_6b`0}>~LK;W>YLt^kJFR@ivdS1?TX`Wy2M&E^=^alV)tIx< zD+Ai2o{cuv_uOM35;)T;XQ@?)uL21NxTe zdW7Z%Pw#!!BZ#g?XzcO!zxty`5M7VZ$mJRBPk98<^$5+Q9y}EN4R52M;vnzU9K&%;2Jlo*whCj$dq7HQbj&b639d z>tM%T6?1s=pSk(9N}26St8y?G(Q!HGJN1b6Bd|56I$!EWVAEgbqIO)42^$^WSaj&> zz8somGx4lo$6gh4c=I0?^PLZIrBykYi|Du<^qqP{`%&JSQ=R|7jq;|y%q82j<8thF z*p$YHzg^RpLo<1He=^vySH&FOe7PGJuK7v3xzef}%tdru4*E_#qWws6&8g1kxsl}b zm$|4Nm*cF3O>6sdXtvPKw+1`*s+hx@Kk3GvYYx=DuCyu#a}gbvgT7ObXg^wA zbE@;}(7twJ! z=sWd@_9Nmor#g3Ys(a}#b5T1k$BY?AHuict_^w$`rx$kYRWXM*f6$GgSITf#T9t#j zh>pua->FBmA9b%e)%g$IsC)X$T-1&=Zd`O!Da)i#gT#_uPnh`paC@HVvCw6x8Jv%RxQYpA7SzU5+rX*~&qL*@4MD z=hSmGk1#H!m@OujPy5=cUJ+q-&?ue{=3kh9Y`bwO#cc8MSSX+N<*Tl~cMrLUFgs`z z&+hW?eD#BN<5G&*(%^YhK8edmFZoUnxri`3XcW)Y^2hTHI*dyxW=n(DnDQxEe)WIc z)I%;J%nlmGGq3!D13%MYTuL!p8oVBtPq6ZFoy&X3MTFTwqj(;bPkDR24&zda+0x*> zt9-hYKXcXHJ>(+7?4VIRE6Ok3;!o|y*P(`7IOT#zlv_E8IN;`iAHs5iXA# z3FtHy-`wXBMAsv}yV;b+6)W8D5k%J`Ha&Anqx=1bJc8(Y#4aCAX}s}Yk9!2s^@xYB zIHIxtT8lh_=z7F^dwsKU{qko#g6Mk08yik-{P@KeJc8(Y#Qc9uZ9Luol1C6-kJ$2+ zBOBlT&dVM_bUlJSdZJ^5ogazYcvLf&+0~<+Ya4PsLmv6%Gf025TZ*{MmNwDa_gkhT zasC@eHrBoKy94^>n#D&oR@yk&L@Ujmg(>>ko~u}2VHk2v$gDUF@~ za=AwkU61HEV@l(<`&{D@MAsvD#UZ*Lam&4$C3ZX>!L!Q+bP7*Tg^XD+kD8D;mu<8N8qX6J!Y%$A4oI-qve z?)mrI+Q>zO*+IkZoKHTqdAo5b#cXNBD~Fm__kXxTJGqE3J7`$DWXD@hY&R~Ym@SQX ztx@x8-y08(yduKvpkeK+C%-FjJbE~S_) zjd(p%^J?;T`$k?7VRq24_U<$L&ucd>rI;;^cm-7RYDxQVBCm)rJ7`$DePPeocH>ft z+0uyDOf|0-egCS+DSRAUZddi zaX7Q}Uvqo4wn6co|5x>@NF6|~g30x~G#5G7Y73fwthEiKPF~GX);b3PUChGHA9rz4 zB1~g2x||!HU*e*inr*GM4U~(#nlr9-4g!lJoLX_g%|GuYf_g;z9=+zct4H6ddF@); zKpN!L+;^>W5Hu98)QSsk9mrlHs7G`;S3h6XMIbdlUuzpkgS?u`E&xD1Jo*^@#S7ZLP`Ce~pVq>G;$UAr12Cc-B!9G;|bd z#RaXINd)zXF4q?6f5=6Obe`$RmIirsUh3!%8jAU7#RbKEh@c+P<*F+E-**ufT`zQg zOM~cGBPi)JORsB=D%an=@c!wIz8{8O*o}*(m;I|Gd48L-^QX`K>4GmDcUZTjNW*M# z5v_gOVhti5c6v`=-8T?&o;mL9eBktX6ZV?)mGRe;~pZI%WN^3 zNBSRo_3-)A8~^MKecZSlmpp%}8|QI+|3xcY(Ra!P(|u1^T+Bsuk`(1w;L6b_-_@^W zT@6ONRY8}Yn!o?A8U0f~v(tDYs6p-ea&&xgdgILRX3Q%Rj#Hf&Mv{%<0>7 ztLeUlEKit==p;ETo0ebn@o)PNYF;#+>O_#K-m77EPHXhM9NO@)#uj4_$`Aj`%K2X} z+pce+%cYjSykah*lca6(LHVJ#t(-5v@Z9lKCxT4%UVV4nX^ph#i^Ll9=Qi@4zrJNY z>BZ6W&vUudW06<@ zTs=M5$alT}@bUDD2r|`sb=h494<0so5-#^t|9d>T6f8U7Pj`qE6 zdBt2ryVYer{7wH_^QYy9Z}a&bs7?f#>b+vWKi2qY)C~(dwmLii=RM=@yX^jN`8b2T zVlJZHia;++>;KtWr{&*$bNd~rP6U~fXa zVM0;6JCKVAGWp-UtN6|DQ^lZyy4`SUz2&htJ+1a*y)26-8uNfLK0NsDXAcybXzCVv%8i>qj# zBAdErNQ1nL=(xz%+(xP^^{y|D9;e8ruIGahWOAd#Cv2JODtgi1JLglK8f5Z!oV2*( z^eIBC`>QnQ38O|y;_hl`aaS8pbt1^*@3m=hukBOZSZxt$ke5-aBysoiw78#-Cl?W9 z@~w=tXl3*%nyr?eG|0ROf) zW<0U6d*&5l`tr(bT?rU_FA)pYn08n&v?8Qj1K! ztCcD)BFI#hT&>qWsuMw`@)zt))KjhAX9nPrayFT zAEuC(&ne2QPpX!Tt~k4V_>A|8x%ix-yuzhw$xwp`GL=`+RP7R7Ij{K33toe~e6mqq zsZ+H}$VCL1%DX|TR)+2Xr#$kK*B~#Sg_L)kRILnh5kaQ%u9m9JpgY;w=fCVV$jfIh z<()HCn}J+Jkg2?%J0l)v$+4Bg-fqV@%i?~Xs+FO8xW;noxS}Vz&&%7uU$jev*n#Rq zkg47)dZPHgjRY-QODg$&Y9Z+fmb{`TYDMXH3j9TjOtrfM)rlZe?A6WgNyCc82vfBg zb&M%TtWmTq^_$?=2-HZdvA281a(FSeR{aEBC6ptstD-ldv$jt?2t659?J^h9v4)=A zOe{wHQjh2u!TKROMijjwU46#$H)k$-8*AukPg^lYSp7C#wUr|-N71{}HL*`UIz2^J z$(f7jSc9dd9?||vtv;u&)Z^(db5T3iP=8?6VjQx1-nzpnN9(b3c+I!3UxM8}9C&XDfnTCeKG>#6==ujsA64=M(bx){KG)(LsZ6nmw9 zl)W2Ju@kj8lp`*A5n)japifa1jc1To%tdsp!TO;d(Y{@xxR2T;<5@!HqIRso{-7dL zYR@T0>{SuJQfsMCF)NMaP&t^3=u#uo)rY=Qk7(b9Q&dfDxbgItxu{)gIAc%*60y+O zt0Fq6wrC%toXo`-sc-KpW~uh>c&ZaYCi5!9>+S7ssw=aVBYvOT{2SSk zy_(0Mr{O~I9c4r($sRYpzThs05El{5Www}XzTzKc?+G}()yH^eG zrHj3~{?*O8R{6sj9&0J$GFx0kYu|6#U=1STH>VW&i!!QfLJ#C zpuIU~es}|1?A5{L|+W+4Fv^NiW{y)9VS}13q<+Gl>qT5o$ zYxZEY_HD~jmX>-%CyCYWZf|eb&T=r9+0yp>Sy0K+$L<>4{KcqrK>JTU-`@P;`V+m) zGPyOOJ~<+FI{jbS`pF(k5trG6(b{kQg3Et8x_Qpap?;`Gv_}*laqSWvBZ?V^zC`14?8qB#Ar!Qg@{E|LyBv?6wqfnJom-t-9K4&fIpY6Jd7M ztH!8~<|YFR2gG~(bM4JT7VhEgSYy%SXQoSjxpJ4wlv#?n%pQ!^zHRYuPCcSqB^QqV zGMCw(UXE>FX>U$DaNhwju}p5%j9cSQ^LXFd_)j-minz=cg6Jf%l5hUPn(b64!t77? zs(opDbM3Cl167R+H`*i37j2ZzynB@%Qx})nLJ-|5$Jdtb-bQsI%r3pk9F6*=aG*AA=lLPvadPFO&h1h;< zM|0^tVNM*;^#~qIM8^oLU5T+yn9J<4u9VqrS^9cgNAr~B&kkts^ciEDM=T9?T=LC+ zH71>U-j1mtmLe{*2cxxbTb5qAZAWv-{)-3n4fTk&-1;B?f<(s%{DS52GuSIblqJuC zQe5(dXN_%++at`oWGy7gq_JzIZ@)4*eQWi5x-CUqW{ZtzH>#|ttIO|Rv4`qJm|gX1 z{|#JStrU9kr(Zm_dGM5A#~ORN_lvyl-t6$k!r!%7inz>{S43;ywz%ZfBf3@cw$;9H z6a8f_v&(W6B3XLKu#V=w2Zgz>TU19eZ`ii8pj*$IVP%TCh^PrTE%K$%(cy z=zo^dcj_5a$Zd6X@4`Kzx?(P~%W`A^8<%71{ISh>H&@H#=4SkBQr9Z$emni+zyG1l z{1unkVk6oiiju$ohxf)%od~l_uYyyq%}HcJtg*`g!5 zp!fgcl2ec9R>_Y$ZA?^h<}#b*P@J!&t`vHrma|2WT)d?yhY;i3}T{QQ>PI3`J zrX*3H*8PeT4srcjaVfSW4f1j(dy=>#BzH$j*StT@=p+{rWb#L0u1{^oB@MIfdwVas z({Nt7BYuKX$Tb+D=#H35!~$}ehVhEY-lVR4HeRpll_8`jyU++F@4wZZAL7zeeWj2$ zetUXRy9=hc^MhPOkjafO4ZmRioI5}CtJxdb$g5x0-qv0oCH)t;^MhPOkSR%uBQe+c zAufAQ9C>ww+WXzhqdi~Sogd^Pf=o$LoKg8&?)(s!M)s?&$Q!@Yy*O*-l|OdPD{{>T>BRW6C^-%Gf zlb3Tr{87@SE9v*$`9Urs$mH)Ism_s`-T9%IzRm-cgS?zQ;*a)JcZ3n{{2&(*Wb$WJ zs&m94dc~#lSsLW!Xd!>rraDJ%b>|1Uh#-@{GNd|3e(25*aa~xv-I2T;U*xYosqWB! za_0xRh#-@{f23*!9P92M;?nh1a4oQol)c>f=vD>^sN|K#w882?R$&$ z`@2D^7Sp%)IG~4IgAus4PdQ5n-ElJIvO9~}(h!q9d(nPqTgftB^U6Fiw7xG(-lg`H zxU`;()s^w8M(o*3S-TSsa_0vTg~p*6tktl7*K0%T&0kU2(yERp8Dwd#D16F-eX)! zFe<-BFqjNE|QwN7_y(KVO&ZvTN;e}`G~OhN-5+b!t9{o;=8$4 ziG6POw9UAbVz!tVDfIDO@70b={~ z(t5w_CKnNA2aV#ma%W15ODW{#^8`14r0_}zauH#6&~S0M+{G-thH)vyY%%d!NO@dU zyduKvpy8r}xr+|w8|=8W+qjfswlw&p$wvphS1->wp@&>Vm>o1+{Hou@`tr|RJg&#M zlw!6o2c8@H$es7o{$)9`UZQ<3yv;Q1< zWoUX;X#8tZzl)LO?H&KN zID3`odIWhn2d^H%T%1u?k6*^7Mat$aajyDg?%8?aC3UfKT ze3QD*t&hw{9j#Z*U(+QH42>AvKR0wef-wN1>k*7{5M7U;??cU&{`9)yd~l+jUb)4! z%US9~m)V^WBRF@S=z0Wa^b=i=;5q|D#|Y+Pz15B{@qG^KI}f#vLbZ0OLEboC(()@S zS6C1ibE$=F*BGBa3#iQZQY>nqzKD6qRTyG~TKX2tVDG*jF*ufC=z0YGCAxwL#c)Rn z5zNIpjLX3h*j#mnzfFnAbR=?IIMMY8j#ekS9>G!fMAsuY7l7z`1ZOA^U60`W2%_r| zoM}PykO)`JnV-R7Ghc|VM{wqgW^)+29>MuIMAsuYONi)t1m`FbU60^wC!*^Snw4O4 z$%w8;a4s3q^$5;zBf1`;G3GYokmz~@qftcHBNX?s$Q{x32t{!$o=9{B;ZJrQiM$RH zT|v03g0{@Bhihx&4z;pX_1ZporCUSuN)*^7APvq?Ai5sGnHEIXBRFG(=z0XNgG5&l zt_<2Tzviy3zdO{Lch$NYyqd0|S<`{se>x4W_d3+teN~OYE8Ui>+ZL<+m59tVxEAYB zYY>)*02t&I(UFJBodrmibDh+o)>5o$ke6tB=-EpRu3J>d9nq`W;;(0fCm2O+(yB;xkwQ*ak zydGgQgXBBWF@p1PI75Z#5|Qbwjbp4~HGXNt=n~@)EIIXt)NsJeKb^KG)qHkaj~M)< z+R&eluqP%&*CX_#+Qu3PVd#3q;IRgVu1Bb^X5%u5u1BaxXQM@ku15?WEn?_;1jn!t zU5`*tNY4j!WDs4C7;3yvIPY4=SnH_rM@cakQMrh&*Wj_s*n2&KZ^Go;HEQ3RQNANp zUJ+f7V6LIw>=A0ARraiW@266Rdf!MDK@GkYlX@)$)h^#TIn;Yosv6`anjXd)d>`ac z?|-Rkke6tB7;Es|l0&`6rm8_+qUm9*!FK=-^*)}e2H$>2G(C(p_!dW^>k&h}4^p1g zBUoCZ>k)iw;81Tns+OFkC7SgXmz;0(8|tl1RSohIO%G!YzHM))w@+0y$V)Umj5YWs zyrJHrRn;Ib(eyCZ;9K8@dK*|(gSC+u5ob z73=!WP$1Z_=)6Tz=_4ChA_H6r%b5>R99M`Tv@z_f!kPw~JFRMv#~2 zdc>Odd@@n*ke0?!Z#J)%gS65hq1=Ysy;%c+~JBtVF z#R&2eO%G!PbG>`gIsSdZgZ1hWFMs}&(nF$S#J=mT=ij|6-d8s{xwMIn5%h}adc=gW zpY`v>mBt6dW|cPeVh!>VU61HJ_;dc9wbD3i@rk8Py;y_1MAsw!eC7K7eX`Qn{mPl8 zO}$uyyhPU{UVUu?|E^bQ?6>y`rA@t9gS?OKz5WS;ftn2W1D#$Hi_bGWHjkKkN%qCFxD zxGeIDv+#+I5ge<=bq0tI?54pHbj-!_l^U7)21HPg=n~L9(sg6G9k#z zv2hiI%dIW*W8iEQ8&|2IUdXEKLJS@cXXpw-Fpr=oL{|_lx3)N5!WaoX3|W<3h@nQe z>0GHG1oH@vxg&Z=gh0`8rPW&Wt^;W>_AYwAWrnb^r#v!-L^xQip|xK0t^;XMF9?Ls z7@;*%^sWOTh^|LyH4?q+KnSAi5n7YORt_b)9--AQYz0)J>k(RKLhm||S47t%v<8IU z<{|{q^$1?0h>j6_4$P;>oL?U!ICgNTIbZTHMlh;EbR3^)VX|_hq_{ZOj(V;9I<7d{ zaHv^(Rj=p?(bTKg;QUJJ#R!gd9BQU!)hl{JH1%Q)j!ztFR%=y*yhPK(ScBvDIAfW5 zF=D8ZfbygsG1U0PPe%+jYVy+&EG^OXUU4MgP;|+Wr@pE|#87Jk zd^%#NH4dr>j!ztFb%!c~UJ*^bxa1t`IMlipRSohIO%G!YjyB{~je0S{MoLPZ=z0V_ VA-W#Hv5ve3)5F*+dO~!J_&=ifN{Rpg literal 23084 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 z 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 diff --git a/resources/profiles/BBL/bbl-3dp-H2C.stl b/resources/profiles/BBL/bbl-3dp-H2C.stl index 81e7321c25f54715bfafac454a85a549329cb19d..0936bd1d332e9b9ab67bc3ddcc4c13c31385206f 100644 GIT binary patch literal 86684 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 literal 23484 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 Sv_?fA+dscQ@L}yzR^lI&x=0HE literal 28684 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 rA^ISy4t&zG^)%iSQv0X7Gns;UQMArF`SZOF# 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 diff --git a/resources/profiles/BBL/bbl-3dp-O1S.stl b/resources/profiles/BBL/bbl-3dp-O1S.stl index 151303d57392293e07c72970de5c3ccc6455dd41..d69a50bcd67d4bfcc5f0ebc7cece83140b7704bd 100644 GIT binary patch literal 17484 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 literal 17484 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 N(m5+Vqj70h;=g@o9YO#A diff --git a/resources/profiles/BBL/bbl-3dp-X1.stl b/resources/profiles/BBL/bbl-3dp-X1.stl index 08675caed6fac2e0ac89f45c54a4a8587102862c..6823cdb229ca42358d41e69d34f78e1e5adab8ec 100644 GIT binary patch literal 50884 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

sMHn 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∈e*~A>5_`+1@YIDh*QLJucYHL>4-yKHiKBf7L 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 literal 28084 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[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_max_volumetric_speed": [ + "8" + ], + "filament_type": [ + "PET-CF" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "impact_strength_z": [ + "4.5" + ], + "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%" + ], + "pre_start_fan_time": [ + "2" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "2" + ], + "supertack_plate_temp": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "temperature_vitrification": [ + "185" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1 0.2 nozzle.json index a77a117965..0bd8b9dbdf 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1 0.2 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL A1 0.2 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_07", - "instantiation": "true", - "fan_cooling_layer_time": [ - "15" - ], - "fan_max_speed": [ - "35" - ], - "fan_min_speed": [ - "20" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_layer_time": [ - "7" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL A1 0.2 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_07", + "instantiation": "true", + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "35" + ], + "fan_min_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_layer_time": [ + "7" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1 0.8 nozzle.json index 72e51b3f39..ee66fc15fd 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1 0.8 nozzle.json @@ -1,54 +1,54 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL A1 0.8 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_08", - "instantiation": "true", - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "13" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop": [ - "0.2" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "nozzle_temperature": [ - "245" - ], - "nozzle_temperature_initial_layer": [ - "245" - ], - "pre_start_fan_time": [ - "0" - ], - "compatible_printers": [ - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab A1 0.6 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL A1 0.8 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_08", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop": [ + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab A1 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1.json index 3f40e826aa..04fafe66e9 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1.json @@ -1,50 +1,53 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL A1", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_06", - "instantiation": "true", - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "13" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "nozzle_temperature": [ - "245" - ], - "nozzle_temperature_initial_layer": [ - "245" - ], - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL A1", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_06", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1M 0.2 nozzle.json index 4d6485baca..35d1d7ba99 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1M 0.2 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL A1M 0.2 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "15" - ], - "fan_max_speed": [ - "35" - ], - "fan_min_speed": [ - "20" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_layer_time": [ - "7" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL A1M 0.2 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "35" + ], + "fan_min_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_layer_time": [ + "7" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1M 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1M 0.4 nozzle.json index 16138a89ca..be54cd2c9c 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1M 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1M 0.4 nozzle.json @@ -1,50 +1,53 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL A1M 0.4 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_03", - "instantiation": "true", - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "13" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "nozzle_temperature": [ - "245" - ], - "nozzle_temperature_initial_layer": [ - "245" - ], - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL A1M 0.4 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_03", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1M 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1M 0.8 nozzle.json index 2f812a4535..b4790e22e0 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1M 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A1M 0.8 nozzle.json @@ -1,54 +1,54 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL A1M 0.8 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_05", - "instantiation": "true", - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "13" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop": [ - "0.2" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "nozzle_temperature": [ - "245" - ], - "nozzle_temperature_initial_layer": [ - "245" - ], - "pre_start_fan_time": [ - "0" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL A1M 0.8 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_05", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop": [ + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "pre_start_fan_time": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A2L 0.2 nozzle.json index cf66b0831f..6aad5c0b5c 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A2L 0.2 nozzle.json @@ -1,74 +1,74 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL A2L 0.2 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_26", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "40" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_flush_temp_fast": [ - "255" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "1" - ], - "filament_overhang_4_4_speed": [ - "30" - ], - "filament_overhang_totally_speed": [ - "25" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "override_process_overhang_speed": [ - "1" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "25" - ], - "slow_down_min_speed": [ - "40" - ], - "supertack_plate_temp": [ - "65" - ], - "supertack_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL A2L 0.2 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_26", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_flush_temp_fast": [ + "255" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "filament_overhang_4_4_speed": [ + "30" + ], + "filament_overhang_totally_speed": [ + "25" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "override_process_overhang_speed": [ + "1" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "25" + ], + "slow_down_min_speed": [ + "40" + ], + "supertack_plate_temp": [ + "65" + ], + "supertack_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A2L 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A2L 0.4 nozzle.json index a0868f4ba7..0fa7607469 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A2L 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A2L 0.4 nozzle.json @@ -1,74 +1,74 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL A2L 0.4 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_33", - "instantiation": "true", - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_bridge_speed": [ - "50" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_flush_temp_fast": [ - "245" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "13" - ], - "filament_overhang_4_4_speed": [ - "20" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "nozzle_temperature": [ - "245" - ], - "nozzle_temperature_initial_layer": [ - "245" - ], - "overhang_fan_speed": [ - "50" - ], - "override_process_overhang_speed": [ - "1" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "65" - ], - "supertack_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL A2L 0.4 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_33", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_bridge_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_flush_temp_fast": [ + "245" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_overhang_4_4_speed": [ + "20" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "override_process_overhang_speed": [ + "1" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "65" + ], + "supertack_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A2L 0.6 nozzle.json index a8142340e5..09a1c88d84 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A2L 0.6 nozzle.json @@ -1,68 +1,68 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL A2L 0.6 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_43", - "instantiation": "true", - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_flush_temp_fast": [ - "245" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "13" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop": [ - "0.2" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "nozzle_temperature": [ - "245" - ], - "nozzle_temperature_initial_layer": [ - "245" - ], - "overhang_fan_speed": [ - "50" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "65" - ], - "supertack_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL A2L 0.6 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_43", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_flush_temp_fast": [ + "245" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop": [ + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "65" + ], + "supertack_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A2L 0.8 nozzle.json index c7b58973cd..6e6a8af01c 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL A2L 0.8 nozzle.json @@ -1,68 +1,68 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL A2L 0.8 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_27", - "instantiation": "true", - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_flush_temp_fast": [ - "245" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "13" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop": [ - "0.2" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "nozzle_temperature": [ - "245" - ], - "nozzle_temperature_initial_layer": [ - "245" - ], - "overhang_fan_speed": [ - "50" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "65" - ], - "supertack_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL A2L 0.8 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_27", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_flush_temp_fast": [ + "245" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop": [ + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "65" + ], + "supertack_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2C 0.2 nozzle.json index 855946e799..1767dc81c5 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2C 0.2 nozzle.json @@ -1,183 +1,86 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL H2C 0.2 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_24", - "instantiation": "true", - "fan_min_speed": [ - "20" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "210", - "210" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_tower_ironing_area": [ - "8" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "250", - "250" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "0" - ], - "supertack_plate_temp": [ - "60" - ], - "supertack_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL H2C 0.2 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_24", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "210", + "210" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2C 0.4 nozzle.json index 65cdb48cd0..9611d1f270 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2C 0.4 nozzle.json @@ -1,186 +1,123 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL H2C 0.4 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_23", - "instantiation": "true", - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "20" - ], - "filament_change_length": [ - "4" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "18", - "21" - ], - "filament_pre_cooling_temperature_nc": [ - "210", - "210" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_tower_ironing_area": [ - "8" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "250", - "250" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_speed": [ - "50" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "60" - ], - "supertack_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG Basic @BBL H2C 0.4 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_23", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "18", + "21", + "18" + ], + "filament_pre_cooling_temperature_nc": [ + "210", + "210", + "210" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "250", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..f84645846a --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2C 0.8 nozzle.json @@ -0,0 +1,119 @@ +{ + "type": "filament", + "name": "Bambu PETG Basic @BBL H2C 0.8 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_44", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "21", + "28" + ], + "filament_pre_cooling_temperature_nc": [ + "210", + "210" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "2", + "2" + ], + "filament_z_hop": [ + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2C.json index a329a80c3b..1b09bc58f6 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2C.json @@ -1,181 +1,122 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL H2C", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_25", - "instantiation": "true", - "fan_min_speed": [ - "20" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "21", - "28" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "2", - "2" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop": [ - "0.2", - "0.2" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "210", - "210" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_tower_ironing_area": [ - "8" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "250", - "250" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "60" - ], - "supertack_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG Basic @BBL H2C", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_25", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "21", + "28", + "21" + ], + "filament_pre_cooling_temperature_nc": [ + "210", + "210", + "210" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "2", + "2", + "2" + ], + "filament_z_hop": [ + "0.2", + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "250", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2D 0.2 nozzle.json index 17d9507008..bc8b057d8a 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2D 0.2 nozzle.json @@ -1,138 +1,68 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL H2D 0.2 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_15", - "instantiation": "true", - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "250", - "250" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_threshold": [ - "25%" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "pre_start_fan_time": [ - "0" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL H2D 0.2 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_15", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2D 0.4 nozzle.json index 8cadbdb29f..a2fd083bc2 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2D 0.4 nozzle.json @@ -1,138 +1,92 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL H2D 0.4 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_09", - "instantiation": "true", - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "250", - "250" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL H2D 0.4 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_09", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "18", + "21", + "18" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "1" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "250", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2D 0.6 nozzle.json index 5412b73209..22ad00b017 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2D 0.6 nozzle.json @@ -1,136 +1,91 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL H2D 0.6 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_16", - "instantiation": "true", - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "28" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "0.2", - "0.2" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "250", - "255" - ], - "nozzle_temperature_initial_layer": [ - "245", - "255" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL H2D 0.6 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_16", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "21", + "28", + "21" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "250", + "255", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "255", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2D 0.8 nozzle.json new file mode 100644 index 0000000000..122c8a04cc --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2D 0.8 nozzle.json @@ -0,0 +1,97 @@ +{ + "type": "filament", + "name": "Bambu PETG Basic @BBL H2D 0.8 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_45", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "21", + "28" + ], + "filament_preheat_temperature_delta": [ + "10", + "10" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "250", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "255" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2DP 0.2 nozzle.json index 1b8658937b..36bb96bd39 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2DP 0.2 nozzle.json @@ -1,138 +1,62 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_20", - "instantiation": "true", - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "250", - "250" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_threshold": [ - "25%" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "pre_start_fan_time": [ - "0" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_20", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_tower_ironing_area": [ + "8" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2DP 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2DP 0.4 nozzle.json index fdf36b445d..c2a14583c4 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2DP 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2DP 0.4 nozzle.json @@ -1,138 +1,77 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL H2DP 0.4 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_19", - "instantiation": "true", - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "250", - "250" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG Basic @BBL H2DP 0.4 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_19", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "18", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2DP 0.6 nozzle.json index 8e8679dfb1..53a228357b 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2DP 0.6 nozzle.json @@ -1,136 +1,75 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL H2DP 0.6 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_21", - "instantiation": "true", - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "28" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "0.2", - "0.2" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "250", - "255" - ], - "nozzle_temperature_initial_layer": [ - "245", - "255" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG Basic @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_21", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "21", + "28" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "250", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "255" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2DP 0.8 nozzle.json new file mode 100644 index 0000000000..50663c56b2 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2DP 0.8 nozzle.json @@ -0,0 +1,93 @@ +{ + "type": "filament", + "name": "Bambu PETG Basic @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_46", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "21", + "28" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "250", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "255" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2S 0.2 nozzle.json index 450303dee5..7c16a6a6c9 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2S 0.2 nozzle.json @@ -1,138 +1,68 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL H2S 0.2 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_11", - "instantiation": "true", - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "250", - "250" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_threshold": [ - "25%" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "pre_start_fan_time": [ - "0" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL H2S 0.2 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_11", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2S 0.6 nozzle.json index ef961d0710..48fdf41ed8 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2S 0.6 nozzle.json @@ -1,178 +1,94 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL H2S 0.6 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_32", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "28" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_preheat_temperature_delta": [ - "10", - "10" - ], - "filament_prime_volume": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_tower_ironing_area": [ - "8" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "2", - "2" - ], - "filament_z_hop": [ - "0.2", - "0.2" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "supertack_plate_temp": [ - "60" - ], - "supertack_plate_temp_initial_layer": [ - "60" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG Basic @BBL H2S 0.6 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_32", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "21", + "28", + "21" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "2", + "2", + "2" + ], + "filament_z_hop": [ + "0.2", + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2S 0.8 nozzle.json new file mode 100644 index 0000000000..3887491880 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2S 0.8 nozzle.json @@ -0,0 +1,96 @@ +{ + "type": "filament", + "name": "Bambu PETG Basic @BBL H2S 0.8 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_47", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "21", + "28" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "2", + "2" + ], + "filament_z_hop": [ + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2S.json index 08523d6ed9..a640e8927f 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL H2S.json @@ -1,135 +1,112 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL H2S", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_10", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "18", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "2", - "2" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG Basic @BBL H2S", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_10", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_long_retractions_when_cut": [ + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "18", + "21", + "18" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "2", + "2", + "2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL P2S 0.2 nozzle.json index ff103cd3e7..c718d3d5a3 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL P2S 0.2 nozzle.json @@ -1,138 +1,71 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL P2S 0.2 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_17", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "30" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "250", - "250" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_threshold": [ - "25%" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL P2S 0.2 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_17", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_tower_ironing_area": [ + "8" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_threshold": [ + "25%" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL P2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL P2S 0.4 nozzle.json index 34f6fb644e..8c24685000 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL P2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL P2S 0.4 nozzle.json @@ -1,135 +1,95 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL P2S 0.4 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_14", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "30" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "250", - "250" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PETG Basic @BBL P2S 0.4 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_14", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "250", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL P2S 0.6 nozzle.json index c39ac4aa82..1b5a5fb77e 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL P2S 0.6 nozzle.json @@ -1,136 +1,100 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL P2S 0.6 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_18", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "30" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "23" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "0.2", - "0.2" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "250", - "250" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PETG Basic @BBL P2S 0.6 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_18", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "21", + "23", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "250", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL P2S 0.8 nozzle.json new file mode 100644 index 0000000000..0bcf1a6a65 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL P2S 0.8 nozzle.json @@ -0,0 +1,99 @@ +{ + "type": "filament", + "name": "Bambu PETG Basic @BBL P2S 0.8 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_48", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "21", + "23" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X1C 0.2 nozzle.json index 8f0ef2cd52..9d1f36e9f3 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X1C 0.2 nozzle.json @@ -1,136 +1,59 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL X1C 0.2 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_00", - "instantiation": "true", - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_threshold": [ - "25%" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1P 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL X1C 0.2 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_00", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "20" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_threshold": [ + "25%" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1P 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X1C 0.8 nozzle.json index 734ed32095..b7a18afcd6 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X1C 0.8 nozzle.json @@ -1,138 +1,84 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL X1C 0.8 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_02", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "0.2", - "0.2" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1P 0.8 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL X1C 0.8 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_02", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X1C.json index 41861cef81..a43717b952 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X1C.json @@ -1,130 +1,75 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL X1C", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_01", - "instantiation": "true", - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab X1E 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL X1C", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_01", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.2 nozzle.json index d1062bae38..69852348e4 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.2 nozzle.json @@ -1,278 +1,131 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL X2D 0.2 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_13", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil", - "3", - "3" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "30" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "2", - "2", - "0.5", - "0.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "250" - ], - "filament_tower_ironing_area": [ - "8" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "250", - "250", - "250", - "250" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245", - "245", - "245" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL X2D 0.2 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_13", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "3", + "3" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_tower_interface_print_temp": [ + "250" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "250", + "250", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245", + "245" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.4 nozzle.json index fb53d02912..c6cba824fd 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.4 nozzle.json @@ -1,278 +1,140 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL X2D 0.4 nozzle", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_12", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1", - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1", - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "30" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "15", - "21", - "15", - "15" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "250" - ], - "filament_tower_ironing_area": [ - "8" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "250", - "250", - "250", - "250" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245", - "245", - "245" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @BBL X2D 0.4 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_12", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "15", + "21", + "15", + "15", + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "250" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245", + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..bf242cb1c1 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D 0.8 nozzle.json @@ -0,0 +1,131 @@ +{ + "type": "filament", + "name": "Bambu PETG Basic @BBL X2D 0.8 nozzle", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_49", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "16", + "23", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "250" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "250", + "250", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245", + "245" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D.json index 699cf9611e..829448ab91 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @BBL X2D.json @@ -1,279 +1,137 @@ { - "type": "filament", - "name": "Bambu PETG Basic @BBL X2D", - "inherits": "Bambu PETG Basic @base", - "from": "system", - "setting_id": "GFSG00_22", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "30" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "16", - "23", - "16", - "16" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "250" - ], - "filament_tower_ironing_area": [ - "8" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "250", - "250", - "250", - "250" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245", - "245", - "245" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PETG Basic @BBL X2D", + "inherits": "Bambu PETG Basic @base", + "from": "system", + "setting_id": "GFSG00_22", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "23", + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "250" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245", + "245", + "245", + "245" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Basic @base.json b/resources/profiles/BBL/filament/Bambu PETG Basic @base.json index 619483a4b4..190dd69298 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Basic @base.json +++ b/resources/profiles/BBL/filament/Bambu PETG Basic @base.json @@ -1,96 +1,87 @@ { - "type": "filament", - "name": "Bambu PETG Basic @base", - "inherits": "fdm_filament_pet", - "from": "system", - "filament_id": "OFFvzqcd", - "instantiation": "false", - "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "10" - ], - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.25" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "8" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "filament_prime_volume_nc": [ - "60" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length": [ - "10" - ], - "filament_change_length_nc": [ - "10" - ], - "hot_plate_temp": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "impact_strength_z": [ - "13.6" - ], - "nozzle_temperature_range_low": [ - "230" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "overhang_fan_speed": [ - "90" - ], - "overhang_fan_threshold": [ - "10%" - ], - "override_process_overhang_speed": [ - "0" - ], - "slow_down_layer_time": [ - "12" - ], - "temperature_vitrification": [ - "60" - ], - "textured_plate_temp": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PETG Basic @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "OFFvzqcd", + "instantiation": "false", + "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_change_length_nc": [ + "10" + ], + "filament_cost": [ + "13.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "13.6" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "temperature_vitrification": [ + "60" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1 0.2 nozzle.json index 77f6e452d3..d089948098 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1 0.2 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL A1 0.2 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "15" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "nozzle_temperature": [ - "240" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "7" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL A1 0.2 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "nozzle_temperature": [ + "240" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "7" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1 0.8 nozzle.json index ffb7a658bc..6dc3ba8f3c 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1 0.8 nozzle.json @@ -1,45 +1,45 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL A1 0.8 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "15" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "nozzle_temperature": [ - "240" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "7" - ], - "compatible_printers": [ - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL A1 0.8 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "nozzle_temperature": [ + "240" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "7" + ], + "compatible_printers": [ + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1.json index 0b5b8b61ef..7f430d4393 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL A1", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "15" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "nozzle_temperature": [ - "240" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "7" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL A1", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "nozzle_temperature": [ + "240" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "7" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1M 0.2 nozzle.json index fd3b52c2db..4ba45d6b8a 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1M 0.2 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL A1M 0.2 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_07", - "instantiation": "true", - "fan_cooling_layer_time": [ - "15" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "nozzle_temperature": [ - "240" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "7" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL A1M 0.2 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_07", + "instantiation": "true", + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "nozzle_temperature": [ + "240" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "7" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1M 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1M 0.8 nozzle.json index 0b13bb78e9..479e3ddd49 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1M 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1M 0.8 nozzle.json @@ -1,45 +1,45 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL A1M 0.8 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_08", - "instantiation": "true", - "fan_cooling_layer_time": [ - "15" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "nozzle_temperature": [ - "240" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "7" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL A1M 0.8 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_08", + "instantiation": "true", + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "nozzle_temperature": [ + "240" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "7" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1M.json index 62169f35db..a638fb49e0 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A1M.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL A1M", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_06", - "instantiation": "true", - "fan_cooling_layer_time": [ - "15" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "nozzle_temperature": [ - "240" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "7" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL A1M", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "nozzle_temperature": [ + "240" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "7" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A2L 0.2 nozzle.json index 210184c7ee..7ef3f24ad1 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A2L 0.2 nozzle.json @@ -1,77 +1,77 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL A2L 0.2 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_26", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "40" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_flush_temp_fast": [ - "240" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "1" - ], - "filament_overhang_4_4_speed": [ - "30" - ], - "filament_overhang_totally_speed": [ - "25" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "nozzle_temperature": [ - "240" - ], - "overhang_fan_speed": [ - "100" - ], - "override_process_overhang_speed": [ - "1" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "25" - ], - "slow_down_min_speed": [ - "40" - ], - "supertack_plate_temp": [ - "65" - ], - "supertack_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL A2L 0.2 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_26", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_flush_temp_fast": [ + "240" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "filament_overhang_4_4_speed": [ + "30" + ], + "filament_overhang_totally_speed": [ + "25" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "240" + ], + "overhang_fan_speed": [ + "100" + ], + "override_process_overhang_speed": [ + "1" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "25" + ], + "slow_down_min_speed": [ + "40" + ], + "supertack_plate_temp": [ + "65" + ], + "supertack_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A2L 0.6 nozzle.json index f816e7f742..7e34d59fe7 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A2L 0.6 nozzle.json @@ -1,68 +1,68 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL A2L 0.6 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_49", - "instantiation": "true", - "fan_cooling_layer_time": [ - "15" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_flush_temp_fast": [ - "240" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "nozzle_temperature": [ - "240" - ], - "overhang_fan_speed": [ - "50" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "7" - ], - "supertack_plate_temp": [ - "65" - ], - "supertack_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL A2L 0.6 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_49", + "instantiation": "true", + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_flush_temp_fast": [ + "240" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "240" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "7" + ], + "supertack_plate_temp": [ + "65" + ], + "supertack_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A2L 0.8 nozzle.json index eff5d65efc..7798ceef64 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A2L 0.8 nozzle.json @@ -1,68 +1,68 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL A2L 0.8 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_27", - "instantiation": "true", - "fan_cooling_layer_time": [ - "15" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_flush_temp_fast": [ - "240" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "nozzle_temperature": [ - "240" - ], - "overhang_fan_speed": [ - "50" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "7" - ], - "supertack_plate_temp": [ - "65" - ], - "supertack_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL A2L 0.8 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_27", + "instantiation": "true", + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_flush_temp_fast": [ + "240" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "240" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "7" + ], + "supertack_plate_temp": [ + "65" + ], + "supertack_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A2L.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A2L.json index bf03c0b74e..412c60c69c 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL A2L.json @@ -1,71 +1,71 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL A2L", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_28", - "instantiation": "true", - "fan_cooling_layer_time": [ - "15" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "240" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "nozzle_temperature": [ - "240" - ], - "overhang_fan_speed": [ - "50" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "7" - ], - "supertack_plate_temp": [ - "65" - ], - "supertack_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL A2L", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_28", + "instantiation": "true", + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "240" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "240" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "7" + ], + "supertack_plate_temp": [ + "65" + ], + "supertack_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2C 0.2 nozzle.json index 6e43d2467d..0fbf4068cb 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2C 0.2 nozzle.json @@ -1,216 +1,119 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL H2C 0.2 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_24", - "instantiation": "true", - "counter_coef_2": [ - "0.0058" - ], - "counter_coef_3": [ - "0.0107" - ], - "counter_limit_max": [ - "0.15" - ], - "counter_limit_min": [ - "0.01" - ], - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_tower_ironing_area": [ - "8" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_pre_cooling_temperature_nc": [ - "205", - "205" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0042" - ], - "hole_coef_3": [ - "0.2006" - ], - "hole_limit_max": [ - "0.2" - ], - "hole_limit_min": [ - "0.09" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "60" - ], - "supertack_plate_temp_initial_layer": [ - "60" - ], - "temperature_vitrification": [ - "55" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL H2C 0.2 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_24", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_max": [ + "0.15" + ], + "counter_limit_min": [ + "0.01" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_pre_cooling_temperature_nc": [ + "205", + "205" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_max": [ + "0.2" + ], + "hole_limit_min": [ + "0.09" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "temperature_vitrification": [ + "55" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2C 0.6 nozzle.json index 03f2f3c393..71292a2121 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2C 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2C 0.6 nozzle.json @@ -1,216 +1,158 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL H2C 0.6 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_33", - "instantiation": "true", - "counter_coef_2": [ - "0.0058" - ], - "counter_coef_3": [ - "0.0107" - ], - "counter_limit_max": [ - "0.15" - ], - "counter_limit_min": [ - "0.01" - ], - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_tower_ironing_area": [ - "8" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "30", - "35" - ], - "filament_pre_cooling_temperature_nc": [ - "205", - "205" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "2", - "2" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0042" - ], - "hole_coef_3": [ - "0.2006" - ], - "hole_limit_max": [ - "0.2" - ], - "hole_limit_min": [ - "0.09" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "60" - ], - "supertack_plate_temp_initial_layer": [ - "60" - ], - "temperature_vitrification": [ - "55" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG HF @BBL H2C 0.6 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_33", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_min": [ + "0.01" + ], + "counter_limit_max": [ + "0.15" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "30", + "35", + "30" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "205", + "205", + "205" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "2", + "2", + "2" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_min": [ + "0.09" + ], + "hole_limit_max": [ + "0.2" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "55" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2C 0.8 nozzle.json index d035ce27b3..6be40ba26d 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2C 0.8 nozzle.json @@ -1,216 +1,143 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL H2C 0.8 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_34", - "instantiation": "true", - "counter_coef_2": [ - "0.0058" - ], - "counter_coef_3": [ - "0.0107" - ], - "counter_limit_max": [ - "0.15" - ], - "counter_limit_min": [ - "0.01" - ], - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_tower_ironing_area": [ - "8" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "30", - "35" - ], - "filament_pre_cooling_temperature_nc": [ - "205", - "205" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "2", - "2" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0042" - ], - "hole_coef_3": [ - "0.2006" - ], - "hole_limit_max": [ - "0.2" - ], - "hole_limit_min": [ - "0.09" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "60" - ], - "supertack_plate_temp_initial_layer": [ - "60" - ], - "temperature_vitrification": [ - "55" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL H2C 0.8 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_34", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_max": [ + "0.15" + ], + "counter_limit_min": [ + "0.01" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_flow_ratio": [ + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "30", + "35" + ], + "filament_pre_cooling_temperature_nc": [ + "205", + "205" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "2", + "2" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_max": [ + "0.2" + ], + "hole_limit_min": [ + "0.09" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "temperature_vitrification": [ + "55" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2C.json index 78644d0987..77226518e4 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2C.json @@ -1,216 +1,158 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL H2C", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_25", - "instantiation": "true", - "counter_coef_2": [ - "0.0058" - ], - "counter_coef_3": [ - "0.0107" - ], - "counter_limit_max": [ - "0.15" - ], - "counter_limit_min": [ - "0.01" - ], - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_tower_ironing_area": [ - "8" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "25", - "35" - ], - "filament_pre_cooling_temperature_nc": [ - "205", - "205" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "2", - "2" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.6" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0042" - ], - "hole_coef_3": [ - "0.2006" - ], - "hole_limit_max": [ - "0.2" - ], - "hole_limit_min": [ - "0.09" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "60" - ], - "supertack_plate_temp_initial_layer": [ - "60" - ], - "temperature_vitrification": [ - "55" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG HF @BBL H2C", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_25", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_min": [ + "0.01" + ], + "counter_limit_max": [ + "0.15" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "25", + "35", + "25" + ], + "filament_retraction_length": [ + "0.4", + "0.6", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "205", + "205", + "205" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "2", + "2", + "2" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_min": [ + "0.09" + ], + "hole_limit_max": [ + "0.2" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "55" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2D 0.2 nozzle.json index 3953c3f68b..d7e22db57d 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2D 0.2 nozzle.json @@ -1,143 +1,95 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL H2D 0.2 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_14", - "instantiation": "true", - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL H2D 0.2 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_14", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_max": [ + "0.15" + ], + "counter_limit_min": [ + "0.01" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_max": [ + "0.2" + ], + "hole_limit_min": [ + "0.09" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2D 0.4 nozzle.json index fabc0cd48e..e53509cfa5 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2D 0.4 nozzle.json @@ -1,164 +1,124 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL H2D 0.4 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_09", - "instantiation": "true", - "counter_coef_2": [ - "0.007" - ], - "counter_coef_3": [ - "0.003" - ], - "counter_limit_max": [ - "0.1" - ], - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "25", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "fan_max_speed": [ - "30" - ], - "hole_coef_2": [ - "-0.006" - ], - "hole_coef_3": [ - "0.1" - ], - "hole_limit_min": [ - "0.1" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL H2D 0.4 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_09", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_max": [ + "0.15" + ], + "counter_limit_min": [ + "0.01" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "25", + "40", + "25" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "1" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_max": [ + "0.2" + ], + "hole_limit_min": [ + "0.09" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2D 0.6 nozzle.json index e19fb77cf7..4ebbc2da27 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2D 0.6 nozzle.json @@ -1,143 +1,126 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL H2D 0.6 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_15", - "instantiation": "true", - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "0.2", - "0.2" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL H2D 0.6 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_15", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_max": [ + "0.15" + ], + "counter_limit_min": [ + "0.01" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "30", + "40", + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_max": [ + "0.2" + ], + "hole_limit_min": [ + "0.09" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2D 0.8 nozzle.json index bf0e49095f..20402f5724 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2D 0.8 nozzle.json @@ -1,147 +1,119 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL H2D 0.8 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_29", - "instantiation": "true", - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "0.2", - "0.2" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_extruder_id": [ - "1", - "1" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL H2D 0.8 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_29", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_max": [ + "0.15" + ], + "counter_limit_min": [ + "0.01" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_max_volumetric_speed": [ + "30", + "40" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_extruder_id": [ + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_max": [ + "0.2" + ], + "hole_limit_min": [ + "0.09" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2DP 0.2 nozzle.json index 6a8237d798..e0eaa5b1f4 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2DP 0.2 nozzle.json @@ -1,143 +1,68 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_20", - "instantiation": "true", - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_20", + "instantiation": "true", + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_tower_ironing_area": [ + "8" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2DP 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2DP 0.4 nozzle.json index 50b1586b33..7fec884516 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2DP 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2DP 0.4 nozzle.json @@ -1,161 +1,102 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL H2DP 0.4 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_19", - "instantiation": "true", - "counter_coef_2": [ - "0.007" - ], - "counter_coef_3": [ - "0.003" - ], - "counter_limit_max": [ - "0.1" - ], - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "25", - "35" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_2": [ - "-0.006" - ], - "hole_coef_3": [ - "0.1" - ], - "hole_limit_min": [ - "0.1" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG HF @BBL H2DP 0.4 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_19", + "instantiation": "true", + "counter_coef_2": [ + "0.007" + ], + "counter_coef_3": [ + "0.003" + ], + "counter_limit_max": [ + "0.1" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "25", + "35" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.006" + ], + "hole_coef_3": [ + "0.1" + ], + "hole_limit_min": [ + "0.1" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end 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 f72a06450b..9a75d0fb5c 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 @@ -1,143 +1,88 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL H2DP 0.6 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_21", - "instantiation": "true", - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "0.2", - "0.2" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG HF @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_21", + "instantiation": "true", + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "30", + "40" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2DP 0.8 nozzle.json index abab8e9e03..d4f215c1f2 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2DP 0.8 nozzle.json @@ -1,143 +1,88 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL H2DP 0.8 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_30", - "instantiation": "true", - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "0.2", - "0.2" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_30", + "instantiation": "true", + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "30", + "40" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2S 0.2 nozzle.json index 776c191ccf..ecfadc5c2f 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2S 0.2 nozzle.json @@ -1,146 +1,110 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL H2S 0.2 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_11", - "instantiation": "true", - "fan_cooling_layer_time": [ - "20" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL H2S 0.2 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_11", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_min": [ + "0.01" + ], + "counter_limit_max": [ + "0.15" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_min": [ + "0.09" + ], + "hole_limit_max": [ + "0.2" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2S 0.6 nozzle.json index f77ac4b413..a06b5d9f2a 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2S 0.6 nozzle.json @@ -1,146 +1,134 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL H2S 0.6 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_32", - "instantiation": "true", - "fan_cooling_layer_time": [ - "20" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG HF @BBL H2S 0.6 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_32", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_min": [ + "0.01" + ], + "counter_limit_max": [ + "0.15" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_max_volumetric_speed": [ + "30", + "40", + "30" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_min": [ + "0.09" + ], + "hole_limit_max": [ + "0.2" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2S 0.8 nozzle.json index 8e41f3d065..2c38bb2fd7 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2S 0.8 nozzle.json @@ -1,146 +1,122 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL H2S 0.8 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_31", - "instantiation": "true", - "fan_cooling_layer_time": [ - "20" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL H2S 0.8 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_31", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_min": [ + "0.01" + ], + "counter_limit_max": [ + "0.15" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_max_volumetric_speed": [ + "30", + "40" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_min": [ + "0.09" + ], + "hole_limit_max": [ + "0.2" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2S.json index 192286470e..1fc3f03964 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2S.json @@ -1,146 +1,134 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL H2S", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "20" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "25", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "overhang_fan_speed": [ - "100" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG HF @BBL H2S", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_10", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_min": [ + "0.01" + ], + "counter_limit_max": [ + "0.15" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_max_volumetric_speed": [ + "25", + "40", + "25" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_min": [ + "0.09" + ], + "hole_limit_max": [ + "0.2" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL P1P 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL P1P 0.4 nozzle.json new file mode 100644 index 0000000000..c50087e617 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL P1P 0.4 nozzle.json @@ -0,0 +1,74 @@ +{ + "type": "filament", + "name": "Bambu PETG HF @BBL P1P 0.4 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_35", + "instantiation": "true", + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.95", + "0.952" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "29" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL P1S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL P1S 0.4 nozzle.json new file mode 100644 index 0000000000..782a19a045 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL P1S 0.4 nozzle.json @@ -0,0 +1,74 @@ +{ + "type": "filament", + "name": "Bambu PETG HF @BBL P1S 0.4 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_36", + "instantiation": "true", + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.95", + "0.952" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "29" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL P2S 0.2 nozzle.json index 2395c2dfb2..7160dd0f0d 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL P2S 0.2 nozzle.json @@ -1,183 +1,127 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL P2S 0.2 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_17", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "40" - ], - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "0", - "0" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "overhang_fan_speed": [ - "100" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL P2S 0.2 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_17", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "40" + ], + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_max": [ + "0.15" + ], + "counter_limit_min": [ + "0.01" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "0", + "0" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_max": [ + "0.2" + ], + "hole_limit_min": [ + "0.09" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL P2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL P2S 0.4 nozzle.json index 9f5ed9fb53..4ff218f195 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL P2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL P2S 0.4 nozzle.json @@ -1,180 +1,138 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL P2S 0.4 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_16", - "instantiation": "true", - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "240", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "30" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "0", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "overhang_fan_speed": [ - "100" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PETG HF @BBL P2S 0.4 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_16", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_min": [ + "0.01" + ], + "counter_limit_max": [ + "0.15" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_flush_temp": [ + "240", + "0", + "240" + ], + "filament_max_volumetric_speed": [ + "21", + "30", + "21" + ], + "filament_retraction_distances_when_cut": [ + "0", + "10", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_min": [ + "0.09" + ], + "hole_limit_max": [ + "0.2" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL P2S 0.6 nozzle.json index 8caf08af09..10b8b449d7 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL P2S 0.6 nozzle.json @@ -1,181 +1,133 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL P2S 0.6 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_18", - "instantiation": "true", - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "35" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "overhang_fan_speed": [ - "100" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PETG HF @BBL P2S 0.6 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_18", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_max": [ + "0.15" + ], + "counter_limit_min": [ + "0.01" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "21", + "35", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_max": [ + "0.2" + ], + "hole_limit_min": [ + "0.09" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL P2S 0.8 nozzle.json new file mode 100644 index 0000000000..f214212555 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL P2S 0.8 nozzle.json @@ -0,0 +1,132 @@ +{ + "type": "filament", + "name": "Bambu PETG HF @BBL P2S 0.8 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_50", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_max": [ + "0.15" + ], + "counter_limit_min": [ + "0.01" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "21", + "35" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_max": [ + "0.2" + ], + "hole_limit_min": [ + "0.09" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X1C 0.2 nozzle.json index c75cac18d1..52cf7e42be 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X1C 0.2 nozzle.json @@ -1,138 +1,66 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL X1C 0.2 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_01", - "instantiation": "true", - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "overhang_fan_speed": [ - "100" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL X1C 0.2 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_01", + "instantiation": "true", + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..5461db84fe --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X1C 0.6 nozzle.json @@ -0,0 +1,74 @@ +{ + "type": "filament", + "name": "Bambu PETG HF @BBL X1C 0.6 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_37", + "instantiation": "true", + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.95", + "0.952" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "29" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.8" + ], + "filament_z_hop": [ + "nil", + "0.4" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X1C 0.8 nozzle.json index c5247a5fb3..e0df40dfcc 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X1C 0.8 nozzle.json @@ -1,143 +1,82 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL X1C 0.8 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_02", - "instantiation": "true", - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "overhang_fan_speed": [ - "100" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL X1C 0.8 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.95", + "0.952" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "29" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X1C.json index 5e9eb16394..38d2d0a11b 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X1C.json @@ -1,138 +1,76 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL X1C", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_00", - "instantiation": "true", - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "overhang_fan_speed": [ - "100" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab X1E 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL X1C", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_00", + "instantiation": "true", + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.95", + "0.952" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "29" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.2 nozzle.json index 07bd51a1a9..20e69622e7 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.2 nozzle.json @@ -1,311 +1,170 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL X2D 0.2 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_13", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil", - "3", - "3" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "counter_coef_2": [ - "0.0058" - ], - "counter_coef_3": [ - "0.0107" - ], - "counter_limit_max": [ - "0.15" - ], - "counter_limit_min": [ - "0.01" - ], - "fan_cooling_layer_time": [ - "20" - ], - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "30" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "2", - "2", - "0.5", - "0.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "245" - ], - "filament_tower_ironing_area": [ - "8" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "hole_coef_2": [ - "-0.0042" - ], - "hole_coef_3": [ - "0.2006" - ], - "hole_limit_max": [ - "0.2" - ], - "hole_limit_min": [ - "0.09" - ], - "nozzle_temperature": [ - "245", - "245", - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "overhang_fan_speed": [ - "100" - ], - "slow_down_layer_time": [ - "10" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL X2D 0.2 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_13", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_max": [ + "0.15" + ], + "counter_limit_min": [ + "0.01" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "3", + "3" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_max": [ + "0.2" + ], + "hole_limit_min": [ + "0.09" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.4 nozzle.json index 381ae65dd5..81ffc9bf01 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.4 nozzle.json @@ -1,311 +1,178 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL X2D 0.4 nozzle", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_12", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1", - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1", - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "counter_coef_2": [ - "0.0058" - ], - "counter_coef_3": [ - "0.0107" - ], - "counter_limit_max": [ - "0.15" - ], - "counter_limit_min": [ - "0.01" - ], - "fan_cooling_layer_time": [ - "20" - ], - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "30" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "21", - "30", - "21", - "21" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "245" - ], - "filament_tower_ironing_area": [ - "8" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "hole_coef_2": [ - "-0.0042" - ], - "hole_coef_3": [ - "0.2006" - ], - "hole_limit_max": [ - "0.2" - ], - "hole_limit_min": [ - "0.09" - ], - "nozzle_temperature": [ - "245", - "245", - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "overhang_fan_speed": [ - "100" - ], - "slow_down_layer_time": [ - "10" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PETG HF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_12", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_max": [ + "0.15" + ], + "counter_limit_min": [ + "0.01" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "21", + "30", + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_max": [ + "0.2" + ], + "hole_limit_min": [ + "0.09" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "overhang_fan_speed": [ + "50" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..6db5064f92 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D 0.8 nozzle.json @@ -0,0 +1,170 @@ +{ + "type": "filament", + "name": "Bambu PETG HF @BBL X2D 0.8 nozzle", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_51", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_max": [ + "0.15" + ], + "counter_limit_min": [ + "0.01" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "21", + "35", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_max": [ + "0.2" + ], + "hole_limit_min": [ + "0.09" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D.json index e7e516b72a..84f2ede658 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL X2D.json @@ -1,312 +1,178 @@ { - "type": "filament", - "name": "Bambu PETG HF @BBL X2D", - "inherits": "Bambu PETG HF @base", - "from": "system", - "setting_id": "GFSG02_22", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "counter_coef_2": [ - "0.0058" - ], - "counter_coef_3": [ - "0.0107" - ], - "counter_limit_max": [ - "0.15" - ], - "counter_limit_min": [ - "0.01" - ], - "fan_cooling_layer_time": [ - "20" - ], - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "30" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "21", - "35", - "21", - "21" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "245" - ], - "filament_tower_ironing_area": [ - "8" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "hole_coef_2": [ - "-0.0042" - ], - "hole_coef_3": [ - "0.2006" - ], - "hole_limit_max": [ - "0.2" - ], - "hole_limit_min": [ - "0.09" - ], - "nozzle_temperature": [ - "245", - "245", - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "overhang_fan_speed": [ - "100" - ], - "slow_down_layer_time": [ - "10" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PETG HF @BBL X2D", + "inherits": "Bambu PETG HF @base", + "from": "system", + "setting_id": "GFSG02_22", + "instantiation": "true", + "counter_coef_2": [ + "0.0058" + ], + "counter_coef_3": [ + "0.0107" + ], + "counter_limit_max": [ + "0.15" + ], + "counter_limit_min": [ + "0.01" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "21", + "35", + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0042" + ], + "hole_coef_3": [ + "0.2006" + ], + "hole_limit_max": [ + "0.2" + ], + "hole_limit_min": [ + "0.09" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @base.json b/resources/profiles/BBL/filament/Bambu PETG HF @base.json index 1c12d679fd..fefe42ac28 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @base.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @base.json @@ -1,89 +1,89 @@ { - "type": "filament", - "name": "Bambu PETG HF @base", - "inherits": "fdm_filament_pet", - "from": "system", - "filament_id": "OFovEIbw", - "instantiation": "false", - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "10" - ], - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.28" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "filament_change_length": [ - "12" - ], - "filament_prime_volume": [ - "30" - ], - "hot_plate_temp": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "impact_strength_z": [ - "10.6" - ], - "nozzle_temperature": [ - "245" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "nozzle_temperature_range_low": [ - "230" - ], - "overhang_fan_speed": [ - "90" - ], - "overhang_fan_threshold": [ - "10%" - ], - "slow_down_layer_time": [ - "12" - ], - "textured_plate_temp": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PETG HF @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "OFovEIbw", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_change_length": [ + "12" + ], + "filament_cost": [ + "15.99" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_prime_volume": [ + "30" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "10.6" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1 0.2 nozzle.json new file mode 100644 index 0000000000..e2bbaa0e7b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1 0.2 nozzle.json @@ -0,0 +1,47 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL A1 0.2 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_00", + "instantiation": "true", + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "35" + ], + "fan_min_speed": [ + "20" + ], + "filament_density": [ + "1.37" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.8" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_layer_time": [ + "7" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1 0.8 nozzle.json new file mode 100644 index 0000000000..f410300947 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1 0.8 nozzle.json @@ -0,0 +1,51 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL A1 0.8 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_01", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_density": [ + "1.37" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.8" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop": [ + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "pre_start_fan_time": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab A1 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1.json new file mode 100644 index 0000000000..f212c248e8 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1.json @@ -0,0 +1,56 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL A1", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_02", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_density": [ + "1.37" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.8" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "235" + ], + "nozzle_temperature_initial_layer": [ + "235" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1M 0.2 nozzle.json new file mode 100644 index 0000000000..5f3b510aa8 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1M 0.2 nozzle.json @@ -0,0 +1,44 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL A1M 0.2 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "35" + ], + "fan_min_speed": [ + "20" + ], + "filament_density": [ + "1.37" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_layer_time": [ + "7" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1M 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1M 0.4 nozzle.json new file mode 100644 index 0000000000..733839d8d8 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1M 0.4 nozzle.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL A1M 0.4 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_04", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_density": [ + "1.37" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.8" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1M 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1M 0.8 nozzle.json new file mode 100644 index 0000000000..a3c52ef081 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A1M 0.8 nozzle.json @@ -0,0 +1,51 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL A1M 0.8 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_05", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_density": [ + "1.37" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.8" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop": [ + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "pre_start_fan_time": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A2L 0.2 nozzle.json new file mode 100644 index 0000000000..be6d4bb72b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A2L 0.2 nozzle.json @@ -0,0 +1,80 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL A2L 0.2 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_flush_temp_fast": [ + "255" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "filament_overhang_4_4_speed": [ + "30" + ], + "filament_overhang_totally_speed": [ + "25" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "override_process_overhang_speed": [ + "1" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "25" + ], + "slow_down_min_speed": [ + "40" + ], + "supertack_plate_temp": [ + "65" + ], + "supertack_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A2L 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A2L 0.4 nozzle.json new file mode 100644 index 0000000000..366438e579 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A2L 0.4 nozzle.json @@ -0,0 +1,80 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL A2L 0.4 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_07", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_bridge_speed": [ + "50" + ], + "filament_cooling_before_tower": [ + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_flow_ratio": [ + "0.93" + ], + "filament_flush_temp_fast": [ + "245" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_overhang_4_4_speed": [ + "20" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.6" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "override_process_overhang_speed": [ + "1" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "65" + ], + "supertack_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A2L 0.6 nozzle.json new file mode 100644 index 0000000000..b614953750 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A2L 0.6 nozzle.json @@ -0,0 +1,74 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL A2L 0.6 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_08", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_flow_ratio": [ + "0.93" + ], + "filament_flush_temp_fast": [ + "245" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.6" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop": [ + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "65" + ], + "supertack_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A2L 0.8 nozzle.json new file mode 100644 index 0000000000..b659affbc2 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL A2L 0.8 nozzle.json @@ -0,0 +1,80 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL A2L 0.8 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_09", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_deretraction_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.92" + ], + "filament_flush_temp_fast": [ + "245" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.6" + ], + "filament_retraction_speed": [ + "50" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop": [ + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "65" + ], + "supertack_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2C 0.2 nozzle.json new file mode 100644 index 0000000000..11e340a26f --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2C 0.2 nozzle.json @@ -0,0 +1,100 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL H2C 0.2 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_10", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_flow_ratio": [ + "0.96", + "0.95" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_pre_cooling_temperature_nc": [ + "210", + "210" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.6", + "nil" + ], + "filament_tower_ironing_area": [ + "8" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2C 0.4 nozzle.json new file mode 100644 index 0000000000..1feb3bc3d1 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2C 0.4 nozzle.json @@ -0,0 +1,126 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL H2C 0.4 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_11", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_flow_ratio": [ + "0.96", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "15", + "21", + "21" + ], + "filament_pre_cooling_temperature_nc": [ + "210", + "210", + "210" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.6", + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "40" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..57ada86690 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2C 0.8 nozzle.json @@ -0,0 +1,125 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL H2C 0.8 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_12", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.96", + "0.97" + ], + "filament_max_volumetric_speed": [ + "15", + "28" + ], + "filament_pre_cooling_temperature_nc": [ + "210", + "210" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.6", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "2", + "2" + ], + "filament_z_hop": [ + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "40" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2C.json new file mode 100644 index 0000000000..c848448b3b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2C.json @@ -0,0 +1,128 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL H2C", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_13", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_flow_ratio": [ + "0.96", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "15", + "28", + "28" + ], + "filament_pre_cooling_temperature_nc": [ + "210", + "210", + "210" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.6", + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "2", + "2", + "2" + ], + "filament_z_hop": [ + "0.2", + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "40" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2D 0.2 nozzle.json new file mode 100644 index 0000000000..a50efe69d3 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2D 0.2 nozzle.json @@ -0,0 +1,77 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL H2D 0.2 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_14", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "nil" + ], + "filament_retraction_speed": [ + "30", + "nil" + ], + "filament_tower_ironing_area": [ + "8" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2D 0.4 nozzle.json new file mode 100644 index 0000000000..037dbb39fc --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2D 0.4 nozzle.json @@ -0,0 +1,105 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL H2D 0.4 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_15", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_max_volumetric_speed": [ + "18", + "21", + "21" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.4", + "0.4" + ], + "filament_retraction_speed": [ + "30", + "nil", + "nil" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2D 0.6 nozzle.json new file mode 100644 index 0000000000..a60362042d --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2D 0.6 nozzle.json @@ -0,0 +1,104 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL H2D 0.6 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_16", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_max_volumetric_speed": [ + "21", + "28", + "28" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.4", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "30", + "nil", + "nil" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "255", + "255" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2D 0.8 nozzle.json new file mode 100644 index 0000000000..003c19bb28 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2D 0.8 nozzle.json @@ -0,0 +1,104 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL H2D 0.8 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_17", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "21", + "28" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.4" + ], + "filament_retraction_speed": [ + "30", + "nil" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "255" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2DP 0.2 nozzle.json new file mode 100644 index 0000000000..8ba7e1fd4e --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2DP 0.2 nozzle.json @@ -0,0 +1,79 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_18", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "nil" + ], + "filament_retraction_minimum_travel": [ + "30", + "nil" + ], + "filament_tower_ironing_area": [ + "8" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2DP 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2DP 0.4 nozzle.json new file mode 100644 index 0000000000..201b082b3f --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2DP 0.4 nozzle.json @@ -0,0 +1,100 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL H2DP 0.4 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_19", + "instantiation": "true", + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_max_volumetric_speed": [ + "18", + "21", + "21" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.4", + "0.4" + ], + "filament_retraction_speed": [ + "30", + "nil", + "nil" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2DP 0.6 nozzle.json new file mode 100644 index 0000000000..292a5d108e --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2DP 0.6 nozzle.json @@ -0,0 +1,99 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_20", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_max_volumetric_speed": [ + "21", + "28", + "28" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.4", + "0.4" + ], + "filament_retraction_speed": [ + "30", + "nil", + "nil" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "255", + "255" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2DP 0.8 nozzle.json new file mode 100644 index 0000000000..085e159b28 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2DP 0.8 nozzle.json @@ -0,0 +1,100 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_21", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "21", + "28" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.4" + ], + "filament_retraction_speed": [ + "30", + "nil" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "255" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2S 0.2 nozzle.json new file mode 100644 index 0000000000..ca2e8219fa --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2S 0.2 nozzle.json @@ -0,0 +1,65 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL H2S 0.2 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_22", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_tower_ironing_area": [ + "8" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2S 0.6 nozzle.json new file mode 100644 index 0000000000..052d7c8068 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2S 0.6 nozzle.json @@ -0,0 +1,91 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL H2S 0.6 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_23", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_max_volumetric_speed": [ + "21", + "28", + "28" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "2", + "2", + "2" + ], + "filament_z_hop": [ + "0.2", + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2S 0.8 nozzle.json new file mode 100644 index 0000000000..3346abab97 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2S 0.8 nozzle.json @@ -0,0 +1,93 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL H2S 0.8 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_24", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "21", + "28" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "2", + "2" + ], + "filament_z_hop": [ + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2S.json new file mode 100644 index 0000000000..0f95f15edd --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL H2S.json @@ -0,0 +1,109 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL H2S", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_25", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_long_retractions_when_cut": [ + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "18", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "2", + "2", + "2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P1P 0.2 nozzle.json new file mode 100644 index 0000000000..4f6e6b260a --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P1P 0.2 nozzle.json @@ -0,0 +1,75 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL P1P 0.2 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_49", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "20" + ], + "filament_density": [ + "1.37" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "nil" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "250", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_threshold": [ + "25%" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P1P 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P1P 0.4 nozzle.json new file mode 100644 index 0000000000..793997445f --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P1P 0.4 nozzle.json @@ -0,0 +1,87 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL P1P 0.4 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_50", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_density": [ + "1.37" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "250", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P1P 0.6 nozzle.json new file mode 100644 index 0000000000..6c379dd43d --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P1P 0.6 nozzle.json @@ -0,0 +1,93 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL P1P 0.6 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_51", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_density": [ + "1.37" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "250", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P2S 0.2 nozzle.json new file mode 100644 index 0000000000..8f17112e84 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P2S 0.2 nozzle.json @@ -0,0 +1,93 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL P2S 0.2 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_38", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_overhang_2_4_speed": [ + "80", + "50" + ], + "filament_overhang_3_4_speed": [ + "50", + "30" + ], + "filament_overhang_4_4_speed": [ + "50", + "10" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil" + ], + "filament_tower_ironing_area": [ + "8" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "25%" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P2S 0.4 nozzle.json new file mode 100644 index 0000000000..252bc6f136 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P2S 0.4 nozzle.json @@ -0,0 +1,116 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL P2S 0.4 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_39", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_max_volumetric_speed": [ + "13", + "15", + "15" + ], + "filament_overhang_2_4_speed": [ + "80", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "50", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "50", + "10", + "10" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "240", + "245", + "245" + ], + "overhang_fan_speed": [ + "40" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P2S 0.6 nozzle.json new file mode 100644 index 0000000000..4297e9278c --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P2S 0.6 nozzle.json @@ -0,0 +1,121 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL P2S 0.6 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_40", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_max_volumetric_speed": [ + "15", + "23", + "23" + ], + "filament_overhang_2_4_speed": [ + "80", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "50", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "50", + "10", + "10" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "40" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P2S 0.8 nozzle.json new file mode 100644 index 0000000000..df51c24fd2 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL P2S 0.8 nozzle.json @@ -0,0 +1,117 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL P2S 0.8 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_41", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "15", + "23" + ], + "filament_overhang_2_4_speed": [ + "80", + "50" + ], + "filament_overhang_3_4_speed": [ + "50", + "30" + ], + "filament_overhang_4_4_speed": [ + "50", + "10" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "40" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X1C 0.2 nozzle.json new file mode 100644 index 0000000000..31a5b61e21 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X1C 0.2 nozzle.json @@ -0,0 +1,64 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL X1C 0.2 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_42", + "instantiation": "true", + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "20" + ], + "filament_density": [ + "1.37" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.8", + "nil" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "250", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_threshold": [ + "25%" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X1C 0.8 nozzle.json new file mode 100644 index 0000000000..23db5e43c6 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X1C 0.8 nozzle.json @@ -0,0 +1,83 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL X1C 0.8 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_43", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_density": [ + "1.37" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop": [ + "0.2", + "0.2" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "250", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X1C.json new file mode 100644 index 0000000000..e56d030427 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X1C.json @@ -0,0 +1,76 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL X1C", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_44", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_density": [ + "1.37" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.8", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "250", + "255" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..0e56e63a37 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X2D 0.2 nozzle.json @@ -0,0 +1,131 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL X2D 0.2 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_45", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.8", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "245", + "270", + "250", + "270" + ], + "nozzle_temperature_initial_layer": [ + "245", + "260", + "245", + "260" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..a95be25e66 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X2D 0.4 nozzle.json @@ -0,0 +1,143 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL X2D 0.4 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_46", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "13", + "21", + "21", + "13", + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.8", + "0.4", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "250" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "245", + "250", + "250", + "250", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245", + "245", + "245", + "245" + ], + "overhang_fan_speed": [ + "50" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..9b9fa384c8 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X2D 0.8 nozzle.json @@ -0,0 +1,134 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL X2D 0.8 nozzle", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_47", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "15", + "23", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.8", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "250" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "245", + "250", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245", + "245" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X2D.json new file mode 100644 index 0000000000..8e90a43b96 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @BBL X2D.json @@ -0,0 +1,140 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @BBL X2D", + "inherits": "Bambu PETG Matte @base", + "from": "system", + "setting_id": "GFSG03_48", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_density": [ + "1.37" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "15", + "23", + "23", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.8", + "nil", + "nil", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "250" + ], + "filament_tower_ironing_area": [ + "8" + ], + "filament_wipe": [ + "1", + "nil", + "nil", + "1", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "nil", + "1", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "nil", + "Spiral Lift", + "nil", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "245", + "250", + "250", + "250", + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245", + "245", + "245", + "245" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Matte @base.json b/resources/profiles/BBL/filament/Bambu PETG Matte @base.json new file mode 100644 index 0000000000..e77d26ff44 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Matte @base.json @@ -0,0 +1,81 @@ +{ + "type": "filament", + "name": "Bambu PETG Matte @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "OFdyfQvU", + "instantiation": "false", + "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "13.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "fins_extrude_safe_temp": [ + "71" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "13.6" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1 0.2 nozzle.json index 8bd14c3bd5..198b9a28d5 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1 0.2 nozzle.json @@ -1,29 +1,29 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL A1 0.2 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_10", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.3" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL A1 0.2 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_10", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.3" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1 0.8 nozzle.json index 55abf064e9..3426bf7c8b 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1 0.8 nozzle.json @@ -1,36 +1,36 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL A1 0.8 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_04", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "20" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.2" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab A1 0.6 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL A1 0.8 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_04", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.2" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab A1 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1.json index 8a8eca0950..6e90b91ace 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1.json @@ -1,26 +1,26 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL A1", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_05", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.3" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL A1", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_05", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.3" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1M 0.2 nozzle.json index eba8d34a37..20b6ea94f3 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1M 0.2 nozzle.json @@ -1,29 +1,29 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL A1M 0.2 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_09", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.3" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL A1M 0.2 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_09", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.3" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1M 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1M 0.8 nozzle.json index 380eafe49e..30a198a138 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1M 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1M 0.8 nozzle.json @@ -1,36 +1,36 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL A1M 0.8 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_03", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "20" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.2" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL A1M 0.8 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_03", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.2" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1M.json index 745dfc66c1..21a2f05d11 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A1M.json @@ -1,26 +1,26 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL A1M", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_02", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.3" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL A1M", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_02", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.3" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A2L 0.2 nozzle.json index 5fef31f50e..3fdd0e40e2 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A2L 0.2 nozzle.json @@ -1,65 +1,65 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL A2L 0.2 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_25", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "30" - ], - "filament_flush_temp_fast": [ - "245" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "1" - ], - "filament_overhang_4_4_speed": [ - "30" - ], - "filament_overhang_totally_speed": [ - "25" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.3" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "override_process_overhang_speed": [ - "1" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "25" - ], - "slow_down_min_speed": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL A2L 0.2 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_25", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "30" + ], + "filament_flush_temp_fast": [ + "245" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "filament_overhang_4_4_speed": [ + "30" + ], + "filament_overhang_totally_speed": [ + "25" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.3" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "override_process_overhang_speed": [ + "1" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "25" + ], + "slow_down_min_speed": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A2L 0.6 nozzle.json index 01a5670ad7..7ea69b881b 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A2L 0.6 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL A2L 0.6 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_39", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "20" - ], - "filament_flush_temp_fast": [ - "245" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.2" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL A2L 0.6 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_39", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_flush_temp_fast": [ + "245" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.2" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A2L 0.8 nozzle.json index 38e23138e8..047a206bc7 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A2L 0.8 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL A2L 0.8 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_26", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "20" - ], - "filament_flush_temp_fast": [ - "245" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.2" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL A2L 0.8 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_26", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_flush_temp_fast": [ + "245" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.2" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A2L.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A2L.json index a0d99401ce..456fff0650 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL A2L.json @@ -1,35 +1,35 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL A2L", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_27", - "instantiation": "true", - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "245" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.3" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL A2L", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_27", + "instantiation": "true", + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "245" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.3" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2C 0.2 nozzle.json index f487455df3..8676d31a7e 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2C 0.2 nozzle.json @@ -1,183 +1,86 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL H2C 0.2 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_24", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "205", - "205" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "60" - ], - "supertack_plate_temp_initial_layer": [ - "60" - ], - "slow_down_layer_time": [ - "8" - ], - "temperature_vitrification": [ - "55" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL H2C 0.2 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_24", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "205", + "205" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "8" + ], + "temperature_vitrification": [ + "55" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2C 0.4 nozzle.json index 6223c186b6..9f5c3828de 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2C 0.4 nozzle.json @@ -1,183 +1,120 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL H2C 0.4 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_22", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "205", - "205" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "60" - ], - "supertack_plate_temp_initial_layer": [ - "60" - ], - "slow_down_layer_time": [ - "8" - ], - "temperature_vitrification": [ - "55" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG Translucent @BBL H2C 0.4 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_22", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "205", + "205", + "205" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250", + "250" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "8" + ], + "temperature_vitrification": [ + "55" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..75ac270250 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2C 0.8 nozzle.json @@ -0,0 +1,124 @@ +{ + "type": "filament", + "name": "Bambu PETG Translucent @BBL H2C 0.8 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_40", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_pre_cooling_temperature_nc": [ + "205", + "205" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "temperature_vitrification": [ + "55" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2C.json index 8b297c56a0..73e0247e95 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2C.json @@ -1,190 +1,126 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL H2C", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_23", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "20" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "205", - "205" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "60" - ], - "supertack_plate_temp_initial_layer": [ - "60" - ], - "slow_down_layer_time": [ - "8" - ], - "temperature_vitrification": [ - "55" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG Translucent @BBL H2C", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_23", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_pre_cooling_temperature_nc": [ + "205", + "205", + "205" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250", + "250" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "temperature_vitrification": [ + "55" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2D 0.2 nozzle.json index d00b48c40c..d09cf4c4b0 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2D 0.2 nozzle.json @@ -1,131 +1,58 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL H2D 0.2 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_12", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL H2D 0.2 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_12", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2D 0.4 nozzle.json index 66edd30e59..397f3e23d5 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2D 0.4 nozzle.json @@ -1,131 +1,68 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL H2D 0.4 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_06", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL H2D 0.4 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_06", + "instantiation": "true", + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "nil", + "nil", + "1" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250", + "250" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2D 0.6 nozzle.json index 33da1709c3..0c2c4df008 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2D 0.6 nozzle.json @@ -1,138 +1,69 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL H2D 0.6 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_11", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL H2D 0.6 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_11", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250", + "250" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2D 0.8 nozzle.json new file mode 100644 index 0000000000..66e2bbd006 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2D 0.8 nozzle.json @@ -0,0 +1,80 @@ +{ + "type": "filament", + "name": "Bambu PETG Translucent @BBL H2D 0.8 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_41", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_preheat_temperature_delta": [ + "10", + "10" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2DP 0.2 nozzle.json index cf917140b2..507f540dbb 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2DP 0.2 nozzle.json @@ -1,131 +1,52 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_18", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_18", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2DP 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2DP 0.4 nozzle.json index 500a637fe9..86db719213 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2DP 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2DP 0.4 nozzle.json @@ -1,131 +1,52 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL H2DP 0.4 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_16", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG Translucent @BBL H2DP 0.4 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_16", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2DP 0.6 nozzle.json index 058e42275c..236296a6ce 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2DP 0.6 nozzle.json @@ -1,138 +1,58 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL H2DP 0.6 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_17", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG Translucent @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_17", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2DP 0.8 nozzle.json new file mode 100644 index 0000000000..fc0bf555ea --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2DP 0.8 nozzle.json @@ -0,0 +1,76 @@ +{ + "type": "filament", + "name": "Bambu PETG Translucent @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_42", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2S 0.2 nozzle.json index d30bf8f17d..aa135e98a1 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2S 0.2 nozzle.json @@ -1,131 +1,70 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL H2S 0.2 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_28", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL H2S 0.2 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_28", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2S 0.6 nozzle.json new file mode 100644 index 0000000000..0d08cc4211 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2S 0.6 nozzle.json @@ -0,0 +1,105 @@ +{ + "type": "filament", + "name": "Bambu PETG Translucent @BBL H2S 0.6 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_44", + "instantiation": "true", + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250", + "250" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2S 0.8 nozzle.json new file mode 100644 index 0000000000..5b4ba7cfcd --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2S 0.8 nozzle.json @@ -0,0 +1,94 @@ +{ + "type": "filament", + "name": "Bambu PETG Translucent @BBL H2S 0.8 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_45", + "instantiation": "true", + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2S.json index 05639f7279..abe1b07138 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL H2S.json @@ -1,133 +1,93 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL H2S", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_08", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG Translucent @BBL H2S", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_08", + "instantiation": "true", + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250", + "250" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL P2S 0.2 nozzle.json index a117aa2b88..af938e3c2b 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL P2S 0.2 nozzle.json @@ -1,177 +1,86 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL P2S 0.2 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_15", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "20" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "1", - "1" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "50", - "50" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL P2S 0.2 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_15", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "20" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "1", + "1" + ], + "filament_retraction_speed": [ + "50", + "50" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL P2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL P2S 0.4 nozzle.json index 109cd2c78b..1fb907c675 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL P2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL P2S 0.4 nozzle.json @@ -1,168 +1,74 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL P2S 0.4 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_13", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.3", - "0.3" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PETG Translucent @BBL P2S 0.4 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_13", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.3", + "0.3", + "0.3" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250", + "250" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL P2S 0.6 nozzle.json index 0d51292baf..27b5f3a1fd 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL P2S 0.6 nozzle.json @@ -1,175 +1,80 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL P2S 0.6 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_14", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.2", - "0.2" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PETG Translucent @BBL P2S 0.6 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_14", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.2", + "0.2", + "0.2" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250", + "250" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL P2S 0.8 nozzle.json new file mode 100644 index 0000000000..cfbc2d52a7 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL P2S 0.8 nozzle.json @@ -0,0 +1,83 @@ +{ + "type": "filament", + "name": "Bambu PETG Translucent @BBL P2S 0.8 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_43", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "0.2", + "0.2" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X1C 0.2 nozzle.json index 26854fbe03..007fe57c4f 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X1C 0.2 nozzle.json @@ -1,126 +1,57 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL X1C 0.2 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_07", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.3", - "0.3" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1P 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL X1C 0.2 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_07", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.3", + "0.3" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1P 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..536a9742dc --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X1C 0.6 nozzle.json @@ -0,0 +1,63 @@ +{ + "type": "filament", + "name": "Bambu PETG Translucent @BBL X1C 0.6 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_30", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "12" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.3", + "0.4" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_z_hop": [ + "nil", + "0.5" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1S 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X1C 0.8 nozzle.json index 4a996e9d73..3ec40f01c5 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X1C 0.8 nozzle.json @@ -1,137 +1,65 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL X1C 0.8 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_01", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "20" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.2", - "0.2" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL X1C 0.8 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_01", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.2", + "0.2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X1C.json index 5b1f468a06..3103acd859 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X1C.json @@ -1,126 +1,57 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL X1C", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_00", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.3", - "0.3" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab X1E 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL X1C", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_00", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.3", + "0.3" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.2 nozzle.json index 5da7bcc5dc..5d5cb6d173 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.2 nozzle.json @@ -1,281 +1,134 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL X2D 0.2 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_21", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil", - "3", - "3" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "additional_cooling_fan_speed": [ - "20" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "20" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "2", - "2", - "0.5", - "0.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "245" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "245", - "245", - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250", - "250", - "250" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL X2D 0.2 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_21", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "20" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "3", + "3" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250", + "250", + "250" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.4 nozzle.json index 0d2604da26..974b3528d6 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.4 nozzle.json @@ -1,278 +1,140 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL X2D 0.4 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_19", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "3", - "3" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1", - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1", - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "additional_cooling_fan_speed": [ - "10" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "20" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "245" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "245", - "245", - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250", - "250", - "250" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PETG Translucent @BBL X2D 0.4 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_19", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "10" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "3", + "3", + "3" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "temperature_vitrification": [ + "70" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.8 nozzle.json index dd05df3f9d..4281c834f7 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D 0.8 nozzle.json @@ -1,275 +1,110 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL X2D 0.8 nozzle", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_29", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "20" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "16", - "16", - "16", - "16" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "245" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "245", - "245", - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250", - "250", - "250" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @BBL X2D 0.8 nozzle", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_29", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250", + "250", + "250" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D.json index 8c65dd98f6..aca3950f6e 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @BBL X2D.json @@ -1,275 +1,134 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @BBL X2D", - "inherits": "Bambu PETG Translucent @base", - "from": "system", - "setting_id": "GFSG01_20", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "20" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "16", - "16", - "16", - "16" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "245" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "245", - "245", - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250", - "250", - "250" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PETG Translucent @BBL X2D", + "inherits": "Bambu PETG Translucent @base", + "from": "system", + "setting_id": "GFSG01_20", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG Translucent @base.json b/resources/profiles/BBL/filament/Bambu PETG Translucent @base.json index 372c2e5c26..3553e5fc39 100644 --- a/resources/profiles/BBL/filament/Bambu PETG Translucent @base.json +++ b/resources/profiles/BBL/filament/Bambu PETG Translucent @base.json @@ -1,84 +1,84 @@ { - "type": "filament", - "name": "Bambu PETG Translucent @base", - "inherits": "fdm_filament_pet", - "from": "system", - "filament_id": "OFwPrlCM", - "instantiation": "false", - "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "10" - ], - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.25" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "6" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "hot_plate_temp": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "impact_strength_z": [ - "7.2" - ], - "nozzle_temperature": [ - "245" - ], - "nozzle_temperature_initial_layer": [ - "250" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "nozzle_temperature_range_low": [ - "230" - ], - "overhang_fan_speed": [ - "90" - ], - "overhang_fan_threshold": [ - "10%" - ], - "slow_down_layer_time": [ - "12" - ], - "textured_plate_temp": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PETG Translucent @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "OFwPrlCM", + "instantiation": "false", + "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "15.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "7.2" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "250" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A1 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A1 0.4 nozzle.json index 51d9883b07..4ad1c37417 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A1 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A1 0.4 nozzle.json @@ -1,32 +1,32 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL A1 0.4 nozzle", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "9" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "overhang_fan_speed": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG-CF @BBL A1 0.4 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "9" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "overhang_fan_speed": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A1 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A1 0.8 nozzle.json index 64face1005..edf85380a3 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A1 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A1 0.8 nozzle.json @@ -1,33 +1,33 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL A1 0.8 nozzle", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_06", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "9" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "overhang_fan_speed": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG-CF @BBL A1 0.8 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "9" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "overhang_fan_speed": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A1M 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A1M 0.4 nozzle.json index bcbf1974e2..4545a6f2a9 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A1M 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A1M 0.4 nozzle.json @@ -1,14 +1,14 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL A1M 0.4 nozzle", - "inherits": "Bambu PETG-CF @BBL A1M", - "from": "system", - "setting_id": "GFSG50_04", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "9" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG-CF @BBL A1M 0.4 nozzle", + "inherits": "Bambu PETG-CF @BBL A1M", + "from": "system", + "setting_id": "GFSG50_04", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "9" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A1M.json index 5a237120e3..7852889288 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A1M.json @@ -1,24 +1,24 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL A1M", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_00", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "9" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG-CF @BBL A1M", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_00", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "9" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A2L 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A2L 0.4 nozzle.json index 6b9e61c9de..2425defd7b 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A2L 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A2L 0.4 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL A2L 0.4 nozzle", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_20", - "instantiation": "true", - "fan_min_speed": [ - "20" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "255" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "9" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "overhang_fan_speed": [ - "50" - ], - "pre_start_fan_time": [ - "0" - ], - "supertack_plate_temp": [ - "65" - ], - "supertack_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PETG-CF @BBL A2L 0.4 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_20", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "255" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "9" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "0" + ], + "supertack_plate_temp": [ + "65" + ], + "supertack_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A2L 0.8 nozzle.json index 8c9bd1abc8..ecd9cdfe42 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A2L 0.8 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL A2L 0.8 nozzle", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_29", - "instantiation": "true", - "fan_min_speed": [ - "20" - ], - "filament_flush_temp_fast": [ - "255" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "9" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "overhang_fan_speed": [ - "50" - ], - "pre_start_fan_time": [ - "0" - ], - "supertack_plate_temp": [ - "65" - ], - "supertack_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PETG-CF @BBL A2L 0.8 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_29", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_flush_temp_fast": [ + "255" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "9" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "0" + ], + "supertack_plate_temp": [ + "65" + ], + "supertack_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A2L.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A2L.json index 62edee9abe..980c26433e 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL A2L.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL A2L", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_23", - "instantiation": "true", - "fan_min_speed": [ - "20" - ], - "filament_flush_temp_fast": [ - "255" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "9" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "overhang_fan_speed": [ - "50" - ], - "pre_start_fan_time": [ - "0" - ], - "supertack_plate_temp": [ - "65" - ], - "supertack_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PETG-CF @BBL A2L", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_23", + "instantiation": "true", + "fan_min_speed": [ + "20" + ], + "filament_flush_temp_fast": [ + "255" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "9" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "overhang_fan_speed": [ + "50" + ], + "pre_start_fan_time": [ + "0" + ], + "supertack_plate_temp": [ + "65" + ], + "supertack_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2C 0.4 nozzle.json index 8b9caf8008..4de1312338 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2C 0.4 nozzle.json @@ -1,213 +1,120 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL H2C 0.4 nozzle", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_19", - "instantiation": "true", - "counter_coef_2": [ - "0.0022" - ], - "counter_coef_3": [ - "-0.0178" - ], - "counter_limit_max": [ - "0.036" - ], - "counter_limit_min": [ - "-0.0178" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_pre_cooling_temperature_nc": [ - "215", - "215" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0014" - ], - "hole_coef_3": [ - "0.11" - ], - "hole_limit_max": [ - "0.11" - ], - "hole_limit_min": [ - "0.075" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "supertack_plate_temp": [ - "60" - ], - "supertack_plate_temp_initial_layer": [ - "60" - ], - "temperature_vitrification": [ - "55" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG-CF @BBL H2C 0.4 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_19", + "instantiation": "true", + "counter_coef_2": [ + "0.0022" + ], + "counter_coef_3": [ + "-0.0178" + ], + "counter_limit_min": [ + "-0.0178" + ], + "counter_limit_max": [ + "0.036" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "215", + "215", + "215" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0014" + ], + "hole_coef_3": [ + "0.11" + ], + "hole_limit_min": [ + "0.075" + ], + "hole_limit_max": [ + "0.11" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "temperature_vitrification": [ + "55" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..f327384244 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2C 0.8 nozzle.json @@ -0,0 +1,124 @@ +{ + "type": "filament", + "name": "Bambu PETG-CF @BBL H2C 0.8 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_30", + "instantiation": "true", + "counter_coef_2": [ + "0.0022" + ], + "counter_coef_3": [ + "-0.0178" + ], + "counter_limit_max": [ + "0.036" + ], + "counter_limit_min": [ + "-0.0178" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_pre_cooling_temperature_nc": [ + "215", + "215" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0014" + ], + "hole_coef_3": [ + "0.11" + ], + "hole_limit_max": [ + "0.11" + ], + "hole_limit_min": [ + "0.075" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "temperature_vitrification": [ + "55" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2C.json index 3320eda7ec..fa1cab99a7 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2C.json @@ -1,214 +1,120 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL H2C", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_18", - "instantiation": "true", - "counter_coef_2": [ - "0.0022" - ], - "counter_coef_3": [ - "-0.0178" - ], - "counter_limit_max": [ - "0.036" - ], - "counter_limit_min": [ - "-0.0178" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_pre_cooling_temperature_nc": [ - "215", - "215" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0014" - ], - "hole_coef_3": [ - "0.11" - ], - "hole_limit_max": [ - "0.11" - ], - "hole_limit_min": [ - "0.075" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "supertack_plate_temp": [ - "60" - ], - "supertack_plate_temp_initial_layer": [ - "60" - ], - "temperature_vitrification": [ - "55" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG-CF @BBL H2C", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_18", + "instantiation": "true", + "counter_coef_2": [ + "0.0022" + ], + "counter_coef_3": [ + "-0.0178" + ], + "counter_limit_max": [ + "0.036" + ], + "counter_limit_min": [ + "-0.0178" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5" + ], + "filament_pre_cooling_temperature_nc": [ + "215", + "215", + "215" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0014" + ], + "hole_coef_3": [ + "0.11" + ], + "hole_limit_max": [ + "0.11" + ], + "hole_limit_min": [ + "0.075" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "temperature_vitrification": [ + "55" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2D 0.4 nozzle.json index c6bce7e4f6..cf5ed3198f 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2D 0.4 nozzle.json @@ -1,155 +1,98 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL H2D 0.4 nozzle", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_08", - "instantiation": "true", - "counter_coef_2": [ - "0.00565" - ], - "counter_coef_3": [ - "-0.0112" - ], - "counter_limit_max": [ - "0.065" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_2": [ - "-0.0121" - ], - "hole_coef_3": [ - "0.145" - ], - "hole_limit_min": [ - "0.068" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG-CF @BBL H2D 0.4 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_08", + "instantiation": "true", + "counter_coef_2": [ + "0.0022" + ], + "counter_coef_3": [ + "-0.0178" + ], + "counter_limit_max": [ + "0.036" + ], + "counter_limit_min": [ + "-0.0178" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "nil", + "nil", + "0.8" + ], + "hole_coef_2": [ + "-0.0014" + ], + "hole_coef_3": [ + "0.11" + ], + "hole_limit_max": [ + "0.11" + ], + "hole_limit_min": [ + "0.075" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2D 0.6 nozzle.json index 67c79ab59e..347a56d4bf 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2D 0.6 nozzle.json @@ -1,138 +1,93 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL H2D 0.6 nozzle", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_07", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PETG-CF @BBL H2D 0.6 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_07", + "instantiation": "true", + "counter_coef_2": [ + "0.0022" + ], + "counter_coef_3": [ + "-0.0178" + ], + "counter_limit_max": [ + "0.036" + ], + "counter_limit_min": [ + "-0.0178" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0014" + ], + "hole_coef_3": [ + "0.11" + ], + "hole_limit_max": [ + "0.11" + ], + "hole_limit_min": [ + "0.075" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2D 0.8 nozzle.json new file mode 100644 index 0000000000..4ae2558fb2 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2D 0.8 nozzle.json @@ -0,0 +1,74 @@ +{ + "type": "filament", + "name": "Bambu PETG-CF @BBL H2D 0.8 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_31", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2DP 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2DP 0.4 nozzle.json index 186c8f205a..93bb7ca67d 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2DP 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2DP 0.4 nozzle.json @@ -1,155 +1,76 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL H2DP 0.4 nozzle", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_15", - "instantiation": "true", - "counter_coef_2": [ - "0.00565" - ], - "counter_coef_3": [ - "-0.0112" - ], - "counter_limit_max": [ - "0.065" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_2": [ - "-0.0121" - ], - "hole_coef_3": [ - "0.145" - ], - "hole_limit_min": [ - "0.068" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG-CF @BBL H2DP 0.4 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_15", + "instantiation": "true", + "counter_coef_2": [ + "0.00565" + ], + "counter_coef_3": [ + "-0.0112" + ], + "counter_limit_max": [ + "0.065" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hole_coef_2": [ + "-0.0121" + ], + "hole_coef_3": [ + "0.145" + ], + "hole_limit_min": [ + "0.068" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2DP 0.6 nozzle.json index 8ac5da7556..62bc309cfa 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2DP 0.6 nozzle.json @@ -1,138 +1,58 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL H2DP 0.6 nozzle", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_14", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG-CF @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_14", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2DP 0.8 nozzle.json new file mode 100644 index 0000000000..62b7d54979 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2DP 0.8 nozzle.json @@ -0,0 +1,76 @@ +{ + "type": "filament", + "name": "Bambu PETG-CF @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_32", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2S 0.6 nozzle.json new file mode 100644 index 0000000000..236fa4d02d --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2S 0.6 nozzle.json @@ -0,0 +1,115 @@ +{ + "type": "filament", + "name": "Bambu PETG-CF @BBL H2S 0.6 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_34", + "instantiation": "true", + "counter_coef_2": [ + "0.0022" + ], + "counter_coef_3": [ + "-0.0178" + ], + "counter_limit_max": [ + "0.036" + ], + "counter_limit_min": [ + "-0.0178" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0014" + ], + "hole_coef_3": [ + "0.11" + ], + "hole_limit_max": [ + "0.11" + ], + "hole_limit_min": [ + "0.075" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2S 0.8 nozzle.json new file mode 100644 index 0000000000..c9ce999176 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2S 0.8 nozzle.json @@ -0,0 +1,108 @@ +{ + "type": "filament", + "name": "Bambu PETG-CF @BBL H2S 0.8 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_35", + "instantiation": "true", + "counter_coef_2": [ + "0.0022" + ], + "counter_coef_3": [ + "-0.0178" + ], + "counter_limit_max": [ + "0.036" + ], + "counter_limit_min": [ + "-0.0178" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hole_coef_2": [ + "-0.0014" + ], + "hole_coef_3": [ + "0.11" + ], + "hole_limit_max": [ + "0.11" + ], + "hole_limit_min": [ + "0.075" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2S.json index 7815f24d48..f85e5e820c 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL H2S.json @@ -1,139 +1,103 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL H2S", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_09", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PETG-CF @BBL H2S", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_09", + "instantiation": "true", + "counter_coef_2": [ + "0.0022" + ], + "counter_coef_3": [ + "-0.0178" + ], + "counter_limit_max": [ + "0.036" + ], + "counter_limit_min": [ + "-0.0178" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0014" + ], + "hole_coef_3": [ + "0.11" + ], + "hole_limit_max": [ + "0.11" + ], + "hole_limit_min": [ + "0.075" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL P2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL P2S 0.4 nozzle.json index a937565714..f7987b06fe 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL P2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL P2S 0.4 nozzle.json @@ -1,177 +1,102 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL P2S 0.4 nozzle", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_13", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PETG-CF @BBL P2S 0.4 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_13", + "instantiation": "true", + "counter_coef_2": [ + "0.0022" + ], + "counter_coef_3": [ + "-0.0178" + ], + "counter_limit_min": [ + "-0.0178" + ], + "counter_limit_max": [ + "0.036" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0014" + ], + "hole_coef_3": [ + "0.11" + ], + "hole_limit_min": [ + "0.075" + ], + "hole_limit_max": [ + "0.11" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL P2S 0.6 nozzle.json index 0d163230f6..3958df13ad 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL P2S 0.6 nozzle.json @@ -1,178 +1,102 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL P2S 0.6 nozzle", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_12", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PETG-CF @BBL P2S 0.6 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_12", + "instantiation": "true", + "counter_coef_2": [ + "0.0022" + ], + "counter_coef_3": [ + "-0.0178" + ], + "counter_limit_max": [ + "0.036" + ], + "counter_limit_min": [ + "-0.0178" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0014" + ], + "hole_coef_3": [ + "0.11" + ], + "hole_limit_max": [ + "0.11" + ], + "hole_limit_min": [ + "0.075" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL P2S 0.8 nozzle.json new file mode 100644 index 0000000000..7239839b3d --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL P2S 0.8 nozzle.json @@ -0,0 +1,106 @@ +{ + "type": "filament", + "name": "Bambu PETG-CF @BBL P2S 0.8 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_33", + "instantiation": "true", + "counter_coef_2": [ + "0.0022" + ], + "counter_coef_3": [ + "-0.0178" + ], + "counter_limit_max": [ + "0.036" + ], + "counter_limit_min": [ + "-0.0178" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "65", + "55", + "55" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0014" + ], + "hole_coef_3": [ + "0.11" + ], + "hole_limit_max": [ + "0.11" + ], + "hole_limit_min": [ + "0.075" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X1C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X1C 0.4 nozzle.json index ab9879c43d..c136712f57 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X1C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X1C 0.4 nozzle.json @@ -1,134 +1,69 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL X1C 0.4 nozzle", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_02", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab X1E 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG-CF @BBL X1C 0.4 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_long_retractions_when_cut": [ + "1", + "nil" + ], + "filament_max_volumetric_speed": [ + "11.5", + "20" + ], + "filament_retraction_distances_when_cut": [ + "18", + "nil" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_wipe": [ + "nil", + "1" + ], + "filament_wipe_distance": [ + "nil", + "2" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "275" + ], + "nozzle_temperature_initial_layer": [ + "255", + "275" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X1C.json index 769e236e4f..e953110fe0 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X1C.json @@ -1,138 +1,73 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL X1C", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_01", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG-CF @BBL X1C", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_01", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "11.5", + "20" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "nil", + "0.8" + ], + "filament_z_hop": [ + "nil", + "0.4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D 0.4 nozzle.json index 63502e9f99..24b3775fd5 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D 0.4 nozzle.json @@ -1,305 +1,132 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL X2D 0.4 nozzle", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_17", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "counter_coef_2": [ - "0.0022" - ], - "counter_coef_3": [ - "-0.0178" - ], - "counter_limit_max": [ - "0.036" - ], - "counter_limit_min": [ - "-0.0178" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_extruder_compatibility": [ - "16" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5", - "11.5", - "11.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "255" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "hole_coef_2": [ - "-0.0014" - ], - "hole_coef_3": [ - "0.11" - ], - "hole_limit_max": [ - "0.11" - ], - "hole_limit_min": [ - "0.075" - ], - "nozzle_temperature": [ - "255", - "255", - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255", - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PETG-CF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_17", + "instantiation": "true", + "counter_coef_2": [ + "0.0022" + ], + "counter_coef_3": [ + "-0.0178" + ], + "counter_limit_max": [ + "0.036" + ], + "counter_limit_min": [ + "-0.0178" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5", + "11.5", + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0014" + ], + "hole_coef_3": [ + "0.11" + ], + "hole_limit_max": [ + "0.11" + ], + "hole_limit_min": [ + "0.075" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D 0.8 nozzle.json index b048455936..378ad209c9 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D 0.8 nozzle.json @@ -1,305 +1,140 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL X2D 0.8 nozzle", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_22", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "counter_coef_2": [ - "0.0022" - ], - "counter_coef_3": [ - "-0.0178" - ], - "counter_limit_max": [ - "0.036" - ], - "counter_limit_min": [ - "-0.0178" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_extruder_compatibility": [ - "16" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5", - "11.5", - "11.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "255" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "hole_coef_2": [ - "-0.0014" - ], - "hole_coef_3": [ - "0.11" - ], - "hole_limit_max": [ - "0.11" - ], - "hole_limit_min": [ - "0.075" - ], - "nozzle_temperature": [ - "255", - "255", - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255", - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PETG-CF @BBL X2D 0.8 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_22", + "instantiation": "true", + "counter_coef_2": [ + "0.0022" + ], + "counter_coef_3": [ + "-0.0178" + ], + "counter_limit_max": [ + "0.036" + ], + "counter_limit_min": [ + "-0.0178" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0014" + ], + "hole_coef_3": [ + "0.11" + ], + "hole_limit_max": [ + "0.11" + ], + "hole_limit_min": [ + "0.075" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D.json index 5870af7871..f6e03276e0 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @BBL X2D.json @@ -1,305 +1,164 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL X2D", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_16", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "counter_coef_2": [ - "0.0022" - ], - "counter_coef_3": [ - "-0.0178" - ], - "counter_limit_max": [ - "0.036" - ], - "counter_limit_min": [ - "-0.0178" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_extruder_compatibility": [ - "16" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5", - "11.5", - "11.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "255" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "hole_coef_2": [ - "-0.0014" - ], - "hole_coef_3": [ - "0.11" - ], - "hole_limit_max": [ - "0.11" - ], - "hole_limit_min": [ - "0.075" - ], - "nozzle_temperature": [ - "255", - "255", - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255", - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PETG-CF @BBL X2D", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_16", + "instantiation": "true", + "counter_coef_2": [ + "0.0022" + ], + "counter_coef_3": [ + "-0.0178" + ], + "counter_limit_max": [ + "0.036" + ], + "counter_limit_min": [ + "-0.0178" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5", + "11.5", + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0014" + ], + "hole_coef_3": [ + "0.11" + ], + "hole_limit_max": [ + "0.11" + ], + "hole_limit_min": [ + "0.075" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "supertack_plate_temp": [ + "60" + ], + "supertack_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PETG-CF @base.json b/resources/profiles/BBL/filament/Bambu PETG-CF @base.json index 9c1d80768d..7e7f358275 100644 --- a/resources/profiles/BBL/filament/Bambu PETG-CF @base.json +++ b/resources/profiles/BBL/filament/Bambu PETG-CF @base.json @@ -1,83 +1,80 @@ { - "type": "filament", - "name": "Bambu PETG-CF @base", - "inherits": "fdm_filament_pet", - "from": "system", - "filament_id": "OFTRZ8Y4", - "instantiation": "false", - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "0" - ], - "filament_cost": [ - "34.99" - ], - "filament_density": [ - "1.25" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "14" - ], - "filament_type": [ - "PETG-CF" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "hot_plate_temp": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "impact_strength_z": [ - "10.7" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "nozzle_temperature_range_low": [ - "240" - ], - "overhang_fan_speed": [ - "90" - ], - "overhang_fan_threshold": [ - "10%" - ], - "required_nozzle_HRC": [ - "40" - ], - "slow_down_layer_time": [ - "6" - ], - "temperature_vitrification": [ - "70" - ], - "textured_plate_temp": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PETG-CF @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "OFTRZ8Y4", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "31.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "14" + ], + "filament_type": [ + "PETG-CF" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "10.7" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A1.json index ab97729a9b..14def75264 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A1.json @@ -1,40 +1,40 @@ { - "type": "filament", - "name": "Bambu PLA Aero @BBL A1", - "inherits": "Bambu PLA Aero @base", - "from": "system", - "setting_id": "GFSA11_04", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "0" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Aero @BBL A1", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_04", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A1M.json index a2f8508e47..7d6397aa15 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A1M.json @@ -1,40 +1,40 @@ { - "type": "filament", - "name": "Bambu PLA Aero @BBL A1M", - "inherits": "Bambu PLA Aero @base", - "from": "system", - "setting_id": "GFSA11_03", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "0" - ], - "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" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Aero @BBL A1M", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_03", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A2L 0.6 nozzle.json index 92de474c10..8a3db40176 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A2L 0.6 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Aero @BBL A2L 0.6 nozzle", - "inherits": "Bambu PLA Aero @base", - "from": "system", - "setting_id": "GFSA11_18", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Aero @BBL A2L 0.6 nozzle", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_18", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A2L 0.8 nozzle.json index b39e87297d..62f719ddbc 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A2L 0.8 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Aero @BBL A2L 0.8 nozzle", - "inherits": "Bambu PLA Aero @base", - "from": "system", - "setting_id": "GFSA11_19", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Aero @BBL A2L 0.8 nozzle", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_19", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A2L.json b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A2L.json index e9962474ad..6bd9e86e48 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL A2L.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Aero @BBL A2L", - "inherits": "Bambu PLA Aero @base", - "from": "system", - "setting_id": "GFSA11_13", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Aero @BBL A2L", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_13", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2C 0.4 nozzle.json index 580c187b4e..ed720d6732 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2C 0.4 nozzle.json @@ -1,183 +1,105 @@ { - "type": "filament", - "name": "Bambu PLA Aero @BBL H2C 0.4 nozzle", - "inherits": "Bambu PLA Aero @base", - "from": "system", - "setting_id": "GFSA11_11", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.6", - "0.6" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Aero @BBL H2C 0.4 nozzle", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_11", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.6", + "0.6", + "0.6" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop": [ + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2C.json index b6072e3359..0d5865af10 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2C.json @@ -1,184 +1,106 @@ { - "type": "filament", - "name": "Bambu PLA Aero @BBL H2C", - "inherits": "Bambu PLA Aero @base", - "from": "system", - "setting_id": "GFSA11_12", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.6", - "0.6" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Aero @BBL H2C", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_12", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.6", + "0.6", + "0.6" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop": [ + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2D.json index 632181c07f..43a47a4722 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2D.json @@ -1,139 +1,75 @@ { - "type": "filament", - "name": "Bambu PLA Aero @BBL H2D", - "inherits": "Bambu PLA Aero @base", - "from": "system", - "setting_id": "GFSA11_05", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.6", - "0.6" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Aero @BBL H2D", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_05", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.6", + "0.6", + "0.6" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2DP.json index 9a356915f8..4f30395743 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2DP.json @@ -1,139 +1,62 @@ { - "type": "filament", - "name": "Bambu PLA Aero @BBL H2DP", - "inherits": "Bambu PLA Aero @base", - "from": "system", - "setting_id": "GFSA11_08", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.6", - "0.6" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Aero @BBL H2DP", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_08", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.6", + "0.6" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2S.json index 0613ea8a73..3a651c0105 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL H2S.json @@ -1,142 +1,93 @@ { - "type": "filament", - "name": "Bambu PLA Aero @BBL H2S", - "inherits": "Bambu PLA Aero @base", - "from": "system", - "setting_id": "GFSA11_07", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.6", - "0.6" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "0", - "0" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Aero @BBL H2S", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_07", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.6", + "0.6", + "0.6" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_z_hop": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL P2S.json index 77fc44385b..f2ea01ad72 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL P2S.json @@ -1,179 +1,79 @@ { - "type": "filament", - "name": "Bambu PLA Aero @BBL P2S", - "inherits": "Bambu PLA Aero @base", - "from": "system", - "setting_id": "GFSA11_06", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.6", - "0.6" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Aero @BBL P2S", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_06", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.6", + "0.6", + "0.6" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X1.json b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X1.json index 8a351c19c0..9e5ac03bf3 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X1.json @@ -1,127 +1,54 @@ { - "type": "filament", - "name": "Bambu PLA Aero @BBL X1", - "inherits": "Bambu PLA Aero @base", - "from": "system", - "setting_id": "GFSA11_00", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "0" - ], - "filament_flow_ratio": [ - "0.6", - "0.6" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Aero @BBL X1", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_00", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "filament_flow_ratio": [ + "0.6", + "0.6" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X1C.json index 8425041516..9fe7a958e1 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X1C.json @@ -1,136 +1,63 @@ { - "type": "filament", - "name": "Bambu PLA Aero @BBL X1C", - "inherits": "Bambu PLA Aero @base", - "from": "system", - "setting_id": "GFSA11_01", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "0" - ], - "filament_flow_ratio": [ - "0.6", - "0.6" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Aero @BBL X1C", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_01", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "filament_flow_ratio": [ + "0.6", + "0.6" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X2D 0.4 nozzle.json index 75d5e2d631..40f718ed86 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X2D 0.4 nozzle.json @@ -1,284 +1,129 @@ { - "type": "filament", - "name": "Bambu PLA Aero @BBL X2D 0.4 nozzle", - "inherits": "Bambu PLA Aero @base", - "from": "system", - "setting_id": "GFSA11_09", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "additional_cooling_fan_speed": [ - "0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_extruder_compatibility": [ - "8" - ], - "filament_flow_ratio": [ - "0.6", - "0.6", - "0.6", - "0.6" - ], - "filament_max_volumetric_speed": [ - "3", - "6", - "6", - "6" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Aero @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "0.6", + "0.6", + "0.6", + "0.6", + "0.6", + "0.6" + ], + "filament_max_volumetric_speed": [ + "3", + "6", + "3", + "6", + "6", + "6" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X2D.json index d9663b8c24..d3472e210f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @BBL X2D.json @@ -1,285 +1,106 @@ { - "type": "filament", - "name": "Bambu PLA Aero @BBL X2D", - "inherits": "Bambu PLA Aero @base", - "from": "system", - "setting_id": "GFSA11_10", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "additional_cooling_fan_speed": [ - "0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_extruder_compatibility": [ - "8" - ], - "filament_flow_ratio": [ - "0.6", - "0.6", - "0.6", - "0.6" - ], - "filament_max_volumetric_speed": [ - "3", - "6", - "6", - "6" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Aero @BBL X2D", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_10", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "0.6", + "0.6", + "0.6", + "0.6", + "0.6", + "0.6" + ], + "filament_max_volumetric_speed": [ + "3", + "6", + "3", + "6", + "6", + "6" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Aero @base.json b/resources/profiles/BBL/filament/Bambu PLA Aero @base.json index b941bed495..8eb1170260 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Aero @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA Aero @base.json @@ -1,51 +1,48 @@ { - "type": "filament", - "name": "Bambu PLA Aero @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFBSW57R", - "instantiation": "false", - "description": "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).", - "fan_min_speed": [ - "30" - ], - "filament_cost": [ - "44.99" - ], - "filament_density": [ - "1.21" - ], - "filament_flow_ratio": [ - "0.6" - ], - "filament_max_volumetric_speed": [ - "6" - ], - "filament_type": [ - "PLA-AERO" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "filament_scarf_seam_type": [ - "none" - ], - "impact_strength_z": [ - "3.1" - ], - "nozzle_temperature_range_low": [ - "210" - ], - "nozzle_temperature_range_high": [ - "260" - ], - "supertack_plate_temp": [ - "0" - ], - "supertack_plate_temp_initial_layer": [ - "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}" - ] -} + "type": "filament", + "name": "Bambu PLA Aero @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFBSW57R", + "instantiation": "false", + "description": "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).", + "fan_min_speed": [ + "30" + ], + "filament_cost": [ + "41.99" + ], + "filament_density": [ + "1.21" + ], + "filament_flow_ratio": [ + "0.6" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_type": [ + "PLA-AERO" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "3.1" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature_range_low": [ + "210" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A1 0.2 nozzle.json index 860a9f92c0..c3498b9c96 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A1 0.2 nozzle.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL A1 0.2 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_06", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL A1 0.2 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A1.json index 438869b04e..eb8c3297f8 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A1.json @@ -1,46 +1,46 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL A1", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL A1", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A1M 0.2 nozzle.json index 08c8eebd9c..704542fa89 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A1M 0.2 nozzle.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL A1M 0.2 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL A1M 0.2 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A1M.json index 871e60e85c..c353bff9ac 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A1M.json @@ -1,46 +1,46 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL A1M", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_02", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL A1M", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A2L 0.2 nozzle.json index c82796d415..2df44cca2d 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A2L 0.2 nozzle.json @@ -1,65 +1,65 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL A2L 0.2 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_24", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "25" - ], - "slow_down_min_speed": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL A2L 0.2 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_24", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "25" + ], + "slow_down_min_speed": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A2L 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A2L 0.4 nozzle.json index f7b52810e6..0be9255970 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A2L 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A2L 0.4 nozzle.json @@ -1,65 +1,65 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL A2L 0.4 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_25", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "23" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL A2L 0.4 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_25", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "23" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A2L 0.6 nozzle.json index 880f94a58c..1d40774b1b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A2L 0.6 nozzle.json @@ -1,62 +1,62 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL A2L 0.6 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_50", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL A2L 0.6 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_50", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A2L 0.8 nozzle.json index bafc3729fc..3075bac717 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL A2L 0.8 nozzle.json @@ -1,62 +1,62 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL A2L 0.8 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_51", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL A2L 0.8 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_51", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2C 0.2 nozzle.json index 2f1ab7ef04..07ee98f7e6 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2C 0.2 nozzle.json @@ -1,213 +1,124 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL H2C 0.2 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_23", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.0025" - ], - "counter_coef_3": [ - "0.014" - ], - "counter_limit_max": [ - "0.076" - ], - "counter_limit_min": [ - "0.014" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0028" - ], - "hole_coef_3": [ - "0.12" - ], - "hole_limit_max": [ - "0.12" - ], - "hole_limit_min": [ - "0.05" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL H2C 0.2 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_23", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "counter_limit_min": [ + "0.014" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_max": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2C 0.6 nozzle.json index 39bc94d00a..63a6a766b0 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2C 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2C 0.6 nozzle.json @@ -1,213 +1,155 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL H2C 0.6 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_31", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.0025" - ], - "counter_coef_3": [ - "0.014" - ], - "counter_limit_max": [ - "0.076" - ], - "counter_limit_min": [ - "0.014" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0028" - ], - "hole_coef_3": [ - "0.12" - ], - "hole_limit_max": [ - "0.12" - ], - "hole_limit_min": [ - "0.05" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Basic @BBL H2C 0.6 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_31", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_min": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "30", + "40", + "30" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "hole_limit_max": [ + "0.12" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2C 0.8 nozzle.json index 402f3cddd0..a8f668860c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2C 0.8 nozzle.json @@ -1,213 +1,140 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL H2C 0.8 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_32", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.0025" - ], - "counter_coef_3": [ - "0.014" - ], - "counter_limit_max": [ - "0.076" - ], - "counter_limit_min": [ - "0.014" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0028" - ], - "hole_coef_3": [ - "0.12" - ], - "hole_limit_max": [ - "0.12" - ], - "hole_limit_min": [ - "0.05" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL H2C 0.8 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_32", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "counter_limit_min": [ + "0.014" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "30", + "40" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_max": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2C.json index 1e6c1643eb..fb7e781c55 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2C.json @@ -1,213 +1,155 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL H2C", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_22", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.0025" - ], - "counter_coef_3": [ - "0.014" - ], - "counter_limit_max": [ - "0.076" - ], - "counter_limit_min": [ - "0.014" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "25", - "40" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.8" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0028" - ], - "hole_coef_3": [ - "0.12" - ], - "hole_limit_max": [ - "0.12" - ], - "hole_limit_min": [ - "0.05" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Basic @BBL H2C", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_22", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_min": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "25", + "40", + "25" + ], + "filament_retraction_length": [ + "0.4", + "0.8", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "hole_limit_max": [ + "0.12" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2D 0.2 nozzle.json index 44b42d7c71..53dfefb6b8 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2D 0.2 nozzle.json @@ -1,143 +1,99 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL H2D 0.2 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_13", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL H2D 0.2 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_13", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "counter_limit_min": [ + "0.014" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_max": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2D 0.6 nozzle.json index 15420e0dba..b201c04ae8 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2D 0.6 nozzle.json @@ -1,159 +1,126 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL H2D 0.6 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_27", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.01" - ], - "counter_limit_max": [ - "0.088" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_extruder_id": [ - "1", - "1" - ], - "hole_coef_3": [ - "0.18" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL H2D 0.6 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_27", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "counter_limit_min": [ + "0.014" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "30", + "40", + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_max": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2D 0.8 nozzle.json index f941c59ada..155afbbc68 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2D 0.8 nozzle.json @@ -1,143 +1,115 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL H2D 0.8 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_14", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL H2D 0.8 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_14", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "counter_limit_min": [ + "0.014" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "30", + "40" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_max": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2D.json index 9717bc1843..0cb3530b9c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2D.json @@ -1,155 +1,126 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL H2D", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_12", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.01" - ], - "counter_limit_max": [ - "0.088" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "25", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_3": [ - "0.18" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL H2D", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_12", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "counter_limit_min": [ + "0.014" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "25", + "40", + "25" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "1" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_max": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP 0.2 nozzle.json index cf46f6077e..9c49c6d367 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP 0.2 nozzle.json @@ -1,143 +1,72 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_18", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_18", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP 0.6 nozzle.json index a581d77531..2efcf62609 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP 0.6 nozzle.json @@ -1,155 +1,100 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL H2DP 0.6 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_28", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.01" - ], - "counter_limit_max": [ - "0.088" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_3": [ - "0.18" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Basic @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_28", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.01" + ], + "counter_limit_max": [ + "0.088" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "30", + "40" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_3": [ + "0.18" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP 0.8 nozzle.json index 9abe36c35d..ded3b4e3d9 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP 0.8 nozzle.json @@ -1,143 +1,88 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL H2DP 0.8 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_19", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_19", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "30", + "40" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file 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 85660b9ad0..6df1b590b0 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP.json @@ -1,155 +1,100 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL H2DP", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_17", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.01" - ], - "counter_limit_max": [ - "0.088" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "25", - "35" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_3": [ - "0.18" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Basic @BBL H2DP", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_17", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.01" + ], + "counter_limit_max": [ + "0.088" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "25", + "35" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_3": [ + "0.18" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2S 0.2 nozzle.json index b2e85e89b3..a26fae8231 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2S 0.2 nozzle.json @@ -1,140 +1,108 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL H2S 0.2 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_07", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL H2S 0.2 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_07", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_min": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "80" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "hole_limit_max": [ + "0.12" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2S 0.6 nozzle.json index 4ba61fe097..5e8717b0fc 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2S 0.6 nozzle.json @@ -1,143 +1,136 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL H2S 0.6 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_30", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Basic @BBL H2S 0.6 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_30", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_min": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "80" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "30", + "40", + "30" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "hole_limit_max": [ + "0.12" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2S 0.8 nozzle.json index 4d9e200ce2..fcfed64523 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2S 0.8 nozzle.json @@ -1,143 +1,123 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL H2S 0.8 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_29", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL H2S 0.8 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_29", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_min": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "80" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "30", + "40" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "hole_limit_max": [ + "0.12" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2S.json index 78ba481815..2b26b5a33b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2S.json @@ -1,140 +1,133 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL H2S", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_05", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "25", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Basic @BBL H2S", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_05", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_min": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "80" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "25", + "40", + "25" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "hole_limit_max": [ + "0.12" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P1S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P1S 0.4 nozzle.json new file mode 100644 index 0000000000..9b647c0605 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P1S 0.4 nozzle.json @@ -0,0 +1,73 @@ +{ + "type": "filament", + "name": "Bambu PLA Basic @BBL P1S 0.4 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_34", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "29" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "50" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.4 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P1S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P1S 0.6 nozzle.json new file mode 100644 index 0000000000..fb9f4a9816 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P1S 0.6 nozzle.json @@ -0,0 +1,73 @@ +{ + "type": "filament", + "name": "Bambu PLA Basic @BBL P1S 0.6 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_35", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "29" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "50" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P2S 0.2 nozzle.json index e1a2432769..cec82f1394 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P2S 0.2 nozzle.json @@ -1,171 +1,104 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL P2S 0.2 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_15", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL P2S 0.2 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_15", + "instantiation": "true", + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "counter_limit_min": [ + "0.014" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_max": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P2S 0.6 nozzle.json index 79a6dc18ec..093ad31bcd 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P2S 0.6 nozzle.json @@ -1,171 +1,121 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL P2S 0.6 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_26", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Basic @BBL P2S 0.6 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_26", + "instantiation": "true", + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_min": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "40", + "21" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "hole_limit_max": [ + "0.12" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P2S 0.8 nozzle.json index 8826267425..1d462e3afe 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P2S 0.8 nozzle.json @@ -1,171 +1,112 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL P2S 0.8 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_16", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL P2S 0.8 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_16", + "instantiation": "true", + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "counter_limit_min": [ + "0.014" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "40" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_max": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P2S.json index 199c5311c6..6d36f1d3f7 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL P2S.json @@ -1,171 +1,106 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL P2S", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_11", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Basic @BBL P2S", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_11", + "instantiation": "true", + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_min": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "40", + "21" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "hole_limit_max": [ + "0.12" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1.json index 50a09c0b3d..ff5dabd8bd 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1.json @@ -1,124 +1,59 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL X1", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA04", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL X1", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA04", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1C 0.2 nozzle.json index 6ae9993dab..562e34ec84 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1C 0.2 nozzle.json @@ -1,125 +1,60 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL X1C 0.2 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_00", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL X1C 0.2 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..da5b604de1 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1C 0.6 nozzle.json @@ -0,0 +1,73 @@ +{ + "type": "filament", + "name": "Bambu PLA Basic @BBL X1C 0.6 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_33", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "29" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "50" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1C 0.8 nozzle.json index 567fa2a16b..0b8ad7bb27 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1C 0.8 nozzle.json @@ -1,124 +1,59 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL X1C 0.8 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_01", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL X1C 0.8 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1C.json index da7167b84c..ddfe8cd5d9 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X1C.json @@ -1,127 +1,67 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL X1C", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL X1C", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "29" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.2 nozzle.json index 872033281b..7745d8f761 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.2 nozzle.json @@ -1,299 +1,158 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL X2D 0.2 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_20", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil", - "5", - "5" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "counter_coef_2": [ - "0.0025" - ], - "counter_coef_3": [ - "0.014" - ], - "counter_limit_max": [ - "0.076" - ], - "counter_limit_min": [ - "0.014" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2", - "0.5", - "0.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "hole_coef_2": [ - "-0.0028" - ], - "hole_coef_3": [ - "0.12" - ], - "hole_limit_max": [ - "0.12" - ], - "hole_limit_min": [ - "0.05" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_20", + "instantiation": "true", + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "counter_limit_min": [ + "0.014" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_max": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.4 nozzle.json index fec7aeb1e5..6ce14a3d78 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.4 nozzle.json @@ -1,296 +1,163 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL X2D 0.4 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_08", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "3", - "3" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1", - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1", - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "counter_coef_2": [ - "0.0025" - ], - "counter_coef_3": [ - "0.014" - ], - "counter_limit_max": [ - "0.076" - ], - "counter_limit_min": [ - "0.014" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "40", - "21", - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "hole_coef_2": [ - "-0.0028" - ], - "hole_coef_3": [ - "0.12" - ], - "hole_limit_max": [ - "0.12" - ], - "hole_limit_min": [ - "0.05" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Basic @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_08", + "instantiation": "true", + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "counter_limit_min": [ + "0.014" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "40", + "21", + "21", + "30", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "3", + "3", + "3" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_max": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.6 nozzle.json new file mode 100644 index 0000000000..080c549be8 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.6 nozzle.json @@ -0,0 +1,164 @@ +{ + "type": "filament", + "name": "Bambu PLA Basic @BBL X2D 0.6 nozzle", + "renamed_from": "Bambu PLA Basic @BBL X2D", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_09", + "instantiation": "true", + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "counter_limit_min": [ + "0.014" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "40", + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_max": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..0d8be7315e --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D 0.8 nozzle.json @@ -0,0 +1,155 @@ +{ + "type": "filament", + "name": "Bambu PLA Basic @BBL X2D 0.8 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_55", + "instantiation": "true", + "counter_coef_2": [ + "0.0025" + ], + "counter_coef_3": [ + "0.014" + ], + "counter_limit_max": [ + "0.076" + ], + "counter_limit_min": [ + "0.014" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "21", + "40", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.12" + ], + "hole_limit_max": [ + "0.12" + ], + "hole_limit_min": [ + "0.05" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D.json deleted file mode 100644 index 7c9963249a..0000000000 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL X2D.json +++ /dev/null @@ -1,297 +0,0 @@ -{ - "type": "filament", - "name": "Bambu PLA Basic @BBL X2D", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_09", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "counter_coef_2": [ - "0.0025" - ], - "counter_coef_3": [ - "0.014" - ], - "counter_limit_max": [ - "0.076" - ], - "counter_limit_min": [ - "0.014" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "40", - "21", - "21" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "hole_coef_2": [ - "-0.0028" - ], - "hole_coef_3": [ - "0.12" - ], - "hole_limit_max": [ - "0.12" - ], - "hole_limit_min": [ - "0.05" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @base.json b/resources/profiles/BBL/filament/Bambu PLA Basic @base.json index 6d25d0ece0..3a3f68a157 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @base.json @@ -1,48 +1,38 @@ { - "type": "filament", - "name": "Bambu PLA Basic @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFoiVqVM", - "instantiation": "false", - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.26" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "filament_scarf_seam_type": [ - "none" - ], - "filament_scarf_height": [ - "10%" - ], - "filament_scarf_gap": [ - "0%" - ], - "filament_scarf_length": [ - "10" - ], - "filament_change_length": [ - "5" - ], - "filament_prime_volume": [ - "30" - ], - "impact_strength_z": [ - "13.8" - ], - "compatible_printers": [], - "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}" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFoiVqVM", + "instantiation": "false", + "filament_change_length": [ + "5" + ], + "filament_cost": [ + "15.99" + ], + "filament_density": [ + "1.26" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_prime_volume": [ + "30" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "13.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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A1 0.2 nozzle.json index 17373d31d6..576ebf073d 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A1 0.2 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL A1 0.2 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_06", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL A1 0.2 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A1.json index 9ac7dbb2a1..ae738f0ba2 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A1.json @@ -1,46 +1,46 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL A1", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL A1", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A1M 0.2 nozzle.json index 7540d6b075..32aecc1f97 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A1M 0.2 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL A1M 0.2 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_07", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "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" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL A1M 0.2 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_07", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A1M.json index da0ddaa688..ab90c081c8 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A1M.json @@ -1,46 +1,46 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL A1M", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_08", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "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" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL A1M", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_08", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A2L 0.2 nozzle.json index 4b224de8c0..fa3bf8b447 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A2L 0.2 nozzle.json @@ -1,53 +1,53 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL A2L 0.2 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_26", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "slow_down_min_speed": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL A2L 0.2 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_26", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A2L 0.6 nozzle.json index 4d5e335fef..4b1e0366d7 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A2L 0.6 nozzle.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL A2L 0.6 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_39", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL A2L 0.6 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_39", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A2L 0.8 nozzle.json index db108940ed..3884c8766b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A2L 0.8 nozzle.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL A2L 0.8 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_40", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL A2L 0.8 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_40", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A2L.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A2L.json index 7755b48018..4a493cb8cf 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL A2L.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL A2L", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_27", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL A2L", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_27", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2C 0.2 nozzle.json index a12fc3a6a5..31708faa3f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2C 0.2 nozzle.json @@ -1,186 +1,97 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL H2C 0.2 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_25", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL H2C 0.2 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_25", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2C 0.4 nozzle.json index f8209c2c99..203111f93d 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2C 0.4 nozzle.json @@ -1,186 +1,128 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL H2C 0.4 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_23", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL H2C 0.4 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_23", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2C.json index 4fadfcf5ba..d6ae035131 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2C.json @@ -1,187 +1,129 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL H2C", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_24", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL H2C", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_24", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2D 0.2 nozzle.json index ad4a7ca427..94e60d2b28 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2D 0.2 nozzle.json @@ -1,134 +1,69 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL H2D 0.2 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_10", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL H2D 0.2 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_10", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2D 0.8 nozzle.json index 549d8c70b7..73f707ce8f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2D 0.8 nozzle.json @@ -1,134 +1,85 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL H2D 0.8 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_13", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL H2D 0.8 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_13", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2D.json index b034a222d0..a55cfd5a4b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2D.json @@ -1,135 +1,97 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL H2D", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_09", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL H2D", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_09", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2DP 0.2 nozzle.json index dda21c0f10..bff31010ae 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2DP 0.2 nozzle.json @@ -1,134 +1,63 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_18", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_18", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2DP 0.8 nozzle.json index 7f73e2caea..cf17ea5af0 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2DP 0.8 nozzle.json @@ -1,134 +1,79 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL H2DP 0.8 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_19", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_19", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2DP.json index 0b8f861fce..32df6b69fd 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2DP.json @@ -1,135 +1,80 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL H2DP", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_17", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL H2DP", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_17", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2S 0.2 nozzle.json index 34e3593313..2e4df09afb 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2S 0.2 nozzle.json @@ -1,140 +1,87 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL H2S 0.2 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_12", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "80" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL H2S 0.2 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_12", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "80" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2S.json index 43924594d4..6bd6a008d5 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL H2S.json @@ -1,142 +1,114 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL H2S", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_11", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "80" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL H2S", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_11", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "80" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P1P 0.2 nozzle.json index 097b10358d..92b19310cb 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P1P 0.2 nozzle.json @@ -1,137 +1,64 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL P1P 0.2 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL P1P 0.2 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P1P 0.6 nozzle.json new file mode 100644 index 0000000000..6f4d0fdbdc --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P1P 0.6 nozzle.json @@ -0,0 +1,83 @@ +{ + "type": "filament", + "name": "Bambu PLA Dynamic @BBL P1P 0.6 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_31", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "25" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P1P.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P1P.json index 42178239a9..8dd853022d 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P1P.json @@ -1,142 +1,84 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL P1P", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL P1P", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "25" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P2S 0.2 nozzle.json index 7e14fddd41..518fe6e7fe 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P2S 0.2 nozzle.json @@ -1,171 +1,72 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL P2S 0.2 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_15", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL P2S 0.2 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_15", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P2S 0.8 nozzle.json index 898144cda5..1abdfa6de7 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P2S 0.8 nozzle.json @@ -1,171 +1,68 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL P2S 0.8 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_16", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL P2S 0.8 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_16", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P2S.json index fe8fcda52c..bd304790b6 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL P2S.json @@ -1,172 +1,78 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL P2S", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_14", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL P2S", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_14", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X1C 0.2 nozzle.json index 073a22e994..8cfe61e78c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X1C 0.2 nozzle.json @@ -1,125 +1,52 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL X1C 0.2 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_01", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL X1C 0.2 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..98eb99862f --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X1C 0.6 nozzle.json @@ -0,0 +1,66 @@ +{ + "type": "filament", + "name": "Bambu PLA Dynamic @BBL X1C 0.6 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_28", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "25" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab P1S 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X1C 0.8 nozzle.json index 70e423ff23..2a16080567 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X1C 0.8 nozzle.json @@ -1,125 +1,52 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL X1C 0.8 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_02", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.8 nozzle", - "Bambu Lab X1 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL X1C 0.8 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_02", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X1C.json index ae5aa03881..d6137cff59 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X1C.json @@ -1,129 +1,70 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL X1C", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL X1C", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_00", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "25" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab P1S 0.4 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D 0.2 nozzle.json index 57e56acc27..436ec93e94 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D 0.2 nozzle.json @@ -1,275 +1,92 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL X2D 0.2 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_22", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2", - "2", - "2" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_22", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D 0.4 nozzle.json index 5e22e07c12..18f6abcda7 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D 0.4 nozzle.json @@ -1,272 +1,99 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL X2D 0.4 nozzle", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_20", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21", - "21", - "21" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_20", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D.json index 5a9f3939d1..c632d75d48 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @BBL X2D.json @@ -1,273 +1,132 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @BBL X2D", - "inherits": "Bambu PLA Dynamic @base", - "from": "system", - "setting_id": "GFSA13_21", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21", - "21", - "21" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @BBL X2D", + "inherits": "Bambu PLA Dynamic @base", + "from": "system", + "setting_id": "GFSA13_21", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Dynamic @base.json b/resources/profiles/BBL/filament/Bambu PLA Dynamic @base.json index b21b156082..12a51695d8 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Dynamic @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA Dynamic @base.json @@ -1,23 +1,23 @@ { - "type": "filament", - "name": "Bambu PLA Dynamic @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFDGigEI", - "instantiation": "false", - "filament_cost": [ - "31.99" - ], - "filament_density": [ - "1.26" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "20.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}" - ] -} + "type": "filament", + "name": "Bambu PLA Dynamic @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFDGigEI", + "instantiation": "false", + "filament_cost": [ + "31.99" + ], + "filament_density": [ + "1.26" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "20.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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A1 0.2 nozzle.json index 34af54c59d..19c1fd43af 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A1 0.2 nozzle.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL A1 0.2 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_06", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL A1 0.2 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A1.json index 3ca1876828..75fc1db5ee 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A1.json @@ -1,46 +1,46 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL A1", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL A1", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A1M 0.2 nozzle.json index 865161413b..d011a0b4bf 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A1M 0.2 nozzle.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL A1M 0.2 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_08", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL A1M 0.2 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_08", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A1M.json index 48cbcfc541..e4a749d675 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A1M.json @@ -1,46 +1,46 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL A1M", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_07", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL A1M", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_07", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A2L 0.2 nozzle.json index 0e8d20c597..43add8445c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A2L 0.2 nozzle.json @@ -1,71 +1,71 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL A2L 0.2 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_26", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_overhang_4_4_speed": [ - "35" - ], - "filament_overhang_totally_speed": [ - "25" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "25" - ], - "slow_down_min_speed": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL A2L 0.2 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_26", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_overhang_4_4_speed": [ + "35" + ], + "filament_overhang_totally_speed": [ + "25" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "25" + ], + "slow_down_min_speed": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A2L 0.6 nozzle.json index 76e3315dc2..d74bfea08a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A2L 0.6 nozzle.json @@ -1,59 +1,59 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL A2L 0.6 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_39", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL A2L 0.6 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_39", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A2L 0.8 nozzle.json index 971d39bb47..3cc6a7ebd8 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A2L 0.8 nozzle.json @@ -1,59 +1,59 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL A2L 0.8 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_40", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL A2L 0.8 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_40", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A2L.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A2L.json index a29da01908..f73a831eb4 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL A2L.json @@ -1,59 +1,59 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL A2L", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_27", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL A2L", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_27", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2C 0.2 nozzle.json index fe15dcefb2..d7d9738881 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2C 0.2 nozzle.json @@ -1,186 +1,97 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL H2C 0.2 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_25", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL H2C 0.2 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_25", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2C 0.4 nozzle.json index 76b79659ed..5fdb9b941f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2C 0.4 nozzle.json @@ -1,186 +1,128 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL H2C 0.4 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_23", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL H2C 0.4 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_23", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2C.json index 59ec370472..3c4a3181fd 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2C.json @@ -1,187 +1,129 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL H2C", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_24", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL H2C", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_24", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2D 0.2 nozzle.json index a681eb11e5..5594ddd436 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2D 0.2 nozzle.json @@ -1,134 +1,69 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL H2D 0.2 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_10", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL H2D 0.2 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_10", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2D 0.8 nozzle.json index 3fa5d9c823..b6f6057712 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2D 0.8 nozzle.json @@ -1,134 +1,85 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL H2D 0.8 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_13", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL H2D 0.8 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_13", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2D.json index b026cdd803..742304d148 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2D.json @@ -1,135 +1,97 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL H2D", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_09", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL H2D", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_09", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2DP 0.2 nozzle.json index 6b030eb631..d3db19b02b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2DP 0.2 nozzle.json @@ -1,134 +1,63 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_18", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_18", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2DP 0.8 nozzle.json index ba876fce99..19f76bd953 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2DP 0.8 nozzle.json @@ -1,134 +1,79 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL H2DP 0.8 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_19", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_19", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2DP.json index e16f9732fb..e4f3c42060 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2DP.json @@ -1,135 +1,80 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL H2DP", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_17", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL H2DP", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_17", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2S 0.2 nozzle.json index ea970f53ce..c9beecd89c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2S 0.2 nozzle.json @@ -1,143 +1,90 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL H2S 0.2 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_12", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "80" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL H2S 0.2 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_12", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "80" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2S.json index efc03eac1b..91d24f8332 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL H2S.json @@ -1,145 +1,117 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL H2S", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_11", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "80" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL H2S", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_11", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "80" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P1P 0.2 nozzle.json index cc0886295d..7aa84eccd3 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P1P 0.2 nozzle.json @@ -1,137 +1,72 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL P1P 0.2 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL P1P 0.2 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P1P 0.6 nozzle.json new file mode 100644 index 0000000000..b5d4190792 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P1P 0.6 nozzle.json @@ -0,0 +1,91 @@ +{ + "type": "filament", + "name": "Bambu PLA Galaxy @BBL P1P 0.6 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_31", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P1P.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P1P.json index 36814597d0..2c0bd7a5fe 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P1P.json @@ -1,142 +1,92 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL P1P", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL P1P", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P2S 0.2 nozzle.json index 77febb1f11..049e3ad804 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P2S 0.2 nozzle.json @@ -1,177 +1,82 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL P2S 0.2 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_15", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL P2S 0.2 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_15", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P2S 0.8 nozzle.json index f5bd3fc62b..bc138e1df2 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P2S 0.8 nozzle.json @@ -1,171 +1,76 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL P2S 0.8 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_16", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "1", - "1" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL P2S 0.8 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_16", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "1", + "1" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P2S.json index 967a1e89ea..52fe7324be 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL P2S.json @@ -1,175 +1,86 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL P2S", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_14", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL P2S", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_14", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X1C 0.2 nozzle.json index 750134520f..3332e1c8c8 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X1C 0.2 nozzle.json @@ -1,125 +1,60 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL X1C 0.2 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_01", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL X1C 0.2 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..753b8c25b8 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X1C 0.6 nozzle.json @@ -0,0 +1,74 @@ +{ + "type": "filament", + "name": "Bambu PLA Galaxy @BBL X1C 0.6 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_28", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab P1S 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X1C 0.8 nozzle.json index 323c3bb7de..89ecc60c27 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X1C 0.8 nozzle.json @@ -1,125 +1,60 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL X1C 0.8 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_02", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.8 nozzle", - "Bambu Lab X1 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL X1C 0.8 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_02", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X1C.json index 99c0479f7e..19e30e5fb0 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X1C.json @@ -1,129 +1,78 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL X1C", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_00", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL X1C", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_00", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab P1S 0.4 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D 0.2 nozzle.json index 8b154c0518..2a2a610ca9 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D 0.2 nozzle.json @@ -1,275 +1,134 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL X2D 0.2 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_22", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil", - "5", - "5" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2", - "0.5", - "0.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_22", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D 0.4 nozzle.json index 0d4ed1815e..692021b2fc 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D 0.4 nozzle.json @@ -1,272 +1,139 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL X2D 0.4 nozzle", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_20", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1", - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1", - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21", - "21", - "21" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_20", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D.json index 50cd6aa79b..714741368f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @BBL X2D.json @@ -1,273 +1,140 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @BBL X2D", - "inherits": "Bambu PLA Galaxy @base", - "from": "system", - "setting_id": "GFSA15_21", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21", - "21", - "21" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @BBL X2D", + "inherits": "Bambu PLA Galaxy @base", + "from": "system", + "setting_id": "GFSA15_21", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Galaxy @base.json b/resources/profiles/BBL/filament/Bambu PLA Galaxy @base.json index baeb6a1ab8..b26152dd2a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Galaxy @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA Galaxy @base.json @@ -1,29 +1,29 @@ { - "type": "filament", - "name": "Bambu PLA Galaxy @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFQ3e56w", - "instantiation": "false", - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.19" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "5.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}" - ] -} + "type": "filament", + "name": "Bambu PLA Galaxy @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFQ3e56w", + "instantiation": "false", + "filament_cost": [ + "21.99" + ], + "filament_density": [ + "1.19" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "5.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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A1 0.2 nozzle.json index 2de9cd5931..8763639cdd 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A1 0.2 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL A1 0.2 nozzle", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL A1 0.2 nozzle", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A1.json index a95509758b..4fa331e1b9 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A1.json @@ -1,40 +1,40 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL A1", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_11", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL A1", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_11", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A1M 0.2 nozzle.json index dc0dd63d0f..c0e753700a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A1M 0.2 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL A1M 0.2 nozzle", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_17", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL A1M 0.2 nozzle", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_17", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A1M.json index 750fd2b9de..898241b43e 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A1M.json @@ -1,40 +1,40 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL A1M", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_16", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL A1M", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_16", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A2L 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A2L 0.4 nozzle.json index decfd9b658..30222be57c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A2L 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A2L 0.4 nozzle.json @@ -1,56 +1,56 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL A2L 0.4 nozzle", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_27", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL A2L 0.4 nozzle", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_27", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A2L 0.6 nozzle.json index c980532cd1..01fed6905c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A2L 0.6 nozzle.json @@ -1,56 +1,56 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL A2L 0.6 nozzle", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_38", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL A2L 0.6 nozzle", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_38", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A2L 0.8 nozzle.json index cedfcdf86c..57d8ea3bab 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL A2L 0.8 nozzle.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL A2L 0.8 nozzle", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_39", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL A2L 0.8 nozzle", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_39", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2C 0.4 nozzle.json index 8558adc1ee..f0601b5374 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2C 0.4 nozzle.json @@ -1,186 +1,128 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL H2C 0.4 nozzle", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_23", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL H2C 0.4 nozzle", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_23", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2C.json index 20c231beff..7130e8e127 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2C.json @@ -1,187 +1,129 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL H2C", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_24", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL H2C", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_24", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2D.json index c9ed5e4e72..f79d057d10 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2D.json @@ -1,136 +1,98 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL H2D", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_06", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL H2D", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_06", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2DP 0.2 nozzle.json index 896ec8c7c8..0faa39a293 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2DP 0.2 nozzle.json @@ -1,134 +1,79 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_19", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_19", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2DP.json index 52f111fc26..f8edcb3f46 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2DP.json @@ -1,136 +1,81 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL H2DP", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_18", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL H2DP", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_18", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2S 0.2 nozzle.json deleted file mode 100644 index 24009ae53e..0000000000 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2S 0.2 nozzle.json +++ /dev/null @@ -1,143 +0,0 @@ -{ - "type": "filament", - "name": "Bambu PLA Glow @BBL H2S 0.2 nozzle", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_13", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "80" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2S.json index 85445c0e64..4530262350 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL H2S.json @@ -1,145 +1,118 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL H2S", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_12", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "80" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL H2S", + "renamed_from": "Bambu PLA Glow @BBL H2S 0.2 nozzle", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_12", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "80" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P1P 0.2 nozzle.json index 64a05d2e66..34d9c80622 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P1P 0.2 nozzle.json @@ -1,15 +1,15 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL P1P 0.2 nozzle", - "inherits": "Bambu PLA Glow @BBL P1P", - "from": "system", - "setting_id": "GFSA12_03", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL P1P 0.2 nozzle", + "inherits": "Bambu PLA Glow @BBL P1P", + "from": "system", + "setting_id": "GFSA12_03", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P1P 0.6 nozzle.json new file mode 100644 index 0000000000..930f3a2160 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P1P 0.6 nozzle.json @@ -0,0 +1,91 @@ +{ + "type": "filament", + "name": "Bambu PLA Glow @BBL P1P 0.6 nozzle", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_33", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "18", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "50" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P1P.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P1P.json index 82d3513632..0d37c339c1 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P1P.json @@ -1,142 +1,92 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL P1P", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_02", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL P1P", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "18", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "50" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P2S 0.2 nozzle.json index 531cd9cb1e..1ac8c17a57 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P2S 0.2 nozzle.json @@ -1,174 +1,83 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL P2S 0.2 nozzle", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_15", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL P2S 0.2 nozzle", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_15", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P2S 0.6 nozzle.json index 4597af5b89..588e83309f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P2S 0.6 nozzle.json @@ -1,174 +1,105 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL P2S 0.6 nozzle", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_28", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.6", - "0.6" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "0", - "0" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL P2S 0.6 nozzle", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_28", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.6", + "0.6", + "0.6" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "0", + "0", + "0" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P2S 0.8 nozzle.json index f843fc6c95..4eb1100b6b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P2S 0.8 nozzle.json @@ -1,171 +1,88 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL P2S 0.8 nozzle", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_29", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL P2S 0.8 nozzle", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_29", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P2S.json index 833d53771c..43a636a896 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL P2S.json @@ -1,174 +1,85 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL P2S", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_14", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL P2S", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_14", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1 0.2 nozzle.json index de724b771e..553b1ef680 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1 0.2 nozzle.json @@ -1,15 +1,15 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL X1 0.2 nozzle", - "inherits": "Bambu PLA Glow @BBL X1", - "from": "system", - "setting_id": "GFSA12_09", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "compatible_printers": [ - "Bambu Lab X1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL X1 0.2 nozzle", + "inherits": "Bambu PLA Glow @BBL X1", + "from": "system", + "setting_id": "GFSA12_09", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "compatible_printers": [ + "Bambu Lab X1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1.json index 247fc5c97e..16013c4055 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1.json @@ -1,124 +1,59 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL X1", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_08", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL X1", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_08", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1C 0.2 nozzle.json index 86fdf20128..c78067c23a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1C 0.2 nozzle.json @@ -1,16 +1,16 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL X1C 0.2 nozzle", - "inherits": "Bambu PLA Glow @BBL X1C", - "from": "system", - "setting_id": "GFSA12_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL X1C 0.2 nozzle", + "inherits": "Bambu PLA Glow @BBL X1C", + "from": "system", + "setting_id": "GFSA12_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..821066a1f4 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1C 0.6 nozzle.json @@ -0,0 +1,74 @@ +{ + "type": "filament", + "name": "Bambu PLA Glow @BBL X1C 0.6 nozzle", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_30", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "18", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "50" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab P1S 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1C.json index bd1fd2232e..68493f889e 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1C.json @@ -1,127 +1,76 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL X1C", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_00", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.4 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL X1C", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_00", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "18", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "50" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1E 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1E 0.2 nozzle.json index ea7cbdd476..85b566349a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1E 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1E 0.2 nozzle.json @@ -1,15 +1,15 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL X1E 0.2 nozzle", - "inherits": "Bambu PLA Glow @BBL X1E", - "from": "system", - "setting_id": "GFSA12_05", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL X1E 0.2 nozzle", + "inherits": "Bambu PLA Glow @BBL X1E", + "from": "system", + "setting_id": "GFSA12_05", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1E.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1E.json index 6aca99dc3b..f86d91bf11 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1E.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X1E.json @@ -1,124 +1,59 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL X1E", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_04", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL X1E", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_04", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D 0.2 nozzle.json index 4ae6b67df7..f67c1b406b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D 0.2 nozzle.json @@ -1,64 +1,137 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL X2D 0.2 nozzle", - "inherits": "Bambu PLA Glow @BBL X1C", - "from": "system", - "setting_id": "GFSA12_22", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_compatibility": [ - "8" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_printable": [ - "0" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "retraction_distances_when_ec": [ - "3", - "3" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_22", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_printable": [ + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "nil", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D 0.4 nozzle.json index 826f5db868..cd89ac6bbc 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D 0.4 nozzle.json @@ -1,272 +1,139 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL X2D 0.4 nozzle", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_20", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1", - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1", - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "18", - "18", - "18", - "18" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_20", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D.json index 2f4bad282c..f5e3247ead 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @BBL X2D.json @@ -1,273 +1,140 @@ { - "type": "filament", - "name": "Bambu PLA Glow @BBL X2D", - "inherits": "Bambu PLA Glow @base", - "from": "system", - "setting_id": "GFSA12_21", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "18", - "18", - "18", - "18" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @BBL X2D", + "inherits": "Bambu PLA Glow @base", + "from": "system", + "setting_id": "GFSA12_21", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Glow @base.json b/resources/profiles/BBL/filament/Bambu PLA Glow @base.json index 7556361f81..8226894db3 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Glow @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA Glow @base.json @@ -1,32 +1,32 @@ { - "type": "filament", - "name": "Bambu PLA Glow @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFEkPBwx", - "instantiation": "false", - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.26" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "19.8" - ], - "temperature_vitrification": [ - "45" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PLA Glow @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFEkPBwx", + "instantiation": "false", + "filament_cost": [ + "21.99" + ], + "filament_density": [ + "1.26" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "19.8" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A1 0.2 nozzle.json index 256a62a56d..59f6662ccd 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A1 0.2 nozzle.json @@ -1,50 +1,50 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL A1 0.2 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_06", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL A1 0.2 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A1.json index f3d08f5ab3..5c01a99100 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A1.json @@ -1,49 +1,49 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL A1", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL A1", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A1M 0.2 nozzle.json index b91ec4a8b8..0648aac9d2 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A1M 0.2 nozzle.json @@ -1,50 +1,50 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL A1M 0.2 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_08", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL A1M 0.2 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_08", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A1M.json index 4161408b26..1f8c8c5f22 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A1M.json @@ -1,49 +1,49 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL A1M", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_07", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL A1M", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_07", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A2L 0.2 nozzle.json index be2d2d0309..79d0231180 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A2L 0.2 nozzle.json @@ -1,77 +1,77 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL A2L 0.2 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_21", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_overhang_4_4_speed": [ - "35" - ], - "filament_overhang_totally_speed": [ - "25" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "25" - ], - "slow_down_min_speed": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL A2L 0.2 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_21", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_overhang_4_4_speed": [ + "35" + ], + "filament_overhang_totally_speed": [ + "25" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "25" + ], + "slow_down_min_speed": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A2L 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A2L 0.4 nozzle.json index 6e4d34f6f6..a72f2aecac 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A2L 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A2L 0.4 nozzle.json @@ -1,68 +1,68 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL A2L 0.4 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_22", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL A2L 0.4 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_22", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A2L 0.6 nozzle.json index 91d868c8d0..8bd86cc2f0 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A2L 0.6 nozzle.json @@ -1,65 +1,65 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL A2L 0.6 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_39", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL A2L 0.6 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_39", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A2L 0.8 nozzle.json index 390387cce7..b09c45cf36 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL A2L 0.8 nozzle.json @@ -1,68 +1,68 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL A2L 0.8 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_40", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL A2L 0.8 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_40", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2C 0.2 nozzle.json index bef804d79e..938f70ef5f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2C 0.2 nozzle.json @@ -1,198 +1,109 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL H2C 0.2 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_17", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.32" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL H2C 0.2 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_17", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2C 0.4 nozzle.json index 45a9cba268..a435869e4d 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2C 0.4 nozzle.json @@ -1,213 +1,155 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL H2C 0.4 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_15", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.06" - ], - "counter_coef_3": [ - "-0.32" - ], - "counter_limit_min": [ - "-0.4" - ], - "counter_limit_max": [ - "0.05" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.32" - ], - "filament_flow_ratio": [ - "1.01", - "1.01" - ], - "filament_max_volumetric_speed": [ - "20", - "30" - ], - "filament_retraction_length": [ - "0.4", - "0.8" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0081" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Lite @BBL H2C 0.4 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_15", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.06" + ], + "counter_coef_3": [ + "-0.32" + ], + "counter_limit_min": [ + "-0.4" + ], + "counter_limit_max": [ + "0.05" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "1.01", + "1.01", + "1.01" + ], + "filament_max_volumetric_speed": [ + "20", + "30", + "20" + ], + "filament_retraction_length": [ + "0.4", + "0.8", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0081" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..b10f90036d --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2C 0.8 nozzle.json @@ -0,0 +1,152 @@ +{ + "type": "filament", + "name": "Bambu PLA Lite @BBL H2C 0.8 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_44", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.06" + ], + "counter_coef_3": [ + "-0.32" + ], + "counter_limit_max": [ + "0.05" + ], + "counter_limit_min": [ + "-0.4" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.32" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1.01", + "1.01" + ], + "filament_max_volumetric_speed": [ + "20", + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0081" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2C.json index 5c1d65e758..a30e801edd 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2C.json @@ -1,214 +1,155 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL H2C", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_16", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.06" - ], - "counter_coef_3": [ - "-0.32" - ], - "counter_limit_min": [ - "-0.4" - ], - "counter_limit_max": [ - "0.05" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.32" - ], - "filament_flow_ratio": [ - "1.01", - "1.01" - ], - "filament_max_volumetric_speed": [ - "20", - "30" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0081" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Lite @BBL H2C", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_16", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.06" + ], + "counter_coef_3": [ + "-0.32" + ], + "counter_limit_max": [ + "0.05" + ], + "counter_limit_min": [ + "-0.4" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "1.01", + "1.01", + "1.01" + ], + "filament_max_volumetric_speed": [ + "20", + "30", + "20" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0081" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2D 0.2 nozzle.json index 8ba8d5847c..fcd3c66c1c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2D 0.2 nozzle.json @@ -1,149 +1,84 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL H2D 0.2 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_11", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.32" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL H2D 0.2 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_11", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2D 0.6 nozzle.json new file mode 100644 index 0000000000..fbb2fb9994 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2D 0.6 nozzle.json @@ -0,0 +1,143 @@ +{ + "type": "filament", + "name": "Bambu PLA Lite @BBL H2D 0.6 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_45", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.06" + ], + "counter_coef_3": [ + "-0.32" + ], + "counter_limit_max": [ + "0.05" + ], + "counter_limit_min": [ + "-0.4" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.32" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "20", + "30", + "20" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0081" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2D 0.8 nozzle.json index 6d6cb1db6d..fb7b165418 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2D 0.8 nozzle.json @@ -1,149 +1,115 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL H2D 0.8 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_10", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.32" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "20", - "30" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL H2D 0.8 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_10", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.06" + ], + "counter_coef_3": [ + "-0.32" + ], + "counter_limit_max": [ + "0.05" + ], + "counter_limit_min": [ + "-0.4" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "20", + "30" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0081" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2D.json index ed89da9c6e..f7bcb1ad8f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2D.json @@ -1,165 +1,126 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL H2D", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_09", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.06" - ], - "counter_coef_3": [ - "-0.32" - ], - "counter_limit_min": [ - "-0.4" - ], - "counter_limit_max": [ - "0.05" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.32" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "20", - "30" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_2": [ - "-0.0081" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL H2D", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.06" + ], + "counter_coef_3": [ + "-0.32" + ], + "counter_limit_max": [ + "0.05" + ], + "counter_limit_min": [ + "-0.4" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "20", + "30", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "1" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0081" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2DP 0.2 nozzle.json index 51079b5a89..3844c578ee 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2DP 0.2 nozzle.json @@ -1,149 +1,82 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_30", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.32" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_30", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2DP 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2DP 0.4 nozzle.json index 06adfb14d1..e2aea610ee 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2DP 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2DP 0.4 nozzle.json @@ -1,164 +1,109 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL H2DP 0.4 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_27", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.06" - ], - "counter_coef_3": [ - "-0.32" - ], - "counter_limit_min": [ - "-0.4" - ], - "counter_limit_max": [ - "0.05" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.32" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "20", - "30" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_2": [ - "-0.0081" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Lite @BBL H2DP 0.4 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_27", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.06" + ], + "counter_coef_3": [ + "-0.32" + ], + "counter_limit_max": [ + "0.05" + ], + "counter_limit_min": [ + "-0.4" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "20", + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0081" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2DP 0.6 nozzle.json index 62ac9cfbae..758129964a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2DP 0.6 nozzle.json @@ -1,164 +1,109 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL H2DP 0.6 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_28", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.06" - ], - "counter_coef_3": [ - "-0.32" - ], - "counter_limit_min": [ - "-0.4" - ], - "counter_limit_max": [ - "0.05" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.32" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "20", - "30" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_2": [ - "-0.0081" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Lite @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_28", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.06" + ], + "counter_coef_3": [ + "-0.32" + ], + "counter_limit_max": [ + "0.05" + ], + "counter_limit_min": [ + "-0.4" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "20", + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0081" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2DP 0.8 nozzle.json index cd59790f33..924d3416d2 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2DP 0.8 nozzle.json @@ -1,149 +1,94 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL H2DP 0.8 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_29", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.32" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "20", - "30" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_29", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "20", + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2S 0.2 nozzle.json index f2417539a7..c28b9c1e67 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2S 0.2 nozzle.json @@ -1,140 +1,87 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL H2S 0.2 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_19", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL H2S 0.2 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_19", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2S 0.6 nozzle.json new file mode 100644 index 0000000000..e1580f9a56 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2S 0.6 nozzle.json @@ -0,0 +1,124 @@ +{ + "type": "filament", + "name": "Bambu PLA Lite @BBL H2S 0.6 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_46", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "20", + "30", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2S 0.8 nozzle.json new file mode 100644 index 0000000000..a1435c6c6f --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2S 0.8 nozzle.json @@ -0,0 +1,111 @@ +{ + "type": "filament", + "name": "Bambu PLA Lite @BBL H2S 0.8 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_47", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "20", + "30" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2S.json index ff2794f1af..da3587b191 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL H2S.json @@ -1,142 +1,112 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL H2S", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_18", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "20", - "30" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Lite @BBL H2S", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_18", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "20", + "30", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P1P 0.2 nozzle.json index e935a0de91..897af5a38f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P1P 0.2 nozzle.json @@ -1,137 +1,72 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL P1P 0.2 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL P1P 0.2 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P1P 0.6 nozzle.json new file mode 100644 index 0000000000..a270dea0ab --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P1P 0.6 nozzle.json @@ -0,0 +1,95 @@ +{ + "type": "filament", + "name": "Bambu PLA Lite @BBL P1P 0.6 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_34", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "16", + "21" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_z_hop_types": [ + "nil", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P1P.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P1P.json index 17c8cb629e..e7a9400504 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P1P.json @@ -1,142 +1,96 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL P1P", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL P1P", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "16", + "21" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_z_hop_types": [ + "nil", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P2S 0.2 nozzle.json index 6a04db26bd..9fa4716211 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P2S 0.2 nozzle.json @@ -1,168 +1,77 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL P2S 0.2 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_24", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL P2S 0.2 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_24", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P2S 0.4 nozzle.json index c4db23999b..b7173ec6fd 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P2S 0.4 nozzle.json @@ -1,168 +1,99 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL P2S 0.4 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_23", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Lite @BBL P2S 0.4 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_23", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1.01", + "0.98", + "1.01" + ], + "filament_max_volumetric_speed": [ + "16", + "40", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "18", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P2S 0.6 nozzle.json index e8437c376c..93276abfa2 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P2S 0.6 nozzle.json @@ -1,168 +1,99 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL P2S 0.6 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_25", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Lite @BBL P2S 0.6 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_25", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "16", + "40", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P2S 0.8 nozzle.json index 9738cd919e..3e7034724b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL P2S 0.8 nozzle.json @@ -1,168 +1,85 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL P2S 0.8 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_26", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL P2S 0.8 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_26", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "16", + "40" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X1C 0.2 nozzle.json index 8730cd4c0b..dadf938879 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X1C 0.2 nozzle.json @@ -1,125 +1,60 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL X1C 0.2 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_01", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL X1C 0.2 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..0ba97e92b1 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X1C 0.6 nozzle.json @@ -0,0 +1,78 @@ +{ + "type": "filament", + "name": "Bambu PLA Lite @BBL X1C 0.6 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_31", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "16", + "21" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_z_hop_types": [ + "nil", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab P1S 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X1C 0.8 nozzle.json index e8e60c657c..cc8e3aafd8 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X1C 0.8 nozzle.json @@ -1,125 +1,60 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL X1C 0.8 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_02", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.8 nozzle", - "Bambu Lab X1 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL X1C 0.8 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_02", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X1C.json index 6dcacd02a0..00ece6ec72 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X1C.json @@ -1,129 +1,82 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL X1C", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_00", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL X1C", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_00", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "16", + "21" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_z_hop_types": [ + "nil", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab P1S 0.4 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.2 nozzle.json index 31210a2d44..fa3cbb9c55 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.2 nozzle.json @@ -1,275 +1,134 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL X2D 0.2 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_14", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil", - "5", - "5" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2", - "0.5", - "0.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_14", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.4 nozzle.json index c2ff288751..53dc610c25 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.4 nozzle.json @@ -1,272 +1,139 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL X2D 0.4 nozzle", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_12", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "3", - "3" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1", - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1", - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1.029", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "16", - "40", - "16", - "16" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Lite @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_12", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1.029", + "0.98", + "1.029", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "16", + "40", + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "3", + "3", + "3" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..33ca9178ff --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D 0.8 nozzle.json @@ -0,0 +1,131 @@ +{ + "type": "filament", + "name": "Bambu PLA Lite @BBL X2D 0.8 nozzle", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_48", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "16", + "40", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D.json index fb392361e4..82f5fb2a27 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @BBL X2D.json @@ -1,273 +1,139 @@ { - "type": "filament", - "name": "Bambu PLA Lite @BBL X2D", - "inherits": "Bambu PLA Lite @base", - "from": "system", - "setting_id": "GFSA18_13", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "16", - "40", - "16", - "16" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Lite @BBL X2D", + "inherits": "Bambu PLA Lite @base", + "from": "system", + "setting_id": "GFSA18_13", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "16", + "40", + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Lite @base.json b/resources/profiles/BBL/filament/Bambu PLA Lite @base.json index 4a21717d9e..1a74521338 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Lite @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA Lite @base.json @@ -1,44 +1,41 @@ { - "type": "filament", - "name": "Bambu PLA Lite @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFnfxTvi", - "instantiation": "false", - "filament_cost": [ - "0" - ], - "filament_density": [ - "1.40" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_scarf_gap": [ - "0%" - ], - "filament_scarf_height": [ - "5%" - ], - "filament_scarf_seam_type": [ - "none" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "6.6" - ], - "nozzle_temperature": [ - "210" - ], - "nozzle_temperature_initial_layer": [ - "210" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PLA Lite @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFnfxTvi", + "instantiation": "false", + "filament_cost": [ + "18.99" + ], + "filament_density": [ + "1.40" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "5%" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "6.6" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A1.json index b752b8a869..1452831345 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A1.json @@ -1,43 +1,43 @@ { - "type": "filament", - "name": "Bambu PLA Marble @BBL A1", - "inherits": "Bambu PLA Marble @base", - "from": "system", - "setting_id": "GFSA07_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @BBL A1", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A1M.json index 83ceb3a359..c53cde99c5 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A1M.json @@ -1,43 +1,43 @@ { - "type": "filament", - "name": "Bambu PLA Marble @BBL A1M", - "inherits": "Bambu PLA Marble @base", - "from": "system", - "setting_id": "GFSA07_02", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "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" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @BBL A1M", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A2L 0.6 nozzle.json index 594122a3e3..1015ec00c0 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A2L 0.6 nozzle.json @@ -1,50 +1,50 @@ { - "type": "filament", - "name": "Bambu PLA Marble @BBL A2L 0.6 nozzle", - "inherits": "Bambu PLA Marble @base", - "from": "system", - "setting_id": "GFSA07_23", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @BBL A2L 0.6 nozzle", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_23", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A2L 0.8 nozzle.json index 4aca94fe0d..2843aa8280 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A2L 0.8 nozzle.json @@ -1,50 +1,50 @@ { - "type": "filament", - "name": "Bambu PLA Marble @BBL A2L 0.8 nozzle", - "inherits": "Bambu PLA Marble @base", - "from": "system", - "setting_id": "GFSA07_24", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @BBL A2L 0.8 nozzle", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_24", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A2L.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A2L.json index cf3b42820c..b2983ef119 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL A2L.json @@ -1,50 +1,50 @@ { - "type": "filament", - "name": "Bambu PLA Marble @BBL A2L", - "inherits": "Bambu PLA Marble @base", - "from": "system", - "setting_id": "GFSA07_13", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @BBL A2L", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_13", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2C 0.4 nozzle.json index ef426cb255..1cdc32a534 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2C 0.4 nozzle.json @@ -1,186 +1,128 @@ { - "type": "filament", - "name": "Bambu PLA Marble @BBL H2C 0.4 nozzle", - "inherits": "Bambu PLA Marble @base", - "from": "system", - "setting_id": "GFSA07_11", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @BBL H2C 0.4 nozzle", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_11", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2C.json index 4055a4021e..6840297c89 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2C.json @@ -1,187 +1,129 @@ { - "type": "filament", - "name": "Bambu PLA Marble @BBL H2C", - "inherits": "Bambu PLA Marble @base", - "from": "system", - "setting_id": "GFSA07_12", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @BBL H2C", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_12", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2D.json index 8bdb5beb00..47f56786ac 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2D.json @@ -1,136 +1,98 @@ { - "type": "filament", - "name": "Bambu PLA Marble @BBL H2D", - "inherits": "Bambu PLA Marble @base", - "from": "system", - "setting_id": "GFSA07_04", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @BBL H2D", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_04", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2DP.json index a1ee864da0..a12b15a930 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2DP.json @@ -1,136 +1,81 @@ { - "type": "filament", - "name": "Bambu PLA Marble @BBL H2DP", - "inherits": "Bambu PLA Marble @base", - "from": "system", - "setting_id": "GFSA07_07", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @BBL H2DP", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_07", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2S.json index 51db0ee82d..077bbab752 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL H2S.json @@ -1,145 +1,117 @@ { - "type": "filament", - "name": "Bambu PLA Marble @BBL H2S", - "inherits": "Bambu PLA Marble @base", - "from": "system", - "setting_id": "GFSA07_06", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "80" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @BBL H2S", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_06", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "80" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL P2S 0.8 nozzle.json index f313c05331..61be85f4aa 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL P2S 0.8 nozzle.json @@ -1,174 +1,79 @@ { - "type": "filament", - "name": "Bambu PLA Marble @BBL P2S 0.8 nozzle", - "inherits": "Bambu PLA Marble @base", - "from": "system", - "setting_id": "GFSA07_14", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @BBL P2S 0.8 nozzle", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_14", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL P2S.json index 09dfb9ecbf..28071dfd7c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL P2S.json @@ -1,175 +1,86 @@ { - "type": "filament", - "name": "Bambu PLA Marble @BBL P2S", - "inherits": "Bambu PLA Marble @base", - "from": "system", - "setting_id": "GFSA07_05", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @BBL P2S", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_05", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X1.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X1.json index 4dba8032bc..1bffa6b66b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X1.json @@ -1,124 +1,59 @@ { - "type": "filament", - "name": "Bambu PLA Marble @BBL X1", - "inherits": "Bambu PLA Marble @base", - "from": "system", - "setting_id": "GFSA07_01", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @BBL X1", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..2c55f8c681 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X1C 0.6 nozzle.json @@ -0,0 +1,74 @@ +{ + "type": "filament", + "name": "Bambu PLA Marble @BBL X1C 0.6 nozzle", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_15", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab P1S 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X1C.json index f07ebe22e1..681a71eade 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X1C.json @@ -1,130 +1,79 @@ { - "type": "filament", - "name": "Bambu PLA Marble @BBL X1C", - "inherits": "Bambu PLA Marble @base", - "from": "system", - "setting_id": "GFSA07_00", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @BBL X1C", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_00", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X2D 0.4 nozzle.json index 1a285d0cca..e8004a8a96 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X2D 0.4 nozzle.json @@ -1,272 +1,139 @@ { - "type": "filament", - "name": "Bambu PLA Marble @BBL X2D 0.4 nozzle", - "inherits": "Bambu PLA Marble @base", - "from": "system", - "setting_id": "GFSA07_08", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1", - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1", - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_08", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X2D.json index e1f7f6f18b..1caa8e0ec0 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @BBL X2D.json @@ -1,273 +1,140 @@ { - "type": "filament", - "name": "Bambu PLA Marble @BBL X2D", - "inherits": "Bambu PLA Marble @base", - "from": "system", - "setting_id": "GFSA07_09", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @BBL X2D", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_09", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Marble @base.json b/resources/profiles/BBL/filament/Bambu PLA Marble @base.json index 4c9ecb2ff5..6669b42d96 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Marble @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA Marble @base.json @@ -1,26 +1,26 @@ { - "type": "filament", - "name": "Bambu PLA Marble @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OF9OlTWH", - "instantiation": "false", - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.22" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "6.5" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OF9OlTWH", + "instantiation": "false", + "filament_cost": [ + "21.99" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "6.5" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A1 0.2 nozzle.json index cf043fc050..243fdbface 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A1 0.2 nozzle.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL A1 0.2 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_06", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL A1 0.2 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A1.json index 5a47157b33..4a06b0cfcc 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A1.json @@ -1,49 +1,49 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL A1", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "22" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL A1", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "22" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A1M 0.2 nozzle.json index 41532d323e..ae8731e6c4 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A1M 0.2 nozzle.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL A1M 0.2 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL A1M 0.2 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A1M.json index acd4791ec4..157576d182 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A1M.json @@ -1,49 +1,49 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL A1M", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_02", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "22" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL A1M", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "22" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A2L 0.2 nozzle.json index 3434f4e252..7965c9dd02 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A2L 0.2 nozzle.json @@ -1,71 +1,71 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL A2L 0.2 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_24", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_overhang_4_4_speed": [ - "35" - ], - "filament_overhang_totally_speed": [ - "25" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "25" - ], - "slow_down_min_speed": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL A2L 0.2 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_24", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_overhang_4_4_speed": [ + "35" + ], + "filament_overhang_totally_speed": [ + "25" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "25" + ], + "slow_down_min_speed": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A2L 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A2L 0.4 nozzle.json index d9f4a5e0c5..db067ed80f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A2L 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A2L 0.4 nozzle.json @@ -1,65 +1,65 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL A2L 0.4 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_25", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "24" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL A2L 0.4 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_25", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "24" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A2L 0.6 nozzle.json index 3e4bec2ae7..4a5a1095fc 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A2L 0.6 nozzle.json @@ -1,65 +1,65 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL A2L 0.6 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_44", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "22" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "1" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL A2L 0.6 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_44", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "22" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "1" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A2L 0.8 nozzle.json index a68950ebb2..6517427208 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL A2L 0.8 nozzle.json @@ -1,62 +1,62 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL A2L 0.8 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_45", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "22" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL A2L 0.8 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_45", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "22" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2C 0.2 nozzle.json index cf9b4b85ce..8b970d07f2 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2C 0.2 nozzle.json @@ -1,213 +1,124 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL H2C 0.2 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_23", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.0066" - ], - "counter_limit_max": [ - "0.082" - ], - "counter_limit_min": [ - "0.0066" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "60" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0026" - ], - "hole_coef_3": [ - "0.1116" - ], - "hole_limit_max": [ - "0.1116" - ], - "hole_limit_min": [ - "0.046" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL H2C 0.2 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_23", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "counter_limit_min": [ + "0.0066" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_max": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2C 0.6 nozzle.json index b613b0aea6..7ff6555cec 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2C 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2C 0.6 nozzle.json @@ -1,213 +1,155 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL H2C 0.6 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_31", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.0066" - ], - "counter_limit_max": [ - "0.082" - ], - "counter_limit_min": [ - "0.0066" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "60" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0026" - ], - "hole_coef_3": [ - "0.1116" - ], - "hole_limit_max": [ - "0.1116" - ], - "hole_limit_min": [ - "0.046" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Matte @BBL H2C 0.6 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_31", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_min": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "30", + "40", + "30" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "hole_limit_max": [ + "0.1116" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2C 0.8 nozzle.json index 0e60307815..9bcd43edb4 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2C 0.8 nozzle.json @@ -1,213 +1,140 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL H2C 0.8 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_32", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.0066" - ], - "counter_limit_max": [ - "0.082" - ], - "counter_limit_min": [ - "0.0066" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "60" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0026" - ], - "hole_coef_3": [ - "0.1116" - ], - "hole_limit_max": [ - "0.1116" - ], - "hole_limit_min": [ - "0.046" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL H2C 0.8 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_32", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "counter_limit_min": [ + "0.0066" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "30", + "40" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_max": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2C.json index 58464d719b..06643057f8 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2C.json @@ -1,213 +1,155 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL H2C", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_22", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.0066" - ], - "counter_limit_max": [ - "0.082" - ], - "counter_limit_min": [ - "0.0066" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "60" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "25", - "40" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.8" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0026" - ], - "hole_coef_3": [ - "0.1116" - ], - "hole_limit_max": [ - "0.1116" - ], - "hole_limit_min": [ - "0.046" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Matte @BBL H2C", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_22", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_min": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "25", + "40", + "25" + ], + "filament_retraction_length": [ + "0.4", + "0.8", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "hole_limit_max": [ + "0.1116" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2D 0.2 nozzle.json index 78bd6ad0a1..b190108aed 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2D 0.2 nozzle.json @@ -1,143 +1,102 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL H2D 0.2 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_13", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL H2D 0.2 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_13", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "counter_limit_min": [ + "0.0066" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_max": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2D 0.6 nozzle.json index 783b7d04a0..be51abe9d3 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2D 0.6 nozzle.json @@ -1,165 +1,129 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL H2D 0.6 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_27", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.06" - ], - "counter_coef_3": [ - "-0.32" - ], - "counter_limit_min": [ - "-0.4" - ], - "counter_limit_max": [ - "0.05" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_extruder_id": [ - "1", - "1" - ], - "hole_coef_2": [ - "-0.0081" - ], - "hole_coef_3": [ - "0.18" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL H2D 0.6 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_27", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "counter_limit_min": [ + "0.0066" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "30", + "40", + "30" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_max": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2D 0.8 nozzle.json index 03ed06c5f3..3ada24f209 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2D 0.8 nozzle.json @@ -1,143 +1,118 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL H2D 0.8 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_14", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL H2D 0.8 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_14", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "counter_limit_min": [ + "0.0066" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "30", + "40" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_max": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2D.json index 327ca4982f..2a0b55932e 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2D.json @@ -1,161 +1,129 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL H2D", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_05", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.06" - ], - "counter_coef_3": [ - "-0.32" - ], - "counter_limit_min": [ - "-0.4" - ], - "counter_limit_max": [ - "0.05" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "25", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_2": [ - "-0.0081" - ], - "hole_coef_3": [ - "0.18" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL H2D", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_05", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "counter_limit_min": [ + "0.0066" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "25", + "40", + "31" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "1" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_max": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP 0.2 nozzle.json index bcabadcc3c..f69cf85eca 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP 0.2 nozzle.json @@ -1,143 +1,72 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_18", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_18", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP 0.6 nozzle.json index 0eaeecced3..477bf3492a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP 0.6 nozzle.json @@ -1,161 +1,106 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL H2DP 0.6 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_28", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.06" - ], - "counter_coef_3": [ - "-0.32" - ], - "counter_limit_min": [ - "-0.4" - ], - "counter_limit_max": [ - "0.05" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_2": [ - "-0.0081" - ], - "hole_coef_3": [ - "0.18" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Matte @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_28", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.06" + ], + "counter_coef_3": [ + "-0.32" + ], + "counter_limit_max": [ + "0.05" + ], + "counter_limit_min": [ + "-0.4" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "30", + "40" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0081" + ], + "hole_coef_3": [ + "0.18" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP 0.8 nozzle.json index 3592ee9216..85a1fbcf4f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP 0.8 nozzle.json @@ -1,143 +1,88 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL H2DP 0.8 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_19", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_19", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "30", + "40" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file 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 a12465e381..08a123c6c4 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP.json @@ -1,161 +1,106 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL H2DP", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_17", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.06" - ], - "counter_coef_3": [ - "-0.32" - ], - "counter_limit_min": [ - "-0.4" - ], - "counter_limit_max": [ - "0.05" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "25", - "35" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_2": [ - "-0.0081" - ], - "hole_coef_3": [ - "0.18" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Matte @BBL H2DP", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_17", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.06" + ], + "counter_coef_3": [ + "-0.32" + ], + "counter_limit_max": [ + "0.05" + ], + "counter_limit_min": [ + "-0.4" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "25", + "35" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0081" + ], + "hole_coef_3": [ + "0.18" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2S 0.2 nozzle.json index de41437dde..eeea4e7a78 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2S 0.2 nozzle.json @@ -1,137 +1,108 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL H2S 0.2 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_08", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL H2S 0.2 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_08", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_min": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "hole_limit_max": [ + "0.1116" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2S 0.6 nozzle.json index 6cf6262e97..6c611715da 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2S 0.6 nozzle.json @@ -1,140 +1,136 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL H2S 0.6 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_30", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Matte @BBL H2S 0.6 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_30", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_min": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "30", + "40", + "30" + ], + "filament_prime_volume": [ + "30" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "hole_limit_max": [ + "0.1116" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2S 0.8 nozzle.json index d71ddd97b0..0c38e3d228 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2S 0.8 nozzle.json @@ -1,140 +1,123 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL H2S 0.8 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_29", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "30", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL H2S 0.8 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_29", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_min": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "30", + "40" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "hole_limit_max": [ + "0.1116" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2S.json index d1a2406f98..f794e7e0f5 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2S.json @@ -1,137 +1,133 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL H2S", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_07", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "25", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Matte @BBL H2S", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_07", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_min": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "25", + "40", + "25" + ], + "filament_prime_volume": [ + "30" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "hole_limit_max": [ + "0.1116" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P1S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P1S 0.4 nozzle.json new file mode 100644 index 0000000000..9065c06e4c --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P1S 0.4 nozzle.json @@ -0,0 +1,73 @@ +{ + "type": "filament", + "name": "Bambu PLA Matte @BBL P1S 0.4 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_34", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "22", + "29" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.4 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P1S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P1S 0.6 nozzle.json new file mode 100644 index 0000000000..df45e15bfb --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P1S 0.6 nozzle.json @@ -0,0 +1,73 @@ +{ + "type": "filament", + "name": "Bambu PLA Matte @BBL P1S 0.6 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_35", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "22", + "29" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P2S 0.2 nozzle.json index 864fd08701..7af0bca0ae 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P2S 0.2 nozzle.json @@ -1,174 +1,119 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL P2S 0.2 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_15", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "0", - "0" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL P2S 0.2 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_15", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "counter_limit_min": [ + "0.0066" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "0", + "0" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_max": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P2S 0.6 nozzle.json index a8dfd5c044..8845412d00 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P2S 0.6 nozzle.json @@ -1,174 +1,129 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL P2S 0.6 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_26", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "22", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Matte @BBL P2S 0.6 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_26", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_min": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "22", + "40", + "22" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "hole_limit_max": [ + "0.1116" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P2S 0.8 nozzle.json index d0f2aad651..369c15e2cd 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P2S 0.8 nozzle.json @@ -1,174 +1,115 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL P2S 0.8 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_16", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "22", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL P2S 0.8 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_16", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "counter_limit_min": [ + "0.0066" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "22", + "40" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_max": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P2S.json index 47c29030b0..85051a2210 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL P2S.json @@ -1,174 +1,129 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL P2S", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_12", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "22", - "40" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "0", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Matte @BBL P2S", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_12", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_min": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1.01", + "0.98", + "1.01" + ], + "filament_max_volumetric_speed": [ + "22", + "40", + "22" + ], + "filament_retraction_distances_when_cut": [ + "0", + "10", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "hole_limit_max": [ + "0.1116" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1.json index 71d6c01418..0f652bab76 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1.json @@ -1,127 +1,62 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL X1", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA05", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "22", - "22" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL X1", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA05", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "22", + "22" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1C 0.2 nozzle.json index 8ff99d2c90..053b788985 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1C 0.2 nozzle.json @@ -1,125 +1,60 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL X1C 0.2 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_00", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL X1C 0.2 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..737b16ff2a --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1C 0.6 nozzle.json @@ -0,0 +1,65 @@ +{ + "type": "filament", + "name": "Bambu PLA Matte @BBL X1C 0.6 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_33", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "22", + "29" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.6" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1C 0.8 nozzle.json index c9611be68c..6e90773f8f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1C 0.8 nozzle.json @@ -1,124 +1,59 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL X1C 0.8 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_01", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "22", - "22" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL X1C 0.8 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "22", + "22" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1C.json index f24ab7836c..09eeed982a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X1C.json @@ -1,127 +1,75 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL X1C", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "22", - "22" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL X1C", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "22", + "29" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.2 nozzle.json index b34707d2fe..229a26caff 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.2 nozzle.json @@ -1,299 +1,158 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL X2D 0.2 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_20", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil", - "5", - "5" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.0066" - ], - "counter_limit_max": [ - "0.082" - ], - "counter_limit_min": [ - "0.0066" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2", - "0.5", - "0.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "hole_coef_2": [ - "-0.0026" - ], - "hole_coef_3": [ - "0.1116" - ], - "hole_limit_max": [ - "0.1116" - ], - "hole_limit_min": [ - "0.046" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_20", + "instantiation": "true", + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "counter_limit_min": [ + "0.0066" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_max": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.4 nozzle.json index a598fe2ee9..ad344cf7c7 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.4 nozzle.json @@ -1,296 +1,163 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL X2D 0.4 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_09", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1", - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1", - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.0066" - ], - "counter_limit_max": [ - "0.082" - ], - "counter_limit_min": [ - "0.0066" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1.006", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "22", - "40", - "22", - "25" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "hole_coef_2": [ - "-0.0026" - ], - "hole_coef_3": [ - "0.1116" - ], - "hole_limit_max": [ - "0.1116" - ], - "hole_limit_min": [ - "0.046" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Matte @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_09", + "instantiation": "true", + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "counter_limit_min": [ + "0.0066" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1.006", + "0.98", + "1.006", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "22", + "40", + "22", + "22", + "25", + "22" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_max": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..9b7b3d49e5 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D 0.8 nozzle.json @@ -0,0 +1,155 @@ +{ + "type": "filament", + "name": "Bambu PLA Matte @BBL X2D 0.8 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_49", + "instantiation": "true", + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "counter_limit_min": [ + "0.0066" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "22", + "40", + "22", + "22" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_max": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D.json index 727ba0f6aa..9f1f6b7dbe 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL X2D.json @@ -1,297 +1,163 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL X2D", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_11", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.0066" - ], - "counter_limit_max": [ - "0.082" - ], - "counter_limit_min": [ - "0.0066" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "22", - "40", - "22", - "22" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "hole_coef_2": [ - "-0.0026" - ], - "hole_coef_3": [ - "0.1116" - ], - "hole_limit_max": [ - "0.1116" - ], - "hole_limit_min": [ - "0.046" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Matte @BBL X2D", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_11", + "instantiation": "true", + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.0066" + ], + "counter_limit_max": [ + "0.082" + ], + "counter_limit_min": [ + "0.0066" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "22", + "40", + "22", + "22", + "22", + "22" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0026" + ], + "hole_coef_3": [ + "0.1116" + ], + "hole_limit_max": [ + "0.1116" + ], + "hole_limit_min": [ + "0.046" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @base.json b/resources/profiles/BBL/filament/Bambu PLA Matte @base.json index e98b6c3633..e5e552d9fd 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @base.json @@ -1,38 +1,32 @@ { - "type": "filament", - "name": "Bambu PLA Matte @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFXIbw5D", - "instantiation": "false", - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.32" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "filament_scarf_seam_type": [ - "none" - ], - "filament_scarf_height": [ - "5%" - ], - "filament_scarf_gap": [ - "0%" - ], - "filament_scarf_length": [ - "10" - ], - "impact_strength_z": [ - "6.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}" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFXIbw5D", + "instantiation": "false", + "filament_cost": [ + "15.99" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "5%" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "6.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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A1 0.2 nozzle.json index 9c6d0f5c22..06e56bced1 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A1 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL A1 0.2 nozzle", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL A1 0.2 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A1.json index 8a752ef028..b4fcb8fcb5 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A1.json @@ -1,40 +1,40 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL A1", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL A1", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A1M 0.2 nozzle.json index b88ef9fff6..f3f5d36e40 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A1M 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL A1M 0.2 nozzle", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "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" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL A1M 0.2 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A1M.json index c0973a90fc..fce4ffa817 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A1M.json @@ -1,40 +1,40 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL A1M", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_00", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "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" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL A1M", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_00", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A2L 0.2 nozzle.json index 7362252ecd..e66ae6d862 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A2L 0.2 nozzle.json @@ -1,65 +1,65 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL A2L 0.2 nozzle", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_22", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_overhang_4_4_speed": [ - "35" - ], - "filament_overhang_totally_speed": [ - "25" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "25" - ], - "slow_down_min_speed": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL A2L 0.2 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_22", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_overhang_4_4_speed": [ + "35" + ], + "filament_overhang_totally_speed": [ + "25" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "25" + ], + "slow_down_min_speed": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A2L 0.6 nozzle.json index df84dabb95..066f53bc5b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A2L 0.6 nozzle.json @@ -1,56 +1,56 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL A2L 0.6 nozzle", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_37", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL A2L 0.6 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_37", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A2L 0.8 nozzle.json index 3b3e4459c2..af365bc1d8 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A2L 0.8 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL A2L 0.8 nozzle", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_38", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "10" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL A2L 0.8 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_38", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A2L.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A2L.json index 9eba89e942..9d9e62d282 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL A2L.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL A2L", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_23", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL A2L", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_23", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2C 0.2 nozzle.json index 5bfe6de92a..d500051bb1 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2C 0.2 nozzle.json @@ -1,186 +1,97 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL H2C 0.2 nozzle", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_19", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL H2C 0.2 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_19", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2C 0.4 nozzle.json index 4ac0996ec9..75b221dcd3 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2C 0.4 nozzle.json @@ -1,186 +1,128 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL H2C 0.4 nozzle", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_20", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL H2C 0.4 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_20", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2C.json index fde942ad58..1ec6730b1a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2C.json @@ -1,187 +1,129 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL H2C", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_21", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL H2C", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_21", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2D 0.2 nozzle.json index a492831a50..f32321f179 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2D 0.2 nozzle.json @@ -1,134 +1,69 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL H2D 0.2 nozzle", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_06", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL H2D 0.2 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_06", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2D.json index 6d66995bd5..933953be98 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2D.json @@ -1,136 +1,98 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL H2D", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_07", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL H2D", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_07", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2DP 0.2 nozzle.json index 8b0958cf1e..c3d438baa2 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2DP 0.2 nozzle.json @@ -1,134 +1,63 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_14", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_14", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2DP.json index 51ce68a56e..87e11db490 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2DP.json @@ -1,136 +1,81 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL H2DP", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_15", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL H2DP", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_15", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2S 0.2 nozzle.json index 44c1ea4df4..e437ccd9f9 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2S 0.2 nozzle.json @@ -1,140 +1,87 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL H2S 0.2 nozzle", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_09", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL H2S 0.2 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2S.json index 7ee5ea8d79..9c5648425d 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL H2S.json @@ -1,142 +1,114 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL H2S", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_08", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL H2S", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_08", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL P2S 0.2 nozzle.json index c412967d43..d178683ef1 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL P2S 0.2 nozzle.json @@ -1,177 +1,82 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL P2S 0.2 nozzle", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_12", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL P2S 0.2 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_12", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL P2S 0.6 nozzle.json index b5fb8098b8..7c26b3e980 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL P2S 0.6 nozzle.json @@ -1,177 +1,88 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL P2S 0.6 nozzle", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_24", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL P2S 0.6 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_24", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "0.8" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL P2S 0.8 nozzle.json index a317e4d5cb..8211ae0b54 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL P2S 0.8 nozzle.json @@ -1,177 +1,82 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL P2S 0.8 nozzle", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_25", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL P2S 0.8 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_25", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL P2S.json index 6b75c8735d..5478a77797 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL P2S.json @@ -1,174 +1,80 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL P2S", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_13", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL P2S", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_13", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X1.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X1.json index bfb349d52b..6b95f9a597 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X1.json @@ -1,124 +1,51 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL X1", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_02", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL X1", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_02", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X1C 0.2 nozzle.json index c5fbe05d03..31d3f0f368 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X1C 0.2 nozzle.json @@ -1,125 +1,52 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL X1C 0.2 nozzle", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL X1C 0.2 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..098b7435e6 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X1C 0.6 nozzle.json @@ -0,0 +1,66 @@ +{ + "type": "filament", + "name": "Bambu PLA Metal @BBL X1C 0.6 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_28", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "29" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab P1S 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X1C.json index 70816bef29..197e07ca4d 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X1C.json @@ -1,130 +1,71 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL X1C", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL X1C", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "29" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D 0.2 nozzle.json index d88aa17534..ceb5c15240 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D 0.2 nozzle.json @@ -1,275 +1,128 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL X2D 0.2 nozzle", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_16", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "5", - "5" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2", - "0.5", - "0.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_16", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D 0.4 nozzle.json index 533a24b7dd..143ca8436f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D 0.4 nozzle.json @@ -1,272 +1,131 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL X2D 0.4 nozzle", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_17", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1", - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1", - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21", - "21", - "21" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_17", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D.json index 14469bc7e8..eadce2649f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @BBL X2D.json @@ -1,276 +1,135 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL X2D", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_18", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21", - "21", - "21" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL X2D", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_18", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Metal @base.json b/resources/profiles/BBL/filament/Bambu PLA Metal @base.json index 9a12d97f4d..adf2d779e5 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Metal @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA Metal @base.json @@ -1,30 +1,27 @@ { - "type": "filament", - "name": "Bambu PLA Metal @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFrKLeE3", - "instantiation": "false", - "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.", - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.25" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "filament_scarf_seam_type": [ - "none" - ], - "impact_strength_z": [ - "16.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}" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFrKLeE3", + "instantiation": "false", + "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.", + "filament_cost": [ + "21.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "16.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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1 0.2 nozzle.json new file mode 100644 index 0000000000..63ea4f3754 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1 0.2 nozzle.json @@ -0,0 +1,44 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL A1 0.2 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_00", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1.6" + ], + "filament_retract_before_wipe": [ + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1 0.8 nozzle.json new file mode 100644 index 0000000000..9440a91732 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1 0.8 nozzle.json @@ -0,0 +1,51 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL A1 0.8 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_01", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_retract_before_wipe": [ + "0" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "10" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1.json new file mode 100644 index 0000000000..245ccd3c3d --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL A1", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_retract_before_wipe": [ + "0" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "10" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1M 0.2 nozzle.json new file mode 100644 index 0000000000..7569bf572c --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1M 0.2 nozzle.json @@ -0,0 +1,44 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL A1M 0.2 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1.6" + ], + "filament_retract_before_wipe": [ + "0" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1M 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1M 0.8 nozzle.json new file mode 100644 index 0000000000..fab321d37f --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1M 0.8 nozzle.json @@ -0,0 +1,51 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL A1M 0.8 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_retract_before_wipe": [ + "0" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "10" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1M.json new file mode 100644 index 0000000000..0577eca47c --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A1M.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL A1M", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_retract_before_wipe": [ + "0" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "10" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A2L 0.2 nozzle.json index f910eba123..62ebcc0ad4 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A2L 0.2 nozzle.json @@ -1,56 +1,56 @@ { - "type": "filament", - "name": "Bambu PLA Pure @BBL A2L 0.2 nozzle", - "inherits": "Bambu PLA Pure @base", - "from": "system", - "setting_id": "GFSA19_06", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "1.6" - ], - "filament_overhang_4_4_speed": [ - "30" - ], - "filament_overhang_totally_speed": [ - "25" - ], - "filament_retract_before_wipe": [ - "0" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "slow_down_layer_time": [ - "25" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Pure @BBL A2L 0.2 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_06", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "1.6" + ], + "filament_overhang_4_4_speed": [ + "30" + ], + "filament_overhang_totally_speed": [ + "25" + ], + "filament_retract_before_wipe": [ + "0" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_layer_time": [ + "25" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A2L 0.6 nozzle.json index 290e941ac8..1da1c1a536 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A2L 0.6 nozzle.json @@ -1,50 +1,50 @@ { - "type": "filament", - "name": "Bambu PLA Pure @BBL A2L 0.6 nozzle", - "inherits": "Bambu PLA Pure @base", - "from": "system", - "setting_id": "GFSA19_41", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_retract_before_wipe": [ - "0" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "slow_down_layer_time": [ - "10" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Pure @BBL A2L 0.6 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_41", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_retract_before_wipe": [ + "0" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A2L 0.8 nozzle.json index d642e84cfd..e42d908fff 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A2L 0.8 nozzle.json @@ -1,50 +1,50 @@ { - "type": "filament", - "name": "Bambu PLA Pure @BBL A2L 0.8 nozzle", - "inherits": "Bambu PLA Pure @base", - "from": "system", - "setting_id": "GFSA19_07", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_retract_before_wipe": [ - "0" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "slow_down_layer_time": [ - "10" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Pure @BBL A2L 0.8 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_07", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_retract_before_wipe": [ + "0" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A2L.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A2L.json index b5ce60acd9..3410271a51 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL A2L.json @@ -1,53 +1,53 @@ { - "type": "filament", - "name": "Bambu PLA Pure @BBL A2L", - "inherits": "Bambu PLA Pure @base", - "from": "system", - "setting_id": "GFSA19_08", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_retract_before_wipe": [ - "0" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "slow_down_layer_time": [ - "10" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Pure @BBL A2L", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_08", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_retract_before_wipe": [ + "0" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2C 0.2 nozzle.json index 2a4b3a6fa4..2fce1d0a33 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2C 0.2 nozzle.json @@ -1,183 +1,90 @@ { - "type": "filament", - "name": "Bambu PLA Pure @BBL H2C 0.2 nozzle", - "inherits": "Bambu PLA Pure @base", - "from": "system", - "setting_id": "GFSA19_09", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_change_length": [ - "4" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_preheat_temperature_delta": [ - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Pure @BBL H2C 0.2 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2C 0.6 nozzle.json new file mode 100644 index 0000000000..54866db466 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2C 0.6 nozzle.json @@ -0,0 +1,134 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL H2C 0.6 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_42", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..88ab702e3e --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2C 0.8 nozzle.json @@ -0,0 +1,119 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL H2C 0.8 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_43", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180" + ], + "filament_preheat_temperature_delta": [ + "10", + "10" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2C.json index a53085235d..8a01b018c3 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2C.json @@ -1,182 +1,117 @@ { - "type": "filament", - "name": "Bambu PLA Pure @BBL H2C", - "inherits": "Bambu PLA Pure @base", - "from": "system", - "setting_id": "GFSA19_10", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_change_length": [ - "4" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_preheat_temperature_delta": [ - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle", - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Pure @BBL H2C", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_10", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2D 0.2 nozzle.json index d3b7f06b97..e30e6203b4 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2D 0.2 nozzle.json @@ -1,171 +1,70 @@ { - "type": "filament", - "name": "Bambu PLA Pure @BBL H2D 0.2 nozzle", - "inherits": "Bambu PLA Pure @base", - "from": "system", - "setting_id": "GFSA19_11", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_preheat_temperature_delta": [ - "10", - "10" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "0" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Pure @BBL H2D 0.2 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_11", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2D 0.6 nozzle.json new file mode 100644 index 0000000000..8126977f4b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2D 0.6 nozzle.json @@ -0,0 +1,107 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL H2D 0.6 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_44", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2D 0.8 nozzle.json index a26b9ba6b3..aa981c5177 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2D 0.8 nozzle.json @@ -1,169 +1,79 @@ { - "type": "filament", - "name": "Bambu PLA Pure @BBL H2D 0.8 nozzle", - "inherits": "Bambu PLA Pure @base", - "from": "system", - "setting_id": "GFSA19_12", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_preheat_temperature_delta": [ - "10", - "10" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Pure @BBL H2D 0.8 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_12", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2D.json index 0d9e3429b2..002589887f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2D.json @@ -1,168 +1,90 @@ { - "type": "filament", - "name": "Bambu PLA Pure @BBL H2D", - "inherits": "Bambu PLA Pure @base", - "from": "system", - "setting_id": "GFSA19_13", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_preheat_temperature_delta": [ - "10", - "10" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Pure @BBL H2D", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_13", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2DP 0.2 nozzle.json index 1b87e764ab..27c1be9d5f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2DP 0.2 nozzle.json @@ -1,171 +1,66 @@ { - "type": "filament", - "name": "Bambu PLA Pure @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PLA Pure @base", - "from": "system", - "setting_id": "GFSA19_14", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_cooling_before_tower": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_preheat_temperature_delta": [ - "10", - "10" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "0" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Pure @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_14", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2DP 0.6 nozzle.json new file mode 100644 index 0000000000..66a86f93ae --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2DP 0.6 nozzle.json @@ -0,0 +1,91 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_45", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2DP 0.8 nozzle.json index d4148f9f02..dc62f9cecc 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2DP 0.8 nozzle.json @@ -1,169 +1,75 @@ { - "type": "filament", - "name": "Bambu PLA Pure @BBL H2DP 0.8 nozzle", - "inherits": "Bambu PLA Pure @base", - "from": "system", - "setting_id": "GFSA19_15", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_cooling_before_tower": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_preheat_temperature_delta": [ - "10", - "10" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Pure @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_15", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2DP.json index f9ecfa7a20..516cb30a90 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2DP.json @@ -1,168 +1,75 @@ { - "type": "filament", - "name": "Bambu PLA Pure @BBL H2DP", - "inherits": "Bambu PLA Pure @base", - "from": "system", - "setting_id": "GFSA19_16", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_cooling_before_tower": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_preheat_temperature_delta": [ - "10", - "10" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Pure @BBL H2DP", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_16", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2S 0.2 nozzle.json index ad2e498940..1206f03c01 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2S 0.2 nozzle.json @@ -1,171 +1,78 @@ { - "type": "filament", - "name": "Bambu PLA Pure @BBL H2S 0.2 nozzle", - "inherits": "Bambu PLA Pure @base", - "from": "system", - "setting_id": "GFSA19_17", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_preheat_temperature_delta": [ - "10", - "10" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Pure @BBL H2S 0.2 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_17", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2S 0.6 nozzle.json new file mode 100644 index 0000000000..9a14fb210c --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2S 0.6 nozzle.json @@ -0,0 +1,113 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL H2S 0.6 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_46", + "instantiation": "true", + "description": "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.", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2S 0.8 nozzle.json new file mode 100644 index 0000000000..a780734dc8 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2S 0.8 nozzle.json @@ -0,0 +1,100 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL H2S 0.8 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_47", + "instantiation": "true", + "description": "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.", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2S.json index dccdd17135..a3ce5df6ea 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL H2S.json @@ -1,171 +1,101 @@ { - "type": "filament", - "name": "Bambu PLA Pure @BBL H2S", - "inherits": "Bambu PLA Pure @base", - "from": "system", - "setting_id": "GFSA19_18", - "instantiation": "true", - "description": "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.", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_preheat_temperature_delta": [ - "10", - "10" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Pure @BBL H2S", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_18", + "instantiation": "true", + "description": "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.", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P1P 0.2 nozzle.json new file mode 100644 index 0000000000..9c77055180 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P1P 0.2 nozzle.json @@ -0,0 +1,74 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL P1P 0.2 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_23", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P1P 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P1P 0.8 nozzle.json new file mode 100644 index 0000000000..18d8fd4a8a --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P1P 0.8 nozzle.json @@ -0,0 +1,88 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL P1P 0.8 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_24", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P1P.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P1P.json new file mode 100644 index 0000000000..ff2ff52185 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P1P.json @@ -0,0 +1,87 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL P1P", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_25", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P2S 0.2 nozzle.json new file mode 100644 index 0000000000..053c0cc82a --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P2S 0.2 nozzle.json @@ -0,0 +1,82 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL P2S 0.2 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_26", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P2S 0.4 nozzle.json new file mode 100644 index 0000000000..cf2c8c5584 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P2S 0.4 nozzle.json @@ -0,0 +1,106 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL P2S 0.4 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_27", + "instantiation": "true", + "description": "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.", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P2S 0.6 nozzle.json new file mode 100644 index 0000000000..081ae17a81 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P2S 0.6 nozzle.json @@ -0,0 +1,105 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL P2S 0.6 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_28", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P2S 0.8 nozzle.json new file mode 100644 index 0000000000..51b2957e47 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL P2S 0.8 nozzle.json @@ -0,0 +1,91 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL P2S 0.8 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_29", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X1C 0.2 nozzle.json new file mode 100644 index 0000000000..c86ce1f957 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X1C 0.2 nozzle.json @@ -0,0 +1,56 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL X1C 0.2 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_30", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X1C 0.8 nozzle.json new file mode 100644 index 0000000000..8598235140 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X1C 0.8 nozzle.json @@ -0,0 +1,73 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL X1C 0.8 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_31", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X1C.json new file mode 100644 index 0000000000..95fec82c2f --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X1C.json @@ -0,0 +1,70 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL X1C", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_32", + "instantiation": "true", + "description": "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.", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X2D 0.2 nozzle.json new file mode 100644 index 0000000000..32120fd0c8 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X2D 0.2 nozzle.json @@ -0,0 +1,101 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_33", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X2D 0.4 nozzle.json new file mode 100644 index 0000000000..b6079ea5d2 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X2D 0.4 nozzle.json @@ -0,0 +1,143 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_34", + "instantiation": "true", + "description": "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.", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "3", + "3", + "3" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X2D 0.6 nozzle.json new file mode 100644 index 0000000000..358b0ff624 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X2D 0.6 nozzle.json @@ -0,0 +1,142 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL X2D 0.6 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_35", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "3", + "3", + "3" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..73a363cfab --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @BBL X2D 0.8 nozzle.json @@ -0,0 +1,116 @@ +{ + "type": "filament", + "name": "Bambu PLA Pure @BBL X2D 0.8 nozzle", + "inherits": "Bambu PLA Pure @base", + "from": "system", + "setting_id": "GFSA19_36", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "3", + "3" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Pure @base.json b/resources/profiles/BBL/filament/Bambu PLA Pure @base.json index f947b2efaa..78d099c98b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Pure @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA Pure @base.json @@ -1,29 +1,29 @@ { - "type": "filament", - "name": "Bambu PLA Pure @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFTHDCqA", - "instantiation": "false", - "filament_cost": [ - "21.99" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "nozzle_temperature_range_high": [ - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PLA Pure @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFTHDCqA", + "instantiation": "false", + "filament_cost": [ + "16.99" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "nozzle_temperature_range_high": [ + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A1 0.2 nozzle.json index 0e8d593d3c..5072942f14 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A1 0.2 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL A1 0.2 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_06", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL A1 0.2 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A1.json index 4e05663ee9..bfb8d47b04 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A1.json @@ -1,40 +1,40 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL A1", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL A1", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A1M 0.2 nozzle.json index 5b68a42896..e70a76f872 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A1M 0.2 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL A1M 0.2 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL A1M 0.2 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A1M.json index 3fffe5cdd4..06f8c99d79 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A1M.json @@ -1,40 +1,40 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL A1M", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_03", - "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" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL A1M", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_03", + "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" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A2L 0.2 nozzle.json index 3f6fb8e7b7..7fe2facbff 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A2L 0.2 nozzle.json @@ -1,62 +1,62 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL A2L 0.2 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_24", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "230" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_retraction_length": [ - "1.2" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "25" - ], - "slow_down_min_speed": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL A2L 0.2 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_24", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "230" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_retraction_length": [ + "1.2" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "25" + ], + "slow_down_min_speed": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A2L 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A2L 0.4 nozzle.json index d2dec88c9f..0860d194dc 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A2L 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A2L 0.4 nozzle.json @@ -1,56 +1,56 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL A2L 0.4 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_25", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "230" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL A2L 0.4 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_25", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "230" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A2L 0.6 nozzle.json index 6124848c0f..d082cd0f9e 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A2L 0.6 nozzle.json @@ -1,53 +1,53 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL A2L 0.6 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_33", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "230" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL A2L 0.6 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_33", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "230" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A2L 0.8 nozzle.json index ee0d0c82cf..fa256f250f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL A2L 0.8 nozzle.json @@ -1,56 +1,56 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL A2L 0.8 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_34", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "230" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL A2L 0.8 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_34", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "230" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2C 0.2 nozzle.json index 3257a921d8..5f6ac11da9 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2C 0.2 nozzle.json @@ -1,207 +1,118 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL H2C 0.2 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_21", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.0036" - ], - "counter_coef_3": [ - "-0.0218" - ], - "counter_limit_max": [ - "0.0682" - ], - "counter_limit_min": [ - "-0.0218" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_pre_cooling_temperature_nc": [ - "200", - "200" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0037" - ], - "hole_coef_3": [ - "0.1261" - ], - "hole_limit_max": [ - "0.1261" - ], - "hole_limit_min": [ - "0.0336" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL H2C 0.2 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_21", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.0036" + ], + "counter_coef_3": [ + "-0.0218" + ], + "counter_limit_max": [ + "0.0682" + ], + "counter_limit_min": [ + "-0.0218" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_pre_cooling_temperature_nc": [ + "200", + "200" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "hole_coef_2": [ + "-0.0037" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1261" + ], + "hole_limit_min": [ + "0.0336" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2C 0.4 nozzle.json index f5903cea1f..d738fa5afd 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2C 0.4 nozzle.json @@ -1,207 +1,149 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL H2C 0.4 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_22", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.0036" - ], - "counter_coef_3": [ - "-0.0218" - ], - "counter_limit_max": [ - "0.0682" - ], - "counter_limit_min": [ - "-0.0218" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0037" - ], - "hole_coef_3": [ - "0.1261" - ], - "hole_limit_max": [ - "0.1261" - ], - "hole_limit_min": [ - "0.0336" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL H2C 0.4 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_22", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.0036" + ], + "counter_coef_3": [ + "-0.0218" + ], + "counter_limit_max": [ + "0.0682" + ], + "counter_limit_min": [ + "-0.0218" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190", + "190" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "hole_coef_2": [ + "-0.0037" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1261" + ], + "hole_limit_min": [ + "0.0336" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2C.json index e46f139763..e690d6b168 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2C.json @@ -1,208 +1,150 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL H2C", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_23", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.0036" - ], - "counter_coef_3": [ - "-0.0218" - ], - "counter_limit_max": [ - "0.0682" - ], - "counter_limit_min": [ - "-0.0218" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0037" - ], - "hole_coef_3": [ - "0.1261" - ], - "hole_limit_max": [ - "0.1261" - ], - "hole_limit_min": [ - "0.0336" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL H2C", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_23", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.0036" + ], + "counter_coef_3": [ + "-0.0218" + ], + "counter_limit_max": [ + "0.0682" + ], + "counter_limit_min": [ + "-0.0218" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190", + "190" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "hole_coef_2": [ + "-0.0037" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1261" + ], + "hole_limit_min": [ + "0.0336" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2D 0.2 nozzle.json index 545ea517eb..c14f4c2f2b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2D 0.2 nozzle.json @@ -1,140 +1,87 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL H2D 0.2 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_07", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL H2D 0.2 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_07", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.0036" + ], + "counter_coef_3": [ + "-0.0218" + ], + "counter_limit_max": [ + "0.0682" + ], + "counter_limit_min": [ + "-0.0218" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hole_coef_2": [ + "-0.0037" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1261" + ], + "hole_limit_min": [ + "0.0336" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2D.json index 2d1698855d..991a51de13 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2D.json @@ -1,160 +1,116 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL H2D", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_16", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.02" - ], - "counter_coef_3": [ - "-0.01" - ], - "counter_limit_min": [ - "-0.05" - ], - "counter_limit_max": [ - "0.05" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_2": [ - "-0.0081" - ], - "hole_coef_3": [ - "0.2" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL H2D", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_16", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.0036" + ], + "counter_coef_3": [ + "-0.0218" + ], + "counter_limit_min": [ + "-0.0218" + ], + "counter_limit_max": [ + "0.0682" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0037" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1261" + ], + "hole_limit_min": [ + "0.0336" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2DP 0.2 nozzle.json index 609e1f2707..7a619beb01 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2DP 0.2 nozzle.json @@ -1,140 +1,63 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_18", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_18", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2DP.json index f161206d68..3a26b9d69e 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2DP.json @@ -1,160 +1,99 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL H2DP", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_19", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.02" - ], - "counter_coef_3": [ - "-0.01" - ], - "counter_limit_min": [ - "-0.05" - ], - "counter_limit_max": [ - "0.05" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_2": [ - "-0.0081" - ], - "hole_coef_3": [ - "0.2" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL H2DP", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_19", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.02" + ], + "counter_coef_3": [ + "-0.01" + ], + "counter_limit_max": [ + "0.05" + ], + "counter_limit_min": [ + "-0.05" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0081" + ], + "hole_coef_3": [ + "0.2" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2S 0.2 nozzle.json index 055130de7d..ad5e9778c7 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2S 0.2 nozzle.json @@ -1,140 +1,99 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL H2S 0.2 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_09", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL H2S 0.2 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "counter_coef_2": [ + "0.0036" + ], + "counter_coef_3": [ + "-0.0218" + ], + "counter_limit_min": [ + "-0.0218" + ], + "counter_limit_max": [ + "0.0682" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hole_coef_2": [ + "-0.0037" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_min": [ + "0.0336" + ], + "hole_limit_max": [ + "0.1261" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2S.json index 5b678d971f..6221528724 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL H2S.json @@ -1,142 +1,131 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL H2S", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_08", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "200", - "200" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL H2S", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_08", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "counter_coef_2": [ + "0.0036" + ], + "counter_coef_3": [ + "-0.0218" + ], + "counter_limit_min": [ + "-0.0218" + ], + "counter_limit_max": [ + "0.0682" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "200", + "200", + "200" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0037" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_min": [ + "0.0336" + ], + "hole_limit_max": [ + "0.1261" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL P2S 0.2 nozzle.json index c6450cc408..3600a41bbb 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL P2S 0.2 nozzle.json @@ -1,177 +1,96 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL P2S 0.2 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_15", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "12" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL P2S 0.2 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_15", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "counter_coef_2": [ + "0.0036" + ], + "counter_coef_3": [ + "-0.0218" + ], + "counter_limit_max": [ + "0.0682" + ], + "counter_limit_min": [ + "-0.0218" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0037" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1261" + ], + "hole_limit_min": [ + "0.0336" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL P2S 0.6 nozzle.json index 061877363a..71b9f5522b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL P2S 0.6 nozzle.json @@ -1,177 +1,126 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL P2S 0.6 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_26", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "200", - "200" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL P2S 0.6 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_26", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "counter_coef_2": [ + "0.0036" + ], + "counter_coef_3": [ + "-0.0218" + ], + "counter_limit_max": [ + "0.0682" + ], + "counter_limit_min": [ + "-0.0218" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "200", + "200", + "200" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4" + ], + "filament_wipe": [ + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0037" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1261" + ], + "hole_limit_min": [ + "0.0336" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL P2S 0.8 nozzle.json index 3584dbf145..95374a8d59 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL P2S 0.8 nozzle.json @@ -1,177 +1,112 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL P2S 0.8 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_27", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "200", - "200" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL P2S 0.8 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_27", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "counter_coef_2": [ + "0.0036" + ], + "counter_coef_3": [ + "-0.0218" + ], + "counter_limit_max": [ + "0.0682" + ], + "counter_limit_min": [ + "-0.0218" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "200", + "200" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "nil" + ], + "filament_wipe": [ + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0037" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1261" + ], + "hole_limit_min": [ + "0.0336" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL P2S.json index 0ad5711704..a650da3329 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL P2S.json @@ -1,177 +1,126 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL P2S", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_17", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "80" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "200", - "200" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL P2S", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_17", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "80" + ], + "counter_coef_2": [ + "0.0036" + ], + "counter_coef_3": [ + "-0.0218" + ], + "counter_limit_max": [ + "0.0682" + ], + "counter_limit_min": [ + "-0.0218" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "200", + "200", + "200" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4" + ], + "filament_wipe": [ + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0037" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1261" + ], + "hole_limit_min": [ + "0.0336" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X1.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X1.json index ac5ed481f2..2f8703e79d 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X1.json @@ -1,124 +1,51 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL X1", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_02", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL X1", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_02", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X1C 0.2 nozzle.json index 4263063102..1c1a4ea93f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X1C 0.2 nozzle.json @@ -1,125 +1,52 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL X1C 0.2 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL X1C 0.2 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X1C.json index f0440d3ece..1d409b3705 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X1C.json @@ -1,130 +1,57 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL X1C", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_01", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL X1C", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D 0.2 nozzle.json index 280a747d47..25cef68be3 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D 0.2 nozzle.json @@ -1,302 +1,149 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL X2D 0.2 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_13", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "5", - "5" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "counter_coef_2": [ - "0.0036" - ], - "counter_coef_3": [ - "-0.0218" - ], - "counter_limit_max": [ - "0.0682" - ], - "counter_limit_min": [ - "-0.0218" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_extruder_compatibility": [ - "16" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2", - "0.5", - "0.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "230" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "hole_coef_2": [ - "-0.0037" - ], - "hole_coef_3": [ - "0.1261" - ], - "hole_limit_max": [ - "0.1261" - ], - "hole_limit_min": [ - "0.0336" - ], - "nozzle_temperature": [ - "230", - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_13", + "instantiation": "true", + "counter_coef_2": [ + "0.0036" + ], + "counter_coef_3": [ + "-0.0218" + ], + "counter_limit_max": [ + "0.0682" + ], + "counter_limit_min": [ + "-0.0218" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0037" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1261" + ], + "hole_limit_min": [ + "0.0336" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D 0.4 nozzle.json index 2cc9b50bb7..2ff4aa3612 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D 0.4 nozzle.json @@ -1,302 +1,163 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL X2D 0.4 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_14", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "200", - "200", - "200", - "200" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "3", - "3" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1", - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1", - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "counter_coef_2": [ - "0.0036" - ], - "counter_coef_3": [ - "-0.0218" - ], - "counter_limit_max": [ - "0.0682" - ], - "counter_limit_min": [ - "-0.0218" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_extruder_compatibility": [ - "16" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "230" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "hole_coef_2": [ - "-0.0037" - ], - "hole_coef_3": [ - "0.1261" - ], - "hole_limit_max": [ - "0.1261" - ], - "hole_limit_min": [ - "0.0336" - ], - "nozzle_temperature": [ - "230", - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_14", + "instantiation": "true", + "counter_coef_2": [ + "0.0036" + ], + "counter_coef_3": [ + "-0.0218" + ], + "counter_limit_max": [ + "0.0682" + ], + "counter_limit_min": [ + "-0.0218" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "200", + "200", + "200", + "200", + "200", + "200" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "3", + "3", + "3" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0037" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1261" + ], + "hole_limit_min": [ + "0.0336" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D.json index 0d10764e68..909d2120be 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @BBL X2D.json @@ -1,303 +1,164 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL X2D", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_20", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "200", - "200", - "200", - "200" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "counter_coef_2": [ - "0.0036" - ], - "counter_coef_3": [ - "-0.0218" - ], - "counter_limit_max": [ - "0.0682" - ], - "counter_limit_min": [ - "-0.0218" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_extruder_compatibility": [ - "16" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "230" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "hole_coef_2": [ - "-0.0037" - ], - "hole_coef_3": [ - "0.1261" - ], - "hole_limit_max": [ - "0.1261" - ], - "hole_limit_min": [ - "0.0336" - ], - "nozzle_temperature": [ - "230", - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL X2D", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_20", + "instantiation": "true", + "counter_coef_2": [ + "0.0036" + ], + "counter_coef_3": [ + "-0.0218" + ], + "counter_limit_max": [ + "0.0682" + ], + "counter_limit_min": [ + "-0.0218" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "200", + "200", + "200", + "200", + "200", + "200" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0037" + ], + "hole_coef_3": [ + "0.1261" + ], + "hole_limit_max": [ + "0.1261" + ], + "hole_limit_min": [ + "0.0336" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk @base.json b/resources/profiles/BBL/filament/Bambu PLA Silk @base.json index da20a689ee..8c5b125548 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk @base.json @@ -1,45 +1,45 @@ { - "type": "filament", - "name": "Bambu PLA Silk @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFEGNJD4", - "instantiation": "false", - "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.", - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.32" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "filament_scarf_height": [ - "5%" - ], - "filament_scarf_gap": [ - "0%" - ], - "impact_strength_z": [ - "4.6" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "supertack_plate_temp": [ - "0" - ], - "supertack_plate_temp_initial_layer": [ - "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}" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFEGNJD4", + "instantiation": "false", + "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.", + "filament_cost": [ + "21.99" + ], + "filament_density": [ + "1.32" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "5%" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "4.6" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A1 0.2 nozzle.json index c7780b06d6..d8b23125e6 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A1 0.2 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL A1 0.2 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_06", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL A1 0.2 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A1.json index ad3d18d919..568c97495e 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A1.json @@ -1,43 +1,43 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL A1", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL A1", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A1M 0.2 nozzle.json index 25a61e7b69..3255f3d44d 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A1M 0.2 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL A1M 0.2 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_08", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "slow_down_layer_time": [ - "8" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL A1M 0.2 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_08", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A1M.json index 2317485b5c..5fa8cf6301 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A1M.json @@ -1,43 +1,43 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL A1M", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_07", - "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" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL A1M", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_07", + "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" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A2L 0.2 nozzle.json index 92f6c76bc0..9cc7845814 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A2L 0.2 nozzle.json @@ -1,71 +1,71 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL A2L 0.2 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_23", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "230" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_overhang_4_4_speed": [ - "35" - ], - "filament_overhang_totally_speed": [ - "25" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "25" - ], - "slow_down_min_speed": [ - "40" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL A2L 0.2 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_23", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "230" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_overhang_4_4_speed": [ + "35" + ], + "filament_overhang_totally_speed": [ + "25" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "25" + ], + "slow_down_min_speed": [ + "40" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A2L 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A2L 0.4 nozzle.json index 30f3feec05..0347bce2ac 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A2L 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A2L 0.4 nozzle.json @@ -1,62 +1,62 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL A2L 0.4 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_24", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "230" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL A2L 0.4 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_24", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "230" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A2L 0.6 nozzle.json index 4f9eeba4ba..b04c94cbab 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A2L 0.6 nozzle.json @@ -1,62 +1,62 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL A2L 0.6 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_35", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "230" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL A2L 0.6 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_35", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "230" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A2L 0.8 nozzle.json index 2b09d71fe9..d25680f000 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL A2L 0.8 nozzle.json @@ -1,62 +1,62 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL A2L 0.8 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_36", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "230" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL A2L 0.8 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_36", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "230" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2C 0.2 nozzle.json index 558486b5d4..6d0f939e60 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2C 0.2 nozzle.json @@ -1,189 +1,100 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL H2C 0.2 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_20", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "200", - "200" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "slow_down_layer_time": [ - "6" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL H2C 0.2 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_20", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "200", + "200" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2C 0.4 nozzle.json index 3773cbe45d..40b37f32b9 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2C 0.4 nozzle.json @@ -1,189 +1,126 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL H2C 0.4 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_18", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_ramming_travel_time": [ - "2", - "2" - ], - "filament_ramming_travel_time_nc": [ - "2", - "2" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Silk+ @BBL H2C 0.4 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_18", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190", + "190" + ], + "filament_ramming_travel_time": [ + "2", + "2", + "2" + ], + "filament_ramming_travel_time_nc": [ + "2", + "2", + "2" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..4d460cde49 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2C 0.8 nozzle.json @@ -0,0 +1,124 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk+ @BBL H2C 0.8 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_40", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "2", + "2" + ], + "filament_ramming_travel_time_nc": [ + "2", + "2" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2C.json index d2f8d19124..e3a787b51c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2C.json @@ -1,190 +1,126 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL H2C", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_19", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_ramming_travel_time": [ - "2", - "2" - ], - "filament_ramming_travel_time_nc": [ - "2", - "2" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Silk+ @BBL H2C", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_19", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190", + "190" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "2", + "2", + "2" + ], + "filament_ramming_travel_time_nc": [ + "2", + "2", + "2" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2D 0.2 nozzle.json index 65770e0167..80791f03c7 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2D 0.2 nozzle.json @@ -1,146 +1,69 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL H2D 0.2 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_10", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL H2D 0.2 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_10", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2D 0.6 nozzle.json new file mode 100644 index 0000000000..8c97969bf2 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2D 0.6 nozzle.json @@ -0,0 +1,124 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk+ @BBL H2D 0.6 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_41", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2D 0.8 nozzle.json new file mode 100644 index 0000000000..f8508cd0f9 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2D 0.8 nozzle.json @@ -0,0 +1,111 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk+ @BBL H2D 0.8 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_42", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_preheat_temperature_delta": [ + "10", + "10" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2D.json index 9ec6409c7e..a1e9d5a6a9 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2D.json @@ -1,148 +1,96 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL H2D", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_09", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL H2D", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "1" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2DP 0.2 nozzle.json index ae9a3c0354..6ef42bcf5f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2DP 0.2 nozzle.json @@ -1,146 +1,69 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_14", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_14", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2DP 0.6 nozzle.json new file mode 100644 index 0000000000..acb22ba23a --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2DP 0.6 nozzle.json @@ -0,0 +1,107 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk+ @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_43", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2DP 0.8 nozzle.json new file mode 100644 index 0000000000..a4b9e799a4 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2DP 0.8 nozzle.json @@ -0,0 +1,107 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk+ @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_44", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2DP.json index cc048f4ec3..cba3b52ae0 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2DP.json @@ -1,148 +1,85 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL H2DP", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_13", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Silk+ @BBL H2DP", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_13", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2S 0.2 nozzle.json index 1353b51526..b1bf42971c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2S 0.2 nozzle.json @@ -1,146 +1,81 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL H2S 0.2 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_22", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL H2S 0.2 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_22", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2S 0.6 nozzle.json new file mode 100644 index 0000000000..8868530a19 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2S 0.6 nozzle.json @@ -0,0 +1,123 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk+ @BBL H2S 0.6 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_45", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "200", + "200", + "200" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2S 0.8 nozzle.json new file mode 100644 index 0000000000..7e3270c32a --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2S 0.8 nozzle.json @@ -0,0 +1,109 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk+ @BBL H2S 0.8 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_46", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "200", + "200" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2S.json index 7e46d5ca0f..7d143d2360 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL H2S.json @@ -1,148 +1,111 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL H2S", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_21", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "200", - "200" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Silk+ @BBL H2S", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_21", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "200", + "200", + "200" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1P 0.2 nozzle.json index 8ae8d24e3c..81c2083b09 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1P 0.2 nozzle.json @@ -1,137 +1,64 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL P1P 0.2 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_04", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL P1P 0.2 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_04", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1P 0.6 nozzle.json new file mode 100644 index 0000000000..ede41b7ea6 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1P 0.6 nozzle.json @@ -0,0 +1,67 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk+ @BBL P1P 0.6 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_30", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1P.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1P.json index 89c2d0177e..19a3e6a26a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1P.json @@ -1,142 +1,68 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL P1P", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_03", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL P1P", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_03", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1S 0.4 nozzle.json new file mode 100644 index 0000000000..624d96182b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1S 0.4 nozzle.json @@ -0,0 +1,71 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk+ @BBL P1S 0.4 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_29", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "30" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "30" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.4 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1S 0.6 nozzle.json new file mode 100644 index 0000000000..da488c277e --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P1S 0.6 nozzle.json @@ -0,0 +1,71 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk+ @BBL P1S 0.6 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_28", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "30" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "30" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P2S 0.2 nozzle.json index 64451175bd..05f3286f11 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P2S 0.2 nozzle.json @@ -1,183 +1,78 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL P2S 0.2 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_12", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "slow_down_layer_time": [ - "12" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL P2S 0.2 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_12", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P2S 0.6 nozzle.json index eab7affb62..c5a9dd880a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P2S 0.6 nozzle.json @@ -1,180 +1,105 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL P2S 0.6 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_25", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "200", - "200" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "0.4", - "0.4" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Silk+ @BBL P2S 0.6 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_25", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "200", + "200", + "200" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_retraction_speed": [ + "10", + "10", + "10" + ], + "filament_z_hop": [ + "0.4", + "0.4", + "0.4" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P2S 0.8 nozzle.json index b891ac0051..1285d9a709 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P2S 0.8 nozzle.json @@ -1,180 +1,83 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL P2S 0.8 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_26", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "200", - "200" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL P2S 0.8 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_26", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "200", + "200" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P2S.json index 964f180227..027b694a64 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL P2S.json @@ -1,183 +1,88 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL P2S", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_11", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "80" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "200", - "200" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Silk+ @BBL P2S", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_11", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "80" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "200", + "200", + "200" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X1.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X1.json index ccdcc80dcb..db84ef6e8f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X1.json @@ -1,130 +1,57 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL X1", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_02", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL X1", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_02", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X1C 0.2 nozzle.json index 8b8a12d926..223de5df5f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X1C 0.2 nozzle.json @@ -1,131 +1,58 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL X1C 0.2 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL X1C 0.2 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..99696df05a --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X1C 0.6 nozzle.json @@ -0,0 +1,71 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk+ @BBL X1C 0.6 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_27", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "30" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_retraction_length": [ + "nil", + "0.6" + ], + "filament_retraction_speed": [ + "nil", + "30" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X1C.json index 313a55cdce..2a800db9e1 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X1C.json @@ -1,136 +1,60 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL X1C", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL X1C", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.2 nozzle.json index df46de0024..cab7d6cad2 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.2 nozzle.json @@ -1,284 +1,131 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL X2D 0.2 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_17", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "5", - "5" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2", - "0.5", - "0.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "230" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "230", - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "slow_down_layer_time": [ - "6" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_17", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.4 nozzle.json index ffbd1f363e..a8bec02327 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.4 nozzle.json @@ -1,281 +1,142 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL X2D 0.4 nozzle", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_15", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "200", - "200", - "200", - "200" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "3", - "3" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1", - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1", - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "230" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "230", - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "slow_down_layer_time": [ - "6" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Silk+ @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_15", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "200", + "200", + "200", + "200", + "200", + "200" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "3", + "3", + "3" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..d9f3f30add --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D 0.8 nozzle.json @@ -0,0 +1,134 @@ +{ + "type": "filament", + "name": "Bambu PLA Silk+ @BBL X2D 0.8 nozzle", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_47", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "200", + "200", + "200", + "200" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D.json index 419eabdc03..b43c1d1844 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @BBL X2D.json @@ -1,282 +1,142 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @BBL X2D", - "inherits": "Bambu PLA Silk+ @base", - "from": "system", - "setting_id": "GFSA06_16", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "200", - "200", - "200", - "200" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "230" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "230", - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "slow_down_layer_time": [ - "6" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Silk+ @BBL X2D", + "inherits": "Bambu PLA Silk+ @base", + "from": "system", + "setting_id": "GFSA06_16", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_temp": [ + "200", + "200", + "200", + "200", + "200", + "200" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Silk+ @base.json b/resources/profiles/BBL/filament/Bambu PLA Silk+ @base.json index 17a7e21b79..6714b35375 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Silk+ @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA Silk+ @base.json @@ -1,39 +1,36 @@ { - "type": "filament", - "name": "Bambu PLA Silk+ @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFUanySo", - "instantiation": "false", - "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.", - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.27" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_scarf_height": [ - "5%" - ], - "filament_scarf_seam_type": [ - "none" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "8.5" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PLA Silk+ @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFUanySo", + "instantiation": "false", + "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.", + "filament_cost": [ + "15.99" + ], + "filament_density": [ + "1.27" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_scarf_height": [ + "5%" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "8.5" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A1.json index 79e55a3169..04ac842952 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A1.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL A1", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL A1", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A1M.json index 2fa3ae04de..e961b1fcd6 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A1M.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL A1M", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_02", - "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": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL A1M", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_02", + "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": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A2L 0.6 nozzle.json index 8e133e78f2..2f0acae25a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A2L 0.6 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL A2L 0.6 nozzle", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_24", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL A2L 0.6 nozzle", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_24", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A2L 0.8 nozzle.json index 4b7c37e987..a9e854d9b6 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A2L 0.8 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL A2L 0.8 nozzle", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_25", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL A2L 0.8 nozzle", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_25", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A2L.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A2L.json index e3d2d6b7a1..33ace09427 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL A2L.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL A2L", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_13", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL A2L", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_13", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2C 0.4 nozzle.json index 7cdd1dd269..d635be71a7 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2C 0.4 nozzle.json @@ -1,186 +1,128 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL H2C 0.4 nozzle", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_11", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL H2C 0.4 nozzle", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_11", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2C.json index 8be484d1e4..59f9880889 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2C.json @@ -1,187 +1,129 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL H2C", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_12", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL H2C", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_12", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2D.json index daa0c39db1..452a69ed7d 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2D.json @@ -1,136 +1,98 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL H2D", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_04", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL H2D", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_04", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2DP.json index 1456f4353b..8339de1440 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2DP.json @@ -1,136 +1,81 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL H2DP", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_07", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL H2DP", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_07", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2S.json index 3f5a87a026..53ce3da06c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL H2S.json @@ -1,145 +1,117 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL H2S", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_06", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "80" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL H2S", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_06", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "80" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL P2S 0.6 nozzle.json index ce386a6a07..8368e4c558 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL P2S 0.6 nozzle.json @@ -1,177 +1,93 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL P2S 0.6 nozzle", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_14", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.6", - "0.6" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL P2S 0.6 nozzle", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_14", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.6", + "0.6", + "0.6" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL P2S 0.8 nozzle.json index 58eac67281..65cba64fe1 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL P2S 0.8 nozzle.json @@ -1,174 +1,75 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL P2S 0.8 nozzle", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_15", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "1", - "1" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL P2S 0.8 nozzle", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_15", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "1", + "1" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL P2S.json index 6edd2b7bbd..2aea67b9b3 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL P2S.json @@ -1,174 +1,80 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL P2S", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_05", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL P2S", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_05", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X1.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X1.json index e5c703ee07..b527db03e4 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X1.json @@ -1,124 +1,51 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL X1", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_01", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL X1", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..8edff08abf --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X1C 0.6 nozzle.json @@ -0,0 +1,66 @@ +{ + "type": "filament", + "name": "Bambu PLA Sparkle @BBL X1C 0.6 nozzle", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_16", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_max_volumetric_speed": [ + "12", + "25" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "50" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab P1S 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X1C.json index 320f07764c..b971229939 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X1C.json @@ -1,130 +1,71 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL X1C", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL X1C", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_00", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_max_volumetric_speed": [ + "12", + "25" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "50" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X2D 0.4 nozzle.json index 9f041ca69d..8899893ddb 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X2D 0.4 nozzle.json @@ -1,272 +1,131 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL X2D 0.4 nozzle", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_08", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1", - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1", - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_08", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X2D.json index 5bf2d292d6..d002d0e6ec 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @BBL X2D.json @@ -1,276 +1,135 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL X2D", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_09", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL X2D", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_09", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Sparkle @base.json b/resources/profiles/BBL/filament/Bambu PLA Sparkle @base.json index 6ecad9584e..d0a645f165 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Sparkle @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA Sparkle @base.json @@ -1,26 +1,26 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFDxfPgH", - "instantiation": "false", - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.26" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "10.3" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFDxfPgH", + "instantiation": "false", + "filament_cost": [ + "21.99" + ], + "filament_density": [ + "1.26" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "10.3" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A1 0.2 nozzle.json index 91c2a7951b..f18a4df2c8 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A1 0.2 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL A1 0.2 nozzle", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_07", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL A1 0.2 nozzle", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_07", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A1.json index 92cfd83431..f443261748 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A1.json @@ -1,43 +1,43 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL A1", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL A1", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A1M 0.2 nozzle.json index b3466ee3c9..fe8e01f774 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A1M 0.2 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL A1M 0.2 nozzle", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL A1M 0.2 nozzle", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A1M.json index a95888721c..35183f713b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A1M.json @@ -1,43 +1,43 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL A1M", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL A1M", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A2L 0.2 nozzle.json index 048ab331a3..420b7a91a9 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A2L 0.2 nozzle.json @@ -1,50 +1,50 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL A2L 0.2 nozzle", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_23", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "slow_down_min_speed": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL A2L 0.2 nozzle", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_23", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A2L.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A2L.json index c223f15301..cb25cff6ca 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL A2L.json @@ -1,49 +1,49 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL A2L", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_24", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL A2L", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_24", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2C 0.2 nozzle.json index bcb81af9f8..afc18f86e9 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2C 0.2 nozzle.json @@ -1,186 +1,97 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL H2C 0.2 nozzle", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_22", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL H2C 0.2 nozzle", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_22", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2C 0.4 nozzle.json index 2f63485604..395e917d6d 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2C 0.4 nozzle.json @@ -1,204 +1,146 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL H2C 0.4 nozzle", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_20", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.024" - ], - "counter_limit_max": [ - "0.1" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0081" - ], - "hole_coef_3": [ - "0.2041" - ], - "hole_limit_min": [ - "0.08" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL H2C 0.4 nozzle", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_20", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.024" + ], + "counter_limit_max": [ + "0.1" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "hole_coef_2": [ + "-0.0081" + ], + "hole_coef_3": [ + "0.2041" + ], + "hole_limit_min": [ + "0.08" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2C.json index 99a43532bd..687135999b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2C.json @@ -1,205 +1,147 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL H2C", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_21", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.024" - ], - "counter_limit_max": [ - "0.1" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0081" - ], - "hole_coef_3": [ - "0.2041" - ], - "hole_limit_min": [ - "0.08" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL H2C", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_21", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.024" + ], + "counter_limit_max": [ + "0.1" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "hole_coef_2": [ + "-0.0081" + ], + "hole_coef_3": [ + "0.2041" + ], + "hole_limit_min": [ + "0.08" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2D 0.2 nozzle.json index 4b45f4fe05..2f2c0fac71 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2D 0.2 nozzle.json @@ -1,134 +1,69 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL H2D 0.2 nozzle", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_08", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL H2D 0.2 nozzle", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_08", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2D.json index c5770de509..e7a65b1697 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2D.json @@ -1,154 +1,116 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL H2D", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_06", - "instantiation": "true", - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.024" - ], - "counter_limit_max": [ - "0.1" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_2": [ - "-0.0081" - ], - "hole_coef_3": [ - "0.2041" - ], - "hole_limit_min": [ - "0.08" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL H2D", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_06", + "instantiation": "true", + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.024" + ], + "counter_limit_max": [ + "0.1" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0081" + ], + "hole_coef_3": [ + "0.2041" + ], + "hole_limit_min": [ + "0.08" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2DP 0.2 nozzle.json index f6bd13e744..18b446e8db 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2DP 0.2 nozzle.json @@ -1,134 +1,63 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_16", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_16", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2DP.json index a0e115bff0..3b89d63f14 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2DP.json @@ -1,154 +1,99 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL H2DP", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_15", - "instantiation": "true", - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.024" - ], - "counter_limit_max": [ - "0.1" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_2": [ - "-0.0081" - ], - "hole_coef_3": [ - "0.2041" - ], - "hole_limit_min": [ - "0.08" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL H2DP", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_15", + "instantiation": "true", + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.024" + ], + "counter_limit_max": [ + "0.1" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0081" + ], + "hole_coef_3": [ + "0.2041" + ], + "hole_limit_min": [ + "0.08" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2S 0.2 nozzle.json index c5b677c0f2..935d868854 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2S 0.2 nozzle.json @@ -1,140 +1,87 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL H2S 0.2 nozzle", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_12", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "80" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL H2S 0.2 nozzle", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_12", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "80" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2S.json index de820209ad..0f202955c9 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL H2S.json @@ -1,142 +1,114 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL H2S", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_09", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "80" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL H2S", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "80" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL P2S 0.2 nozzle.json index 4360b92608..6f9359930c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL P2S 0.2 nozzle.json @@ -1,171 +1,72 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL P2S 0.2 nozzle", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_14", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL P2S 0.2 nozzle", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_14", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL P2S.json index a719c24f79..026e245fe7 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL P2S.json @@ -1,173 +1,79 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL P2S", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_13", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL P2S", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_13", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1.json index 44a3a8ccd3..1b357860f3 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1.json @@ -1,124 +1,51 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL X1", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL X1", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1C 0.2 nozzle.json index 4fc157f4a2..c7afdd6a60 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1C 0.2 nozzle.json @@ -1,125 +1,52 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL X1C 0.2 nozzle", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL X1C 0.2 nozzle", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1C.json index 5d2d8d305a..f250ad8e99 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1C.json @@ -1,131 +1,58 @@ { - "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", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "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", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D 0.2 nozzle.json index e47ebf91a4..783771d07e 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D 0.2 nozzle.json @@ -1,275 +1,92 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL X2D 0.2 nozzle", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_19", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2", - "2", - "2" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_19", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D 0.4 nozzle.json index fb61fc0555..6f3492d94c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D 0.4 nozzle.json @@ -1,272 +1,99 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL X2D 0.4 nozzle", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_17", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21", - "21", - "21" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_17", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D.json index d6a6c3e64a..712763b1b7 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X2D.json @@ -1,273 +1,132 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL X2D", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_18", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21", - "21", - "21" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL X2D", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_18", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @base.json b/resources/profiles/BBL/filament/Bambu PLA Tough @base.json index 09b71a842d..ef45e53c17 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @base.json @@ -1,29 +1,29 @@ { - "type": "filament", - "name": "Bambu PLA Tough @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFaQMgRH", - "instantiation": "false", - "filament_cost": [ - "28.99" - ], - "filament_density": [ - "1.26" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "filament_scarf_seam_type": [ - "none" - ], - "impact_strength_z": [ - "12.3" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFaQMgRH", + "instantiation": "false", + "filament_cost": [ + "28.99" + ], + "filament_density": [ + "1.26" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "filament_scarf_seam_type": [ + "none" + ], + "impact_strength_z": [ + "12.3" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A1 0.2 nozzle.json index e9f3e10be7..e99518ff40 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A1 0.2 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL A1 0.2 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_00", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "70" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "90" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "pre_start_fan_time": [ - "2" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL A1 0.2 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_00", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "70" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "90" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A1.json index 226e372557..c87e1b3c59 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A1.json @@ -1,46 +1,46 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL A1", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_01", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "70" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "90" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "pre_start_fan_time": [ - "2" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL A1", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_01", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "70" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "90" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A1M 0.2 nozzle.json index 1cf0b12abf..2b8ab78db2 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A1M 0.2 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL A1M 0.2 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_02", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "70" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "90" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "pre_start_fan_time": [ - "2" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL A1M 0.2 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_02", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "70" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "90" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A1M.json index 7367eb1c3c..9a61607c47 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A1M.json @@ -1,46 +1,46 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL A1M", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_03", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "70" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "90" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "pre_start_fan_time": [ - "2" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL A1M", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_03", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "70" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "90" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A2L 0.2 nozzle.json index 1de9892a2a..3d95f85ff1 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A2L 0.2 nozzle.json @@ -1,71 +1,71 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL A2L 0.2 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_19", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "70" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "90" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "245" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "filament_overhang_4_4_speed": [ - "35" - ], - "filament_overhang_totally_speed": [ - "25" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "25" - ], - "slow_down_min_speed": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL A2L 0.2 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_19", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "70" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "90" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "245" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "filament_overhang_4_4_speed": [ + "35" + ], + "filament_overhang_totally_speed": [ + "25" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "25" + ], + "slow_down_min_speed": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A2L 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A2L 0.4 nozzle.json index 31c694aeb9..3163c3c906 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A2L 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A2L 0.4 nozzle.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL A2L 0.4 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_20", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "70" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "90" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "245" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL A2L 0.4 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_20", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "70" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "90" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "245" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A2L 0.6 nozzle.json index 8d6f6b9258..fb6e589539 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A2L 0.6 nozzle.json @@ -1,50 +1,50 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL A2L 0.6 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_47", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "70" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "90" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "245" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL A2L 0.6 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_47", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "70" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "90" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "245" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A2L 0.8 nozzle.json index 3272f7c892..0d03c808c2 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL A2L 0.8 nozzle.json @@ -1,59 +1,59 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL A2L 0.8 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_48", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "70" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "90" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "245" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL A2L 0.8 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_48", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "70" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "90" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "245" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2C 0.2 nozzle.json index 4fdd5b2f3c..4dddeede4f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2C 0.2 nozzle.json @@ -1,180 +1,91 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL H2C 0.2 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_21", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "205", - "205" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL H2C 0.2 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_21", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "205", + "205" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2C 0.6 nozzle.json index c33c99a53f..8ea86729b7 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2C 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2C 0.6 nozzle.json @@ -1,192 +1,134 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL H2C 0.6 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_22", - "instantiation": "true", - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.01" - ], - "counter_limit_max": [ - "0.088" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "205", - "205" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_3": [ - "0.18" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Tough+ @BBL H2C 0.6 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_22", + "instantiation": "true", + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.01" + ], + "counter_limit_max": [ + "0.088" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "205", + "205", + "205" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_3": [ + "0.18" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2C 0.8 nozzle.json index 903335f325..e1c4a1853f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2C 0.8 nozzle.json @@ -1,192 +1,119 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL H2C 0.8 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_23", - "instantiation": "true", - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.01" - ], - "counter_limit_max": [ - "0.088" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "205", - "205" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_3": [ - "0.18" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL H2C 0.8 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_23", + "instantiation": "true", + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.01" + ], + "counter_limit_max": [ + "0.088" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "205", + "205" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "hole_coef_3": [ + "0.18" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2C.json index a12d2cd987..ee7aa68a18 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2C.json @@ -1,192 +1,134 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL H2C", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_24", - "instantiation": "true", - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.01" - ], - "counter_limit_max": [ - "0.088" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "205", - "205" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_3": [ - "0.18" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Tough+ @BBL H2C", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_24", + "instantiation": "true", + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.01" + ], + "counter_limit_max": [ + "0.088" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "205", + "205", + "205" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_3": [ + "0.18" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2D 0.2 nozzle.json index bfb1b063ff..b0b1356406 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2D 0.2 nozzle.json @@ -1,162 +1,66 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL H2D 0.2 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_04", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL H2D 0.2 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_04", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2D 0.6 nozzle.json index 9e55dc49ad..a55438aa3a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2D 0.6 nozzle.json @@ -1,174 +1,105 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL H2D 0.6 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_05", - "instantiation": "true", - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.01" - ], - "counter_limit_max": [ - "0.088" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "hole_coef_3": [ - "0.18" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL H2D 0.6 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_05", + "instantiation": "true", + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.01" + ], + "counter_limit_max": [ + "0.088" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_3": [ + "0.18" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2D 0.8 nozzle.json index 2d8fdd75cc..84b80f79a7 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2D 0.8 nozzle.json @@ -1,162 +1,94 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL H2D 0.8 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_06", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL H2D 0.8 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_06", + "instantiation": "true", + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.01" + ], + "counter_limit_max": [ + "0.088" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_3": [ + "0.18" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2D.json index 28fc29155d..23aee02dfc 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2D.json @@ -1,174 +1,105 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL H2D", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_07", - "instantiation": "true", - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.01" - ], - "counter_limit_max": [ - "0.088" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "hole_coef_3": [ - "0.18" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL H2D", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_07", + "instantiation": "true", + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.01" + ], + "counter_limit_max": [ + "0.088" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_3": [ + "0.18" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2DP 0.2 nozzle.json index b2d1c4376a..c8c5f19e1c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2DP 0.2 nozzle.json @@ -1,162 +1,63 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_08", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_08", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2DP 0.6 nozzle.json index 9481fd8afe..8b046bf504 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2DP 0.6 nozzle.json @@ -1,174 +1,91 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL H2DP 0.6 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_09", - "instantiation": "true", - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.01" - ], - "counter_limit_max": [ - "0.088" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "hole_coef_3": [ - "0.18" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Tough+ @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_09", + "instantiation": "true", + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.01" + ], + "counter_limit_max": [ + "0.088" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_3": [ + "0.18" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2DP 0.8 nozzle.json index 6fe54ee06b..d35ab9dd0c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2DP 0.8 nozzle.json @@ -1,162 +1,79 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL H2DP 0.8 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_10", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_10", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2DP.json index e0a4c9e780..5e85337111 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2DP.json @@ -1,174 +1,91 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL H2DP", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_11", - "instantiation": "true", - "counter_coef_2": [ - "0.003" - ], - "counter_coef_3": [ - "0.01" - ], - "counter_limit_max": [ - "0.088" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "hole_coef_3": [ - "0.18" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Tough+ @BBL H2DP", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_11", + "instantiation": "true", + "counter_coef_2": [ + "0.003" + ], + "counter_coef_3": [ + "0.01" + ], + "counter_limit_max": [ + "0.088" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_3": [ + "0.18" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2S 0.2 nozzle.json index 900e80fcfd..d1f203959e 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2S 0.2 nozzle.json @@ -1,134 +1,78 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL H2S 0.2 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_12", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL H2S 0.2 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_12", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2S 0.6 nozzle.json index a1ffa854ef..8023fe75fc 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2S 0.6 nozzle.json @@ -1,134 +1,103 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL H2S 0.6 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_13", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Tough+ @BBL H2S 0.6 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_13", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2S 0.8 nozzle.json index 6511b6677e..949c8e6452 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2S 0.8 nozzle.json @@ -1,134 +1,90 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL H2S 0.8 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_14", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL H2S 0.8 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_14", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2S.json index f28accada3..4dcda1d0d8 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL H2S.json @@ -1,134 +1,103 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL H2S", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_15", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Tough+ @BBL H2S", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_15", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL P2S 0.2 nozzle.json index 9762d53285..22e089b33a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL P2S 0.2 nozzle.json @@ -1,171 +1,80 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL P2S 0.2 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_25", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL P2S 0.2 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_25", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL P2S 0.6 nozzle.json index c38094415a..a6b1d03f76 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL P2S 0.6 nozzle.json @@ -1,171 +1,97 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL P2S 0.6 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_26", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Tough+ @BBL P2S 0.6 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_26", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL P2S 0.8 nozzle.json index 2524702b32..4315da6996 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL P2S 0.8 nozzle.json @@ -1,171 +1,88 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL P2S 0.8 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_27", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL P2S 0.8 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_27", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL P2S.json index b2cc2849d5..6454b9885f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL P2S.json @@ -1,171 +1,82 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL P2S", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_28", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Tough+ @BBL P2S", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_28", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1.json index cb2b3784b6..80e7689736 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1.json @@ -1,133 +1,68 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL X1", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_29", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "70" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "90" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL X1", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_29", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "70" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "90" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1C 0.2 nozzle.json index 3131968642..4e7fed4867 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1C 0.2 nozzle.json @@ -1,125 +1,60 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL X1C 0.2 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_30", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL X1C 0.2 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_30", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..4eac2ec84a --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1C 0.6 nozzle.json @@ -0,0 +1,65 @@ +{ + "type": "filament", + "name": "Bambu PLA Tough+ @BBL X1C 0.6 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_37", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "nil" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1C 0.8 nozzle.json index fdc21498a0..7f7ede7a6f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1C 0.8 nozzle.json @@ -1,124 +1,59 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL X1C 0.8 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_31", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL X1C 0.8 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_31", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1C.json index 35812c70ea..47ef6f0b56 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X1C.json @@ -1,127 +1,69 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL X1C", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_32", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL X1C", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_32", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "nil" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.2 nozzle.json index 00908fcc1b..be2f3c593b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.2 nozzle.json @@ -1,275 +1,134 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL X2D 0.2 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_16", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil", - "5", - "5" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "1.0084", - "1.0084", - "1.0084", - "1.0084" - ], - "filament_max_volumetric_speed": [ - "2", - "2", - "0.5", - "0.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "245" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "245", - "245", - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245", - "245", - "245" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_16", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "1.0084", + "1.0084", + "1.0084", + "1.0084" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245", + "245" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.4 nozzle.json index 541368a581..d520d07e28 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.4 nozzle.json @@ -1,272 +1,139 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL X2D 0.4 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_17", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1", - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1", - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1.0084", - "1.0084", - "1.0084", - "1.0084" - ], - "filament_max_volumetric_speed": [ - "21", - "21", - "21", - "21" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "245" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "245", - "245", - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245", - "245", - "245" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Tough+ @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_17", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1.0084", + "1.0084", + "1.0084", + "1.0084", + "1.0084", + "1.0084" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245", + "245", + "245", + "245" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..bf000bd0b1 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D 0.8 nozzle.json @@ -0,0 +1,131 @@ +{ + "type": "filament", + "name": "Bambu PLA Tough+ @BBL X2D 0.8 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_52", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1.0084", + "1.0084", + "1.0084", + "1.0084" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245", + "245" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D.json index aadd4ae6db..f10ee7baa9 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @BBL X2D.json @@ -1,273 +1,139 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL X2D", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_18", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1.0084", - "1.0084", - "1.0084", - "1.0084" - ], - "filament_max_volumetric_speed": [ - "21", - "21", - "21", - "21" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "245" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "245", - "245", - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245", - "245", - "245" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Tough+ @BBL X2D", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_18", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1.0084", + "1.0084", + "1.0084", + "1.0084", + "1.0084", + "1.0084" + ], + "filament_max_volumetric_speed": [ + "21", + "21", + "21", + "21", + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "245" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "245", + "245", + "245", + "245", + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245", + "245", + "245", + "245", + "245" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough+ @base.json b/resources/profiles/BBL/filament/Bambu PLA Tough+ @base.json index ccc534d02f..3aeaf90be1 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough+ @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough+ @base.json @@ -1,56 +1,56 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OF342jVN", - "instantiation": "false", - "additional_cooling_fan_speed": [ - "80" - ], - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.21" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "filament_scarf_gap": [ - "0%" - ], - "filament_change_length": [ - "5" - ], - "filament_prime_volume": [ - "30" - ], - "impact_strength_z": [ - "13.8" - ], - "nozzle_temperature": [ - "245" - ], - "nozzle_temperature_initial_layer": [ - "245" - ], - "nozzle_temperature_range_low": [ - "220" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OF342jVN", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "80" + ], + "filament_change_length": [ + "5" + ], + "filament_cost": [ + "20.99" + ], + "filament_density": [ + "1.21" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_prime_volume": [ + "30" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "13.8" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "245" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1 0.2 nozzle.json index 8623b0876b..8031d53b68 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1 0.2 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL A1 0.2 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_08", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "1.6" - ], - "filament_retract_before_wipe": [ - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL A1 0.2 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_08", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1.6" + ], + "filament_retract_before_wipe": [ + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1 0.8 nozzle.json index 08a0412f63..b8aec9875a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1 0.8 nozzle.json @@ -1,42 +1,42 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL A1 0.8 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_07", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_retract_before_wipe": [ - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL A1 0.8 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_07", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_retract_before_wipe": [ + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1.json index 64e2e08784..83de977eed 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL A1", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_06", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_retract_before_wipe": [ - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL A1", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_retract_before_wipe": [ + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1M 0.2 nozzle.json index 7733c402fa..06761f55e9 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1M 0.2 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL A1M 0.2 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_11", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "1.6" - ], - "filament_retract_before_wipe": [ - "0" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL A1M 0.2 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_11", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1.6" + ], + "filament_retract_before_wipe": [ + "0" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1M 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1M 0.8 nozzle.json index e55d837499..95056fe081 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1M 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1M 0.8 nozzle.json @@ -1,42 +1,42 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL A1M 0.8 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_retract_before_wipe": [ - "0" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL A1M 0.8 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_retract_before_wipe": [ + "0" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1M.json index 8e95a39c60..1838161dab 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A1M.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL A1M", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_09", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_retract_before_wipe": [ - "0" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL A1M", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_09", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_retract_before_wipe": [ + "0" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A2L 0.2 nozzle.json index d485c9ce20..21d9e8ee0d 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A2L 0.2 nozzle.json @@ -1,71 +1,71 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL A2L 0.2 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_18", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "1.6" - ], - "filament_overhang_4_4_speed": [ - "35" - ], - "filament_overhang_totally_speed": [ - "25" - ], - "filament_retract_before_wipe": [ - "0" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "25" - ], - "slow_down_min_speed": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL A2L 0.2 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_18", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "1.6" + ], + "filament_overhang_4_4_speed": [ + "35" + ], + "filament_overhang_totally_speed": [ + "25" + ], + "filament_retract_before_wipe": [ + "0" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "25" + ], + "slow_down_min_speed": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A2L 0.6 nozzle.json index 0944ef86cf..4e3a0a6b0c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A2L 0.6 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL A2L 0.6 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_42", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_retract_before_wipe": [ - "0" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL A2L 0.6 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_42", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_retract_before_wipe": [ + "0" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A2L 0.8 nozzle.json index 452a5fbd73..36e01fc851 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A2L 0.8 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL A2L 0.8 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_19", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_retract_before_wipe": [ - "0" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL A2L 0.8 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_19", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_retract_before_wipe": [ + "0" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A2L.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A2L.json index 0f59f4d269..5833c872c0 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL A2L.json @@ -1,59 +1,59 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL A2L", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_20", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_retract_before_wipe": [ - "0" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL A2L", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_20", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_retract_before_wipe": [ + "0" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2C 0.2 nozzle.json index 1bf9f40acc..743a5d09aa 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2C 0.2 nozzle.json @@ -1,189 +1,100 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL H2C 0.2 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_30", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL H2C 0.2 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_30", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2C 0.6 nozzle.json new file mode 100644 index 0000000000..bf8d33de15 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2C 0.6 nozzle.json @@ -0,0 +1,143 @@ +{ + "type": "filament", + "name": "Bambu PLA Translucent @BBL H2C 0.6 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_43", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..7c19dbe1a7 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2C 0.8 nozzle.json @@ -0,0 +1,128 @@ +{ + "type": "filament", + "name": "Bambu PLA Translucent @BBL H2C 0.8 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_44", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2C.json index 1a4a5607ab..6a059d251b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2C.json @@ -1,191 +1,131 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL H2C", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_29", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle", - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Translucent @BBL H2C", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_29", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2D 0.2 nozzle.json index 2f9bba7021..f955f7d6cc 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2D 0.2 nozzle.json @@ -1,131 +1,66 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL H2D 0.2 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_14", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL H2D 0.2 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_14", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2D 0.6 nozzle.json new file mode 100644 index 0000000000..595316f8b8 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2D 0.6 nozzle.json @@ -0,0 +1,107 @@ +{ + "type": "filament", + "name": "Bambu PLA Translucent @BBL H2D 0.6 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_45", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2D 0.8 nozzle.json index f8a994f832..6fd684b73d 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2D 0.8 nozzle.json @@ -1,132 +1,82 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL H2D 0.8 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_13", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL H2D 0.8 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_13", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2D.json index f2bfcc1efb..ccfd220ee1 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2D.json @@ -1,131 +1,93 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL H2D", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_12", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL H2D", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_12", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "1" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2DP 0.2 nozzle.json index 413e9ec1d4..4463cff56e 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2DP 0.2 nozzle.json @@ -1,131 +1,60 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL H2DP 0.2 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_33", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL H2DP 0.2 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_33", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2DP 0.6 nozzle.json new file mode 100644 index 0000000000..d4e2e52372 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2DP 0.6 nozzle.json @@ -0,0 +1,97 @@ +{ + "type": "filament", + "name": "Bambu PLA Translucent @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_46", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2DP 0.8 nozzle.json index 0bfcba025f..995c2349d4 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2DP 0.8 nozzle.json @@ -1,132 +1,76 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL H2DP 0.8 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_32", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_32", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2DP.json index 150f5e1da3..eb7ff81269 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2DP.json @@ -1,131 +1,76 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL H2DP", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_31", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Translucent @BBL H2DP", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_31", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\nM145 P0 ; set airduct mode to cooling mode\nM142 P1 R35 S40 U0.3 V0.5 ; set chamber autocooling" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2S 0.2 nozzle.json index 7ea5aedb49..8ee80929b7 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2S 0.2 nozzle.json @@ -1,143 +1,90 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL H2S 0.2 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_16", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL H2S 0.2 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_16", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2S 0.6 nozzle.json new file mode 100644 index 0000000000..264712fbc9 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2S 0.6 nozzle.json @@ -0,0 +1,128 @@ +{ + "type": "filament", + "name": "Bambu PLA Translucent @BBL H2S 0.6 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_47", + "instantiation": "true", + "description": "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.", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_change_length": [ + "4" + ], + "filament_prime_volume": [ + "30" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2S 0.8 nozzle.json new file mode 100644 index 0000000000..398d122abe --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2S 0.8 nozzle.json @@ -0,0 +1,115 @@ +{ + "type": "filament", + "name": "Bambu PLA Translucent @BBL H2S 0.8 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_48", + "instantiation": "true", + "description": "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.", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_change_length": [ + "4" + ], + "filament_prime_volume": [ + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2S.json index d0e6f37a75..5a1f621995 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL H2S.json @@ -1,146 +1,116 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL H2S", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_15", - "instantiation": "true", - "description": "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.", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA Translucent @BBL H2S", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_15", + "instantiation": "true", + "description": "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.", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P1P 0.2 nozzle.json index 99a44c1be4..00bc9dac11 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P1P 0.2 nozzle.json @@ -1,143 +1,74 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL P1P 0.2 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_retract_before_wipe": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL P1P 0.2 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_retract_before_wipe": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P1P 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P1P 0.8 nozzle.json index 95e0eb7a6a..670d60514e 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P1P 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P1P 0.8 nozzle.json @@ -1,144 +1,75 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL P1P 0.8 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_retract_before_wipe": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL P1P 0.8 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_retract_before_wipe": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P1P.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P1P.json index c9271463e7..7ae191d7af 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P1P.json @@ -1,143 +1,74 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL P1P", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_retract_before_wipe": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL P1P", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_retract_before_wipe": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P2S 0.2 nozzle.json index 076db70bc1..f4d864f29e 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P2S 0.2 nozzle.json @@ -1,180 +1,97 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL P2S 0.2 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_24", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "0", - "0" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL P2S 0.2 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_24", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P2S 0.4 nozzle.json index bb50b18639..c09cce8eaf 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P2S 0.4 nozzle.json @@ -1,178 +1,89 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL P2S 0.4 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_21", - "instantiation": "true", - "description": "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.", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "0", - "0" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Translucent @BBL P2S 0.4 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_21", + "instantiation": "true", + "description": "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.", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P2S 0.6 nozzle.json index 505f25435e..2725f38791 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P2S 0.6 nozzle.json @@ -1,177 +1,98 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL P2S 0.6 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_22", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "0", - "0" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "50", - "50" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA Translucent @BBL P2S 0.6 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_22", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "0.8" + ], + "filament_retraction_speed": [ + "50", + "50", + "50" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P2S 0.8 nozzle.json index 97a3b7a1fa..fda701016e 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL P2S 0.8 nozzle.json @@ -1,174 +1,79 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL P2S 0.8 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_23", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "0", - "0" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL P2S 0.8 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_23", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X1C 0.2 nozzle.json index 6f85e21a93..56c2cb1916 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X1C 0.2 nozzle.json @@ -1,128 +1,59 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL X1C 0.2 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_02", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_retract_before_wipe": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL X1C 0.2 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_02", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_retract_before_wipe": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X1C 0.8 nozzle.json index c2d3a11dfb..41f54caeb0 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X1C 0.8 nozzle.json @@ -1,132 +1,63 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL X1C 0.8 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_01", - "instantiation": "true", - "filament_retract_before_wipe": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL X1C 0.8 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_retract_before_wipe": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X1C.json index d615e497f8..cfe114c228 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X1C.json @@ -1,129 +1,60 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL X1C", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_00", - "instantiation": "true", - "description": "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.", - "filament_retract_before_wipe": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab X1E 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL X1C", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_00", + "instantiation": "true", + "description": "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.", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_retract_before_wipe": [ + "0", + "0" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.2 nozzle.json index 08c0253238..9ff9f3c7c9 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.2 nozzle.json @@ -1,275 +1,140 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL X2D 0.2 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_25", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "5", - "5" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "50", - "50" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "0", - "0", - "0", - "0" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2", - "0.5", - "0.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "nozzle_temperature": [ - "250", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "250", - "220", - "220", - "220" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL X2D 0.2 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_25", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "nil", + "nil", + "5", + "5" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "50", + "50" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "250", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "250", + "220", + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.4 nozzle.json index 9bf012934e..8fbd944596 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.4 nozzle.json @@ -1,276 +1,151 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL X2D 0.4 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_26", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1", - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1", - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "0", - "0", - "0", - "0" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "description": "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] + "type": "filament", + "name": "Bambu PLA Translucent @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_26", + "instantiation": "true", + "description": "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.6 nozzle.json index 536cdf9cb1..2efa9652d0 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.6 nozzle.json @@ -1,275 +1,150 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL X2D 0.6 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_27", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "0", - "0", - "0", - "0" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] + "type": "filament", + "name": "Bambu PLA Translucent @BBL X2D 0.6 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_27", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.8 nozzle.json index 2372de3573..e8bba0ada4 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @BBL X2D 0.8 nozzle.json @@ -1,275 +1,122 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @BBL X2D 0.8 nozzle", - "inherits": "Bambu PLA Translucent @base", - "from": "system", - "setting_id": "GFSA17_28", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "0", - "0", - "0", - "0" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @BBL X2D 0.8 nozzle", + "inherits": "Bambu PLA Translucent @base", + "from": "system", + "setting_id": "GFSA17_28", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_before_wipe": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Translucent @base.json b/resources/profiles/BBL/filament/Bambu PLA Translucent @base.json index ada0a501fc..4f56335925 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Translucent @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA Translucent @base.json @@ -1,26 +1,26 @@ { - "type": "filament", - "name": "Bambu PLA Translucent @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFFbSnCD", - "instantiation": "false", - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.22" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PLA Translucent @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFFbSnCD", + "instantiation": "false", + "filament_cost": [ + "15.99" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A1.json index f958bca57e..f72128847a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A1.json @@ -1,40 +1,40 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL A1", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL A1", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A1M.json index 9e4b22e6b2..545faea7b9 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A1M.json @@ -1,40 +1,40 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL A1M", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_05", - "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": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL A1M", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_05", + "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": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A2L 0.6 nozzle.json index 787b2451b6..50c03e0547 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A2L 0.6 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL A2L 0.6 nozzle", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_28", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL A2L 0.6 nozzle", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_28", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A2L 0.8 nozzle.json index 05c3a08907..0b98e00740 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A2L 0.8 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL A2L 0.8 nozzle", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_29", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL A2L 0.8 nozzle", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_29", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A2L.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A2L.json index 7cef051eef..d5f3807b40 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL A2L.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL A2L", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_18", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL A2L", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_18", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2C 0.4 nozzle.json index 08a53b3639..2165790d3a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2C 0.4 nozzle.json @@ -1,186 +1,128 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL H2C 0.4 nozzle", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_14", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL H2C 0.4 nozzle", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_14", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2C.json index b776afff56..1d718aa068 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2C.json @@ -1,187 +1,129 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL H2C", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_15", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL H2C", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_15", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2D 0.8 nozzle.json index edaa93a997..6b91602197 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2D 0.8 nozzle.json @@ -1,134 +1,79 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL H2D 0.8 nozzle", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_07", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL H2D 0.8 nozzle", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_07", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2D.json index 706f9c88d9..de485c58fa 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2D.json @@ -1,135 +1,91 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL H2D", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_06", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL H2D", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_06", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2DP 0.8 nozzle.json index fc33dd9654..5fb03cf144 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2DP 0.8 nozzle.json @@ -1,134 +1,79 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL H2DP 0.8 nozzle", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_11", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_11", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2DP.json index 4891afcd12..da0d1f7d95 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2DP.json @@ -1,135 +1,80 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL H2DP", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_10", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL H2DP", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_10", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2S.json index 06f54cf7a5..8d45019fdd 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL H2S.json @@ -1,142 +1,108 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL H2S", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_16", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_min_speed": [ - "80" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL H2S", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_16", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_min_speed": [ + "80" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P1P 0.6 nozzle.json new file mode 100644 index 0000000000..abb60dfc31 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P1P 0.6 nozzle.json @@ -0,0 +1,94 @@ +{ + "type": "filament", + "name": "Bambu PLA Wood @BBL P1P 0.6 nozzle", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_23", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "18", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P1P.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P1P.json index 646e929ab3..16208882d0 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P1P.json @@ -1,145 +1,95 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL P1P", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL P1P", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "18", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P2S 0.6 nozzle.json index a92009e5f3..4c504bbafd 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P2S 0.6 nozzle.json @@ -1,171 +1,87 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL P2S 0.6 nozzle", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_19", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL P2S 0.6 nozzle", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_19", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "0.8" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P2S 0.8 nozzle.json index 85ae8f3ad5..d7c9a22f24 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P2S 0.8 nozzle.json @@ -1,171 +1,72 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL P2S 0.8 nozzle", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_09", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL P2S 0.8 nozzle", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_09", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P2S.json index 1131d01f2d..5af85c28bf 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL P2S.json @@ -1,171 +1,82 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL P2S", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_08", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL P2S", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_08", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1.json index f2114546da..7d6e298556 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1.json @@ -1,127 +1,62 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL X1", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_02", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL X1", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_02", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..ffde82d2c1 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1C 0.6 nozzle.json @@ -0,0 +1,71 @@ +{ + "type": "filament", + "name": "Bambu PLA Wood @BBL X1C 0.6 nozzle", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_20", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "18", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab P1S 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1C 0.8 nozzle.json index 70f575a7c1..977ebeb89d 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1C 0.8 nozzle.json @@ -1,121 +1,56 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL X1C 0.8 nozzle", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_01", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL X1C 0.8 nozzle", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1C.json index 23f90e8f83..7036b20490 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X1C.json @@ -1,124 +1,73 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL X1C", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL X1C", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_00", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "18", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab P1S 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X2D 0.4 nozzle.json index 4aaed174be..f46c1cfd3c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X2D 0.4 nozzle.json @@ -1,272 +1,139 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL X2D 0.4 nozzle", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_12", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1", - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1", - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "18", - "18", - "18", - "18" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_12", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X2D.json index 39592384b1..e1c15f187c 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @BBL X2D.json @@ -1,273 +1,140 @@ { - "type": "filament", - "name": "Bambu PLA Wood @BBL X2D", - "inherits": "Bambu PLA Wood @base", - "from": "system", - "setting_id": "GFSA16_13", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "0.4", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "18", - "18", - "18", - "18" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @BBL X2D", + "inherits": "Bambu PLA Wood @base", + "from": "system", + "setting_id": "GFSA16_13", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "0.4", + "nil", + "0.4", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA Wood @base.json b/resources/profiles/BBL/filament/Bambu PLA Wood @base.json index 3ba638569b..74ae15237b 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Wood @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA Wood @base.json @@ -1,38 +1,35 @@ { - "type": "filament", - "name": "Bambu PLA Wood @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFMjtqTC", - "instantiation": "false", - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.21" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_scarf_seam_type": [ - "none" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "5.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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA Wood @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFMjtqTC", + "instantiation": "false", + "filament_cost": [ + "21.99" + ], + "filament_density": [ + "1.21" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "5.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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A1 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A1 0.8 nozzle.json index f1b5154e11..7b86bec58f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A1 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A1 0.8 nozzle.json @@ -1,51 +1,51 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL A1 0.8 nozzle", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA-CF @BBL A1 0.8 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A1.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A1.json index ef5bca4197..f27abc0df2 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A1.json @@ -1,50 +1,50 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL A1", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "15" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA-CF @BBL A1", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A1M 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A1M 0.8 nozzle.json index 0d4a58004b..af10570429 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A1M 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A1M 0.8 nozzle.json @@ -1,51 +1,51 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL A1M 0.8 nozzle", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA-CF @BBL A1M 0.8 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A1M.json index a29ff89a84..06b3e679e2 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A1M.json @@ -1,50 +1,50 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL A1M", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_00", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "15" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA-CF @BBL A1M", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_00", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A2L 0.6 nozzle.json index b7a7b77290..f0b60f5564 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A2L 0.6 nozzle.json @@ -1,56 +1,56 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL A2L 0.6 nozzle", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_25", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "230" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA-CF @BBL A2L 0.6 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_25", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "230" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A2L 0.8 nozzle.json index 9857537218..4e72987fc8 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A2L 0.8 nozzle.json @@ -1,56 +1,56 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL A2L 0.8 nozzle", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_19", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "230" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA-CF @BBL A2L 0.8 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_19", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "230" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A2L.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A2L.json index 92e1c027d4..5b9242bdfc 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL A2L.json @@ -1,68 +1,68 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL A2L", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_20", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_bridge_speed": [ - "50" - ], - "filament_flush_temp_fast": [ - "240" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "15" - ], - "filament_overhang_4_4_speed": [ - "25" - ], - "filament_overhang_totally_speed": [ - "25" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "nozzle_temperature": [ - "240" - ], - "nozzle_temperature_initial_layer": [ - "240" - ], - "overhang_fan_threshold": [ - "25%" - ], - "override_process_overhang_speed": [ - "1" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PLA-CF @BBL A2L", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_20", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_bridge_speed": [ + "50" + ], + "filament_flush_temp_fast": [ + "240" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_overhang_4_4_speed": [ + "25" + ], + "filament_overhang_totally_speed": [ + "25" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "overhang_fan_threshold": [ + "25%" + ], + "override_process_overhang_speed": [ + "1" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2C 0.4 nozzle.json index 46bbb2e021..353bf122ac 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2C 0.4 nozzle.json @@ -1,198 +1,120 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL H2C 0.4 nozzle", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_18", - "instantiation": "true", - "counter_coef_2": [ - "0.0003" - ], - "counter_coef_3": [ - "0.0224" - ], - "counter_limit_max": [ - "0.03" - ], - "counter_limit_min": [ - "0.0224" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0028" - ], - "hole_coef_3": [ - "0.1173" - ], - "hole_limit_max": [ - "0.1173" - ], - "hole_limit_min": [ - "0.048" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA-CF @BBL H2C 0.4 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_18", + "instantiation": "true", + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "0.0224" + ], + "counter_limit_min": [ + "0.0224" + ], + "counter_limit_max": [ + "0.03" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190", + "190" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.1173" + ], + "hole_limit_min": [ + "0.048" + ], + "hole_limit_max": [ + "0.1173" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..b041ea0a2e --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2C 0.8 nozzle.json @@ -0,0 +1,121 @@ +{ + "type": "filament", + "name": "Bambu PLA-CF @BBL H2C 0.8 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_26", + "instantiation": "true", + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "0.0224" + ], + "counter_limit_max": [ + "0.03" + ], + "counter_limit_min": [ + "0.0224" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.1173" + ], + "hole_limit_max": [ + "0.1173" + ], + "hole_limit_min": [ + "0.048" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2C.json index a347580105..0a1cb74fde 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2C.json @@ -1,199 +1,120 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL H2C", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_17", - "instantiation": "true", - "counter_coef_2": [ - "0.0003" - ], - "counter_coef_3": [ - "0.0224" - ], - "counter_limit_max": [ - "0.03" - ], - "counter_limit_min": [ - "0.0224" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0028" - ], - "hole_coef_3": [ - "0.1173" - ], - "hole_limit_max": [ - "0.1173" - ], - "hole_limit_min": [ - "0.048" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA-CF @BBL H2C", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_17", + "instantiation": "true", + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "0.0224" + ], + "counter_limit_max": [ + "0.03" + ], + "counter_limit_min": [ + "0.0224" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190", + "190" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.1173" + ], + "hole_limit_max": [ + "0.1173" + ], + "hole_limit_min": [ + "0.048" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2D 0.4 nozzle.json index 24b979d574..f2bdb2d88e 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2D 0.4 nozzle.json @@ -1,146 +1,111 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL H2D 0.4 nozzle", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_08", - "instantiation": "true", - "counter_coef_2": [ - "0.012" - ], - "counter_coef_3": [ - "-0.063" - ], - "counter_limit_max": [ - "0.07" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_2": [ - "-0.0103" - ], - "hole_coef_3": [ - "0.1974" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA-CF @BBL H2D 0.4 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_08", + "instantiation": "true", + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "0.0224" + ], + "counter_limit_max": [ + "0.03" + ], + "counter_limit_min": [ + "0.0224" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.8" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.1173" + ], + "hole_limit_max": [ + "0.1173" + ], + "hole_limit_min": [ + "0.048" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2D 0.6 nozzle.json index 1286e0a222..8e0446d557 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2D 0.6 nozzle.json @@ -1,132 +1,111 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL H2D 0.6 nozzle", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_06", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PLA-CF @BBL H2D 0.6 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_06", + "instantiation": "true", + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "0.0224" + ], + "counter_limit_max": [ + "0.03" + ], + "counter_limit_min": [ + "0.0224" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.1173" + ], + "hole_limit_max": [ + "0.1173" + ], + "hole_limit_min": [ + "0.048" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2D 0.8 nozzle.json new file mode 100644 index 0000000000..51397da3a0 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2D 0.8 nozzle.json @@ -0,0 +1,86 @@ +{ + "type": "filament", + "name": "Bambu PLA-CF @BBL H2D 0.8 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_27", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2DP 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2DP 0.4 nozzle.json index 556896028c..5a7b4b5592 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2DP 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2DP 0.4 nozzle.json @@ -1,146 +1,85 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL H2DP 0.4 nozzle", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_14", - "instantiation": "true", - "counter_coef_2": [ - "0.012" - ], - "counter_coef_3": [ - "-0.063" - ], - "counter_limit_max": [ - "0.07" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hole_coef_2": [ - "-0.0103" - ], - "hole_coef_3": [ - "0.1974" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA-CF @BBL H2DP 0.4 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_14", + "instantiation": "true", + "counter_coef_2": [ + "0.012" + ], + "counter_coef_3": [ + "-0.063" + ], + "counter_limit_max": [ + "0.07" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "hole_coef_2": [ + "-0.0103" + ], + "hole_coef_3": [ + "0.1974" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2DP 0.6 nozzle.json index b5f6428cd3..693fe62b53 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2DP 0.6 nozzle.json @@ -1,132 +1,70 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL H2DP 0.6 nozzle", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_13", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA-CF @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_13", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2DP 0.8 nozzle.json new file mode 100644 index 0000000000..0abb0fc42b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2DP 0.8 nozzle.json @@ -0,0 +1,88 @@ +{ + "type": "filament", + "name": "Bambu PLA-CF @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_28", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2S 0.6 nozzle.json new file mode 100644 index 0000000000..0d9ecda7af --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2S 0.6 nozzle.json @@ -0,0 +1,113 @@ +{ + "type": "filament", + "name": "Bambu PLA-CF @BBL H2S 0.6 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_29", + "instantiation": "true", + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "0.0224" + ], + "counter_limit_max": [ + "0.03" + ], + "counter_limit_min": [ + "0.0224" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.1173" + ], + "hole_limit_max": [ + "0.1173" + ], + "hole_limit_min": [ + "0.048" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2S 0.8 nozzle.json new file mode 100644 index 0000000000..24ca8956d1 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2S 0.8 nozzle.json @@ -0,0 +1,104 @@ +{ + "type": "filament", + "name": "Bambu PLA-CF @BBL H2S 0.8 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_30", + "instantiation": "true", + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "0.0224" + ], + "counter_limit_max": [ + "0.03" + ], + "counter_limit_min": [ + "0.0224" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.1173" + ], + "hole_limit_max": [ + "0.1173" + ], + "hole_limit_min": [ + "0.048" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2S.json index 48a25e7369..dc6c4235a8 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL H2S.json @@ -1,133 +1,101 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL H2S", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_07", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PLA-CF @BBL H2S", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_07", + "instantiation": "true", + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "0.0224" + ], + "counter_limit_max": [ + "0.03" + ], + "counter_limit_min": [ + "0.0224" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.1173" + ], + "hole_limit_max": [ + "0.1173" + ], + "hole_limit_min": [ + "0.048" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL P2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL P2S 0.4 nozzle.json index 7f0eef288d..7d10faad60 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL P2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL P2S 0.4 nozzle.json @@ -1,171 +1,100 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL P2S 0.4 nozzle", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_12", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA-CF @BBL P2S 0.4 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_12", + "instantiation": "true", + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "0.0224" + ], + "counter_limit_min": [ + "0.0224" + ], + "counter_limit_max": [ + "0.03" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.1173" + ], + "hole_limit_min": [ + "0.048" + ], + "hole_limit_max": [ + "0.1173" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL P2S 0.6 nozzle.json index a31825ef69..86e583ec10 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL P2S 0.6 nozzle.json @@ -1,172 +1,100 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL P2S 0.6 nozzle", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_09", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA-CF @BBL P2S 0.6 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_09", + "instantiation": "true", + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "0.0224" + ], + "counter_limit_max": [ + "0.03" + ], + "counter_limit_min": [ + "0.0224" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.1173" + ], + "hole_limit_max": [ + "0.1173" + ], + "hole_limit_min": [ + "0.048" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL P2S 0.8 nozzle.json new file mode 100644 index 0000000000..d18a238e59 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL P2S 0.8 nozzle.json @@ -0,0 +1,102 @@ +{ + "type": "filament", + "name": "Bambu PLA-CF @BBL P2S 0.8 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_32", + "instantiation": "true", + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "0.0224" + ], + "counter_limit_max": [ + "0.03" + ], + "counter_limit_min": [ + "0.0224" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.1173" + ], + "hole_limit_max": [ + "0.1173" + ], + "hole_limit_min": [ + "0.048" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X1C 0.8 nozzle.json index 9958beef7c..4222f682b1 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X1C 0.8 nozzle.json @@ -1,129 +1,76 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL X1C 0.8 nozzle", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_02", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA-CF @BBL X1C 0.8 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_02", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "nil" + ], + "filament_retraction_length": [ + "nil", + "0.8" + ], + "filament_z_hop": [ + "nil", + "0.4" + ], + "filament_z_hop_types": [ + "nil", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab P1S 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X1C.json index 006f9ec2f3..44d4745a0a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X1C.json @@ -1,125 +1,68 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL X1C", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_01", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab X1E 0.4 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Bambu PLA-CF @BBL X1C", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.975" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "15", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.8" + ], + "filament_z_hop": [ + "nil", + "0.4" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D 0.4 nozzle.json index f3b1a6b992..66eb0e92b6 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D 0.4 nozzle.json @@ -1,296 +1,155 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL X2D 0.4 nozzle", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_16", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "counter_coef_2": [ - "0.0003" - ], - "counter_coef_3": [ - "0.0224" - ], - "counter_limit_max": [ - "0.03" - ], - "counter_limit_min": [ - "0.0224" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "15", - "15", - "15", - "15" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "230" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "hole_coef_2": [ - "-0.0028" - ], - "hole_coef_3": [ - "0.1173" - ], - "hole_limit_max": [ - "0.1173" - ], - "hole_limit_min": [ - "0.048" - ], - "nozzle_temperature": [ - "230", - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA-CF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_16", + "instantiation": "true", + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "0.0224" + ], + "counter_limit_max": [ + "0.03" + ], + "counter_limit_min": [ + "0.0224" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15", + "15", + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.1173" + ], + "hole_limit_max": [ + "0.1173" + ], + "hole_limit_min": [ + "0.048" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..b8bfb13c3f --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D 0.8 nozzle.json @@ -0,0 +1,131 @@ +{ + "type": "filament", + "name": "Bambu PLA-CF @BBL X2D 0.8 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_31", + "instantiation": "true", + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "0.0224" + ], + "counter_limit_max": [ + "0.03" + ], + "counter_limit_min": [ + "0.0224" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "45", + "45", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.1173" + ], + "hole_limit_max": [ + "0.1173" + ], + "hole_limit_min": [ + "0.048" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D.json index 6da39af155..c2d777dffd 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @BBL X2D.json @@ -1,297 +1,131 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL X2D", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_15", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "counter_coef_2": [ - "0.0003" - ], - "counter_coef_3": [ - "0.0224" - ], - "counter_limit_max": [ - "0.03" - ], - "counter_limit_min": [ - "0.0224" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "18", - "18", - "18", - "18" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "230" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "hole_coef_2": [ - "-0.0028" - ], - "hole_coef_3": [ - "0.1173" - ], - "hole_limit_max": [ - "0.1173" - ], - "hole_limit_min": [ - "0.048" - ], - "nozzle_temperature": [ - "230", - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PLA-CF @BBL X2D", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_15", + "instantiation": "true", + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "0.0224" + ], + "counter_limit_max": [ + "0.03" + ], + "counter_limit_min": [ + "0.0224" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "hole_coef_2": [ + "-0.0028" + ], + "hole_coef_3": [ + "0.1173" + ], + "hole_limit_max": [ + "0.1173" + ], + "hole_limit_min": [ + "0.048" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PLA-CF @base.json b/resources/profiles/BBL/filament/Bambu PLA-CF @base.json index 5567889cae..89dafe790f 100644 --- a/resources/profiles/BBL/filament/Bambu PLA-CF @base.json +++ b/resources/profiles/BBL/filament/Bambu PLA-CF @base.json @@ -1,56 +1,56 @@ { - "type": "filament", - "name": "Bambu PLA-CF @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFEswT5W", - "instantiation": "false", - "additional_cooling_fan_speed": [ - "0" - ], - "cool_plate_temp": [ - "45" - ], - "cool_plate_temp_initial_layer": [ - "45" - ], - "filament_cost": [ - "34.99" - ], - "filament_density": [ - "1.22" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_type": [ - "PLA-CF" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "7.8" - ], - "nozzle_temperature_range_low": [ - "210" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "required_nozzle_HRC": [ - "40" - ], - "supertack_plate_temp": [ - "50" - ], - "supertack_plate_temp_initial_layer": [ - "50" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu PLA-CF @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFEswT5W", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "0" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "filament_cost": [ + "31.99" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_type": [ + "PLA-CF" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "7.8" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "210" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp": [ + "50" + ], + "supertack_plate_temp_initial_layer": [ + "50" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2C 0.4 nozzle.json index 48da23e4a8..6e02ac3559 100644 --- a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2C 0.4 nozzle.json @@ -1,201 +1,118 @@ { - "type": "filament", - "name": "Bambu PPA-CF @BBL H2C 0.4 nozzle", - "inherits": "Bambu PPA-CF @base", - "from": "system", - "setting_id": "GFSN06_07", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "-0.0036" - ], - "counter_coef_3": [ - "-0.0075" - ], - "counter_limit_max": [ - "-0.0975" - ], - "counter_limit_min": [ - "-0.0075" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_pre_cooling_temperature_nc": [ - "250", - "250" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0051" - ], - "hole_coef_3": [ - "0.1702" - ], - "hole_limit_max": [ - "0.17" - ], - "hole_limit_min": [ - "0.04" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "150" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PPA-CF @BBL H2C 0.4 nozzle", + "inherits": "Bambu PPA-CF @base", + "from": "system", + "setting_id": "GFSN06_07", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0036" + ], + "counter_coef_3": [ + "-0.0075" + ], + "counter_limit_max": [ + "-0.0975" + ], + "counter_limit_min": [ + "-0.0075" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_pre_cooling_temperature_nc": [ + "250", + "250", + "250" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.1702" + ], + "hole_limit_max": [ + "0.17" + ], + "hole_limit_min": [ + "0.04" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "150" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2C.json index fa07fa6f21..62785a4973 100644 --- a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2C.json @@ -1,202 +1,119 @@ { - "type": "filament", - "name": "Bambu PPA-CF @BBL H2C", - "inherits": "Bambu PPA-CF @base", - "from": "system", - "setting_id": "GFSN06_08", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "-0.0036" - ], - "counter_coef_3": [ - "-0.0075" - ], - "counter_limit_max": [ - "-0.0975" - ], - "counter_limit_min": [ - "-0.0075" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_pre_cooling_temperature_nc": [ - "250", - "250" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0051" - ], - "hole_coef_3": [ - "0.1702" - ], - "hole_limit_max": [ - "0.17" - ], - "hole_limit_min": [ - "0.04" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "150" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PPA-CF @BBL H2C", + "inherits": "Bambu PPA-CF @base", + "from": "system", + "setting_id": "GFSN06_08", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0036" + ], + "counter_coef_3": [ + "-0.0075" + ], + "counter_limit_max": [ + "-0.0975" + ], + "counter_limit_min": [ + "-0.0075" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_pre_cooling_temperature_nc": [ + "250", + "250", + "250" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.1702" + ], + "hole_limit_max": [ + "0.17" + ], + "hole_limit_min": [ + "0.04" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "150" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2D.json index 5bed5e35c6..b33cf373bd 100644 --- a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2D.json @@ -1,133 +1,93 @@ { - "type": "filament", - "name": "Bambu PPA-CF @BBL H2D", - "inherits": "Bambu PPA-CF @base", - "from": "system", - "setting_id": "GFSN06_02", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_printable": [ - "1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PPA-CF @BBL H2D", + "inherits": "Bambu PPA-CF @base", + "from": "system", + "setting_id": "GFSN06_02", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0036" + ], + "counter_coef_3": [ + "-0.0075" + ], + "counter_limit_max": [ + "-0.0975" + ], + "counter_limit_min": [ + "-0.0075" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.1702" + ], + "hole_limit_max": [ + "0.17" + ], + "hole_limit_min": [ + "0.04" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2DP.json index b3afbb85a3..6e1e7d2e3e 100644 --- a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2DP.json @@ -1,133 +1,56 @@ { - "type": "filament", - "name": "Bambu PPA-CF @BBL H2DP", - "inherits": "Bambu PPA-CF @base", - "from": "system", - "setting_id": "GFSN06_04", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_printable": [ - "1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PPA-CF @BBL H2DP", + "inherits": "Bambu PPA-CF @base", + "from": "system", + "setting_id": "GFSN06_04", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2S.json index 758ccec8a3..265f402207 100644 --- a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL H2S.json @@ -1,130 +1,100 @@ { - "type": "filament", - "name": "Bambu PPA-CF @BBL H2S", - "inherits": "Bambu PPA-CF @base", - "from": "system", - "setting_id": "GFSN06_09", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PPA-CF @BBL H2S", + "inherits": "Bambu PPA-CF @base", + "from": "system", + "setting_id": "GFSN06_09", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0036" + ], + "counter_coef_3": [ + "-0.0075" + ], + "counter_limit_min": [ + "-0.0075" + ], + "counter_limit_max": [ + "-0.0975" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.1702" + ], + "hole_limit_min": [ + "0.04" + ], + "hole_limit_max": [ + "0.17" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL P2S.json index 452adc0f10..fca2ea793b 100644 --- a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL P2S.json @@ -1,176 +1,100 @@ { - "type": "filament", - "name": "Bambu PPA-CF @BBL P2S", - "inherits": "Bambu PPA-CF @base", - "from": "system", - "setting_id": "GFSN06_03", - "instantiation": "true", - "activate_air_filtration": [ - "0" - ], - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PPA-CF @BBL P2S", + "inherits": "Bambu PPA-CF @base", + "from": "system", + "setting_id": "GFSN06_03", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0036" + ], + "counter_coef_3": [ + "-0.0075" + ], + "counter_limit_max": [ + "-0.0975" + ], + "counter_limit_min": [ + "-0.0075" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.1702" + ], + "hole_limit_max": [ + "0.17" + ], + "hole_limit_min": [ + "0.04" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..e39241b82e --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X1C 0.6 nozzle.json @@ -0,0 +1,63 @@ +{ + "type": "filament", + "name": "Bambu PPA-CF @BBL X1C 0.6 nozzle", + "inherits": "Bambu PPA-CF @base", + "from": "system", + "setting_id": "GFSN06_10", + "instantiation": "true", + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "12" + ], + "filament_retraction_length": [ + "nil", + "1.2" + ], + "filament_z_hop": [ + "nil", + "0.8" + ], + "filament_z_hop_types": [ + "nil", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X1C.json index e102dd285c..3a38733b59 100644 --- a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X1C.json @@ -1,130 +1,59 @@ { - "type": "filament", - "name": "Bambu PPA-CF @BBL X1C", - "inherits": "Bambu PPA-CF @base", - "from": "system", - "setting_id": "GFSN06_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 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.6 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PPA-CF @BBL X1C", + "inherits": "Bambu PPA-CF @base", + "from": "system", + "setting_id": "GFSN06_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "12" + ], + "filament_retraction_length": [ + "nil", + "1.2" + ], + "filament_z_hop": [ + "nil", + "0.8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X1E.json b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X1E.json index 0d94702ab6..d0ce626589 100644 --- a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X1E.json +++ b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X1E.json @@ -1,124 +1,51 @@ { - "type": "filament", - "name": "Bambu PPA-CF @BBL X1E", - "inherits": "Bambu PPA-CF @base", - "from": "system", - "setting_id": "GFSN06_01", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PPA-CF @BBL X1E", + "inherits": "Bambu PPA-CF @base", + "from": "system", + "setting_id": "GFSN06_01", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X2D 0.4 nozzle.json index 81b06932d4..ace32ed399 100644 --- a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X2D 0.4 nozzle.json @@ -1,296 +1,117 @@ { - "type": "filament", - "name": "Bambu PPA-CF @BBL X2D 0.4 nozzle", - "inherits": "Bambu PPA-CF @base", - "from": "system", - "setting_id": "GFSN06_05", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "-0.0036" - ], - "counter_coef_3": [ - "-0.0075" - ], - "counter_limit_max": [ - "-0.0975" - ], - "counter_limit_min": [ - "-0.0075" - ], - "filament_extruder_compatibility": [ - "8" - ], - "filament_flow_ratio": [ - "0.96", - "0.96", - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "290" - ], - "hole_coef_2": [ - "-0.0051" - ], - "hole_coef_3": [ - "0.1702" - ], - "hole_limit_max": [ - "0.17" - ], - "hole_limit_min": [ - "0.04" - ], - "nozzle_temperature": [ - "290", - "290", - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290", - "290", - "290" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PPA-CF @BBL X2D 0.4 nozzle", + "inherits": "Bambu PPA-CF @base", + "from": "system", + "setting_id": "GFSN06_05", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0036" + ], + "counter_coef_3": [ + "-0.0075" + ], + "counter_limit_max": [ + "-0.0975" + ], + "counter_limit_min": [ + "-0.0075" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.1702" + ], + "hole_limit_max": [ + "0.17" + ], + "hole_limit_min": [ + "0.04" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290", + "290", + "290" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X2D.json index b6818e58a5..e05f66fa42 100644 --- a/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PPA-CF @BBL X2D.json @@ -1,297 +1,118 @@ { - "type": "filament", - "name": "Bambu PPA-CF @BBL X2D", - "inherits": "Bambu PPA-CF @base", - "from": "system", - "setting_id": "GFSN06_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "counter_coef_2": [ - "-0.0036" - ], - "counter_coef_3": [ - "-0.0075" - ], - "counter_limit_max": [ - "-0.0975" - ], - "counter_limit_min": [ - "-0.0075" - ], - "filament_extruder_compatibility": [ - "8" - ], - "filament_flow_ratio": [ - "0.96", - "0.96", - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "290" - ], - "hole_coef_2": [ - "-0.0051" - ], - "hole_coef_3": [ - "0.1702" - ], - "hole_limit_max": [ - "0.17" - ], - "hole_limit_min": [ - "0.04" - ], - "nozzle_temperature": [ - "290", - "290", - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290", - "290", - "290" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu PPA-CF @BBL X2D", + "inherits": "Bambu PPA-CF @base", + "from": "system", + "setting_id": "GFSN06_06", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "counter_coef_2": [ + "-0.0036" + ], + "counter_coef_3": [ + "-0.0075" + ], + "counter_limit_max": [ + "-0.0975" + ], + "counter_limit_min": [ + "-0.0075" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "hole_coef_2": [ + "-0.0051" + ], + "hole_coef_3": [ + "0.1702" + ], + "hole_limit_max": [ + "0.17" + ], + "hole_limit_min": [ + "0.04" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290", + "290", + "290" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPA-CF @base.json b/resources/profiles/BBL/filament/Bambu PPA-CF @base.json index 48355afad1..0e3303cb6b 100644 --- a/resources/profiles/BBL/filament/Bambu PPA-CF @base.json +++ b/resources/profiles/BBL/filament/Bambu PPA-CF @base.json @@ -1,12 +1,15 @@ { - "type": "filament", - "name": "Bambu PPA-CF @base", - "inherits": "fdm_filament_ppa", - "from": "system", - "filament_id": "OF54B0S0", - "instantiation": "false", - "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", - "impact_strength_z": [ - "4.3" - ] -} + "type": "filament", + "name": "Bambu PPA-CF @base", + "inherits": "fdm_filament_ppa", + "from": "system", + "filament_id": "OF54B0S0", + "instantiation": "false", + "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", + "filament_cost": [ + "195.99" + ], + "impact_strength_z": [ + "4.3" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2C 0.4 nozzle.json index 310768f7bb..0f7a14b29f 100644 --- a/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2C 0.4 nozzle.json @@ -1,201 +1,113 @@ { - "type": "filament", - "name": "Bambu PPS-CF @BBL H2C 0.4 nozzle", - "inherits": "Bambu PPS-CF @base", - "from": "system", - "setting_id": "GFST02_03", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.0003" - ], - "counter_coef_3": [ - "-0.0033" - ], - "counter_limit_max": [ - "0.0036" - ], - "counter_limit_min": [ - "-0.0033" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_pre_cooling_temperature_nc": [ - "280", - "280" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0033" - ], - "hole_coef_3": [ - "0.1176" - ], - "hole_limit_max": [ - "0.1176" - ], - "hole_limit_min": [ - "0.035" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "temperature_vitrification": [ - "150" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PPS-CF @BBL H2C 0.4 nozzle", + "inherits": "Bambu PPS-CF @base", + "from": "system", + "setting_id": "GFST02_03", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "-0.0033" + ], + "counter_limit_max": [ + "0.0036" + ], + "counter_limit_min": [ + "-0.0033" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_pre_cooling_temperature_nc": [ + "280", + "280", + "280" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "hole_coef_2": [ + "-0.0033" + ], + "hole_coef_3": [ + "0.1176" + ], + "hole_limit_max": [ + "0.1176" + ], + "hole_limit_min": [ + "0.035" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "320", + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320", + "320" + ], + "temperature_vitrification": [ + "150" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2C.json index 90d3ea985f..14dd27807e 100644 --- a/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2C.json @@ -1,202 +1,114 @@ { - "type": "filament", - "name": "Bambu PPS-CF @BBL H2C", - "inherits": "Bambu PPS-CF @base", - "from": "system", - "setting_id": "GFST02_04", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.0003" - ], - "counter_coef_3": [ - "-0.0033" - ], - "counter_limit_max": [ - "0.0036" - ], - "counter_limit_min": [ - "-0.0033" - ], - "filament_change_length": [ - "4" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_pre_cooling_temperature_nc": [ - "280", - "280" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "hole_coef_2": [ - "-0.0033" - ], - "hole_coef_3": [ - "0.1176" - ], - "hole_limit_max": [ - "0.1176" - ], - "hole_limit_min": [ - "0.035" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "temperature_vitrification": [ - "150" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PPS-CF @BBL H2C", + "inherits": "Bambu PPS-CF @base", + "from": "system", + "setting_id": "GFST02_04", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "-0.0033" + ], + "counter_limit_max": [ + "0.0036" + ], + "counter_limit_min": [ + "-0.0033" + ], + "filament_change_length": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_pre_cooling_temperature_nc": [ + "280", + "280", + "280" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "hole_coef_2": [ + "-0.0033" + ], + "hole_coef_3": [ + "0.1176" + ], + "hole_limit_max": [ + "0.1176" + ], + "hole_limit_min": [ + "0.035" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "320", + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320", + "320" + ], + "temperature_vitrification": [ + "150" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2D.json index 967b382cda..c2be6f2981 100644 --- a/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2D.json @@ -1,142 +1,88 @@ { - "type": "filament", - "name": "Bambu PPS-CF @BBL H2D", - "inherits": "Bambu PPS-CF @base", - "from": "system", - "setting_id": "GFST02_01", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.00565" - ], - "counter_coef_3": [ - "-0.0202" - ], - "counter_limit_max": [ - "0.03" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_printable": [ - "1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PPS-CF @BBL H2D", + "inherits": "Bambu PPS-CF @base", + "from": "system", + "setting_id": "GFST02_01", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "-0.0033" + ], + "counter_limit_max": [ + "0.0036" + ], + "counter_limit_min": [ + "-0.0033" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_prime_volume": [ + "30" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0033" + ], + "hole_coef_3": [ + "0.1176" + ], + "hole_limit_max": [ + "0.1176" + ], + "hole_limit_min": [ + "0.035" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "320", + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320", + "320" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2DP.json index 85a1dcf4db..a18c42afc6 100644 --- a/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2DP.json @@ -1,142 +1,61 @@ { - "type": "filament", - "name": "Bambu PPS-CF @BBL H2DP", - "inherits": "Bambu PPS-CF @base", - "from": "system", - "setting_id": "GFST02_02", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "counter_coef_2": [ - "0.00565" - ], - "counter_coef_3": [ - "-0.0202" - ], - "counter_limit_max": [ - "0.03" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_printable": [ - "1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PPS-CF @BBL H2DP", + "inherits": "Bambu PPS-CF @base", + "from": "system", + "setting_id": "GFST02_02", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.00565" + ], + "counter_coef_3": [ + "-0.0202" + ], + "counter_limit_max": [ + "0.03" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2S.json index 33c5fdb730..a30b757154 100644 --- a/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PPS-CF @BBL H2S.json @@ -1,130 +1,95 @@ { - "type": "filament", - "name": "Bambu PPS-CF @BBL H2S", - "inherits": "Bambu PPS-CF @base", - "from": "system", - "setting_id": "GFST02_05", - "instantiation": "true", - "chamber_temperatures": [ - "65" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PPS-CF @BBL H2S", + "inherits": "Bambu PPS-CF @base", + "from": "system", + "setting_id": "GFST02_05", + "instantiation": "true", + "chamber_temperatures": [ + "65" + ], + "counter_coef_2": [ + "0.0003" + ], + "counter_coef_3": [ + "-0.0033" + ], + "counter_limit_min": [ + "-0.0033" + ], + "counter_limit_max": [ + "0.0036" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_change_length": [ + "4" + ], + "hole_coef_2": [ + "-0.0033" + ], + "hole_coef_3": [ + "0.1176" + ], + "hole_limit_min": [ + "0.035" + ], + "hole_limit_max": [ + "0.1176" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "320", + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320", + "320" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPS-CF @BBL X1E.json b/resources/profiles/BBL/filament/Bambu PPS-CF @BBL X1E.json index 0b381700e6..16cf559f1b 100644 --- a/resources/profiles/BBL/filament/Bambu PPS-CF @BBL X1E.json +++ b/resources/profiles/BBL/filament/Bambu PPS-CF @BBL X1E.json @@ -1,121 +1,44 @@ { - "type": "filament", - "name": "Bambu PPS-CF @BBL X1E", - "inherits": "Bambu PPS-CF @base", - "from": "system", - "setting_id": "GFST02_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PPS-CF @BBL X1E", + "inherits": "Bambu PPS-CF @base", + "from": "system", + "setting_id": "GFST02_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PPS-CF @base.json b/resources/profiles/BBL/filament/Bambu PPS-CF @base.json index 3985fcbe02..0a48d3543c 100644 --- a/resources/profiles/BBL/filament/Bambu PPS-CF @base.json +++ b/resources/profiles/BBL/filament/Bambu PPS-CF @base.json @@ -1,42 +1,42 @@ { - "type": "filament", - "name": "Bambu PPS-CF @base", - "inherits": "fdm_filament_pps", - "from": "system", - "filament_id": "OF4RvVuU", - "instantiation": "false", - "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", - "fan_max_speed": [ - "30" - ], - "filament_cost": [ - "175" - ], - "filament_density": [ - "1.26" - ], - "filament_max_volumetric_speed": [ - "6" - ], - "filament_type": [ - "PPS-CF" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "2.8" - ], - "nozzle_temperature_range_low": [ - "310" - ], - "overhang_fan_threshold": [ - "25%" - ], - "required_nozzle_HRC": [ - "40" - ], - "temperature_vitrification": [ - "220" - ] -} + "type": "filament", + "name": "Bambu PPS-CF @base", + "inherits": "fdm_filament_pps", + "from": "system", + "filament_id": "OF4RvVuU", + "instantiation": "false", + "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", + "fan_max_speed": [ + "30" + ], + "filament_cost": [ + "169.32" + ], + "filament_density": [ + "1.26" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_type": [ + "PPS-CF" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "2.8" + ], + "nozzle_temperature_range_low": [ + "310" + ], + "overhang_fan_threshold": [ + "25%" + ], + "required_nozzle_HRC": [ + "40" + ], + "temperature_vitrification": [ + "220" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PVA @BBL A1 0.2 nozzle.json index c3fc5949cb..8a3536fec4 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL A1 0.2 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PVA @BBL A1 0.2 nozzle", - "inherits": "Bambu PVA @base", - "from": "system", - "setting_id": "GFSS04_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "1" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "nozzle_temperature": [ - "240" - ], - "nozzle_temperature_initial_layer": [ - "240" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PVA @BBL A1 0.2 nozzle", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL A1.json b/resources/profiles/BBL/filament/Bambu PVA @BBL A1.json index 79f6b10740..67809d1d1d 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL A1.json @@ -1,43 +1,43 @@ { - "type": "filament", - "name": "Bambu PVA @BBL A1", - "inherits": "Bambu PVA @base", - "from": "system", - "setting_id": "GFSS04_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "nozzle_temperature": [ - "240" - ], - "nozzle_temperature_initial_layer": [ - "240" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PVA @BBL A1", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PVA @BBL A1M 0.2 nozzle.json index e53cb64460..6dccfe59de 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL A1M 0.2 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu PVA @BBL A1M 0.2 nozzle", - "inherits": "Bambu PVA @base", - "from": "system", - "setting_id": "GFSS04_07", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "1" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "nozzle_temperature": [ - "240" - ], - "nozzle_temperature_initial_layer": [ - "240" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PVA @BBL A1M 0.2 nozzle", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_07", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL A1M.json b/resources/profiles/BBL/filament/Bambu PVA @BBL A1M.json index 4b6abcbe98..84c4dff149 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL A1M.json @@ -1,43 +1,43 @@ { - "type": "filament", - "name": "Bambu PVA @BBL A1M", - "inherits": "Bambu PVA @base", - "from": "system", - "setting_id": "GFSS04_06", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "nozzle_temperature": [ - "240" - ], - "nozzle_temperature_initial_layer": [ - "240" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PVA @BBL A1M", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL A2L.json b/resources/profiles/BBL/filament/Bambu PVA @BBL A2L.json index 1738b4cd44..2d44398a94 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL A2L.json @@ -1,55 +1,55 @@ { - "type": "filament", - "name": "Bambu PVA @BBL A2L", - "inherits": "Bambu PVA @base", - "from": "system", - "setting_id": "GFSS04_23", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "240" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "nozzle_temperature": [ - "240" - ], - "nozzle_temperature_initial_layer": [ - "240" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu PVA @BBL A2L", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_23", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "240" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PVA @BBL H2C 0.4 nozzle.json index 2de71b03f5..2d3bbc69a2 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL H2C 0.4 nozzle.json @@ -1,177 +1,99 @@ { - "type": "filament", - "name": "Bambu PVA @BBL H2C 0.4 nozzle", - "inherits": "Bambu PVA @base", - "from": "system", - "setting_id": "GFSS04_17", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "200", - "200" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PVA @BBL H2C 0.4 nozzle", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_17", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "200", + "200", + "200" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PVA @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..9f53d23671 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL H2C 0.8 nozzle.json @@ -0,0 +1,100 @@ +{ + "type": "filament", + "name": "Bambu PVA @BBL H2C 0.8 nozzle", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_28", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_pre_cooling_temperature_nc": [ + "200", + "200" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "temperature_vitrification": [ + "40" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL H2C.json b/resources/profiles/BBL/filament/Bambu PVA @BBL H2C.json index dfe286ab95..6b228e64c4 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL H2C.json @@ -1,178 +1,99 @@ { - "type": "filament", - "name": "Bambu PVA @BBL H2C", - "inherits": "Bambu PVA @base", - "from": "system", - "setting_id": "GFSS04_18", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "200", - "200" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PVA @BBL H2C", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_18", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_pre_cooling_temperature_nc": [ + "200", + "200", + "200" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PVA @BBL H2D 0.6 nozzle.json new file mode 100644 index 0000000000..1c80ea9175 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL H2D 0.6 nozzle.json @@ -0,0 +1,83 @@ +{ + "type": "filament", + "name": "Bambu PVA @BBL H2D 0.6 nozzle", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_29", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PVA @BBL H2D 0.8 nozzle.json new file mode 100644 index 0000000000..e2bc140e43 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL H2D 0.8 nozzle.json @@ -0,0 +1,74 @@ +{ + "type": "filament", + "name": "Bambu PVA @BBL H2D 0.8 nozzle", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_30", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_preheat_temperature_delta": [ + "10", + "10" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL H2D.json b/resources/profiles/BBL/filament/Bambu PVA @BBL H2D.json index 5ee8e2b854..039a893fcc 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL H2D.json @@ -1,133 +1,66 @@ { - "type": "filament", - "name": "Bambu PVA @BBL H2D", - "inherits": "Bambu PVA @base", - "from": "system", - "setting_id": "GFSS04_10", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu PVA @BBL H2D", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_10", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PVA @BBL H2DP 0.6 nozzle.json new file mode 100644 index 0000000000..f8e2817dd6 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL H2DP 0.6 nozzle.json @@ -0,0 +1,70 @@ +{ + "type": "filament", + "name": "Bambu PVA @BBL H2DP 0.6 nozzle", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_31", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PVA @BBL H2DP 0.8 nozzle.json new file mode 100644 index 0000000000..c1f4135e0d --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL H2DP 0.8 nozzle.json @@ -0,0 +1,70 @@ +{ + "type": "filament", + "name": "Bambu PVA @BBL H2DP 0.8 nozzle", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_32", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PVA @BBL H2DP.json index f6640bb13a..22a98ea65f 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL H2DP.json @@ -1,133 +1,58 @@ { - "type": "filament", - "name": "Bambu PVA @BBL H2DP", - "inherits": "Bambu PVA @base", - "from": "system", - "setting_id": "GFSS04_14", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PVA @BBL H2DP", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_14", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PVA @BBL H2S 0.6 nozzle.json new file mode 100644 index 0000000000..28f3ae374f --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL H2S 0.6 nozzle.json @@ -0,0 +1,83 @@ +{ + "type": "filament", + "name": "Bambu PVA @BBL H2S 0.6 nozzle", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_36", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PVA @BBL H2S 0.8 nozzle.json new file mode 100644 index 0000000000..840b8da742 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL H2S 0.8 nozzle.json @@ -0,0 +1,74 @@ +{ + "type": "filament", + "name": "Bambu PVA @BBL H2S 0.8 nozzle", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_37", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL H2S.json b/resources/profiles/BBL/filament/Bambu PVA @BBL H2S.json index 99323c95b1..b2f03d3f71 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL H2S.json @@ -1,133 +1,71 @@ { - "type": "filament", - "name": "Bambu PVA @BBL H2S", - "inherits": "Bambu PVA @base", - "from": "system", - "setting_id": "GFSS04_20", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu PVA @BBL H2S", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_20", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PVA @BBL P1P 0.2 nozzle.json index c7e87f6c24..597e2d83ba 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL P1P 0.2 nozzle.json @@ -1,137 +1,64 @@ { - "type": "filament", - "name": "Bambu PVA @BBL P1P 0.2 nozzle", - "inherits": "Bambu PVA @base", - "from": "system", - "setting_id": "GFSS04_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PVA @BBL P1P 0.2 nozzle", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL P1P.json b/resources/profiles/BBL/filament/Bambu PVA @BBL P1P.json index 33df6781bc..4c98d516d1 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL P1P.json @@ -1,139 +1,66 @@ { - "type": "filament", - "name": "Bambu PVA @BBL P1P", - "inherits": "Bambu PVA @base", - "from": "system", - "setting_id": "GFSS04_02", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PVA @BBL P1P", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PVA @BBL P2S 0.6 nozzle.json new file mode 100644 index 0000000000..f585aa6396 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL P2S 0.6 nozzle.json @@ -0,0 +1,83 @@ +{ + "type": "filament", + "name": "Bambu PVA @BBL P2S 0.6 nozzle", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_33", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PVA @BBL P2S 0.8 nozzle.json new file mode 100644 index 0000000000..d6782c9504 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL P2S 0.8 nozzle.json @@ -0,0 +1,74 @@ +{ + "type": "filament", + "name": "Bambu PVA @BBL P2S 0.8 nozzle", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_34", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL P2S.json b/resources/profiles/BBL/filament/Bambu PVA @BBL P2S.json index 7b69e1ffaa..dcf65dc1ea 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL P2S.json @@ -1,173 +1,71 @@ { - "type": "filament", - "name": "Bambu PVA @BBL P2S", - "inherits": "Bambu PVA @base", - "from": "system", - "setting_id": "GFSS04_12", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PVA @BBL P2S", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_12", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu PVA @BBL X1C 0.2 nozzle.json index 8ac8473163..14dca0c469 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL X1C 0.2 nozzle.json @@ -1,122 +1,49 @@ { - "type": "filament", - "name": "Bambu PVA @BBL X1C 0.2 nozzle", - "inherits": "Bambu PVA @base", - "from": "system", - "setting_id": "GFSS04_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PVA @BBL X1C 0.2 nozzle", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_01", + "instantiation": "true", + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PVA @BBL X1C.json index 335ff38766..c54b3d4ed7 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL X1C.json @@ -1,130 +1,57 @@ { - "type": "filament", - "name": "Bambu PVA @BBL X1C", - "inherits": "Bambu PVA @base", - "from": "system", - "setting_id": "GFSS04_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PVA @BBL X1C", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_00", + "instantiation": "true", + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu PVA @BBL X2D 0.4 nozzle.json index a23bdf153c..7b8c06759d 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL X2D 0.4 nozzle.json @@ -1,272 +1,93 @@ { - "type": "filament", - "name": "Bambu PVA @BBL X2D 0.4 nozzle", - "inherits": "Bambu PVA @base", - "from": "system", - "setting_id": "GFSS04_08", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "240" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "240", - "240", - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240", - "240", - "240" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PVA @BBL X2D 0.4 nozzle", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_08", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu PVA @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..c12758141f --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL X2D 0.8 nozzle.json @@ -0,0 +1,95 @@ +{ + "type": "filament", + "name": "Bambu PVA @BBL X2D 0.8 nozzle", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_35", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "85", + "65", + "70" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu PVA @BBL X2D.json b/resources/profiles/BBL/filament/Bambu PVA @BBL X2D.json index 71151cf8e6..771634beda 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu PVA @BBL X2D.json @@ -1,273 +1,93 @@ { - "type": "filament", - "name": "Bambu PVA @BBL X2D", - "inherits": "Bambu PVA @base", - "from": "system", - "setting_id": "GFSS04_09", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "240" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "240", - "240", - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240", - "240", - "240" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu PVA @BBL X2D", + "inherits": "Bambu PVA @base", + "from": "system", + "setting_id": "GFSS04_09", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu PVA @base.json b/resources/profiles/BBL/filament/Bambu PVA @base.json index 1c6e0f2201..327bbf73a1 100644 --- a/resources/profiles/BBL/filament/Bambu PVA @base.json +++ b/resources/profiles/BBL/filament/Bambu PVA @base.json @@ -1,33 +1,33 @@ { - "type": "filament", - "name": "Bambu PVA @base", - "inherits": "fdm_filament_pva", - "from": "system", - "filament_id": "OFzyIxba", - "instantiation": "false", - "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.", - "filament_cost": [ - "79.98" - ], - "filament_density": [ - "1.27" - ], - "filament_max_volumetric_speed": [ - "6" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "nozzle_temperature_range_low": [ - "210" - ], - "slow_down_layer_time": [ - "7" - ], - "slow_down_min_speed": [ - "20" - ] -} + "type": "filament", + "name": "Bambu PVA @base", + "inherits": "fdm_filament_pva", + "from": "system", + "filament_id": "OFzyIxba", + "instantiation": "false", + "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.", + "filament_cost": [ + "73.98" + ], + "filament_density": [ + "1.27" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "210" + ], + "slow_down_layer_time": [ + "7" + ], + "slow_down_min_speed": [ + "20" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL A1.json b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL A1.json index 4427832ec4..8a477d87ec 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL A1.json @@ -1,13 +1,13 @@ { - "type": "filament", - "name": "Bambu Support For PA/PET @BBL A1", - "inherits": "Bambu Support For PA/PET @base", - "from": "system", - "setting_id": "GFSS03_02", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PA/PET @BBL A1", + "inherits": "Bambu Support For PA/PET @base", + "from": "system", + "setting_id": "GFSS03_02", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2C 0.4 nozzle.json index 9492cfe2fc..957b4d0114 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2C 0.4 nozzle.json @@ -1,174 +1,96 @@ { - "type": "filament", - "name": "Bambu Support For PA/PET @BBL H2C 0.4 nozzle", - "inherits": "Bambu Support For PA/PET @base", - "from": "system", - "setting_id": "GFSS03_08", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "240", - "240" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280" - ], - "retraction_distances_when_ec": [ - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "75" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support For PA/PET @BBL H2C 0.4 nozzle", + "inherits": "Bambu Support For PA/PET @base", + "from": "system", + "setting_id": "GFSS03_08", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "240", + "240", + "240" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280" + ], + "retraction_distances_when_ec": [ + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "75" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2C.json b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2C.json index cfe8734400..2e4b5d0455 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2C.json @@ -1,175 +1,97 @@ { - "type": "filament", - "name": "Bambu Support For PA/PET @BBL H2C", - "inherits": "Bambu Support For PA/PET @base", - "from": "system", - "setting_id": "GFSS03_09", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "240", - "240" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280" - ], - "retraction_distances_when_ec": [ - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "75" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support For PA/PET @BBL H2C", + "inherits": "Bambu Support For PA/PET @base", + "from": "system", + "setting_id": "GFSS03_09", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "240", + "240", + "240" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280" + ], + "retraction_distances_when_ec": [ + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "75" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2D.json b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2D.json index c7b5b55465..0b9cf45682 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2D.json @@ -1,130 +1,65 @@ { - "type": "filament", - "name": "Bambu Support For PA/PET @BBL H2D", - "inherits": "Bambu Support For PA/PET @base", - "from": "system", - "setting_id": "GFSS03_03", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280" - ], - "retraction_distances_when_ec": [ - "4", - "4" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support For PA/PET @BBL H2D", + "inherits": "Bambu Support For PA/PET @base", + "from": "system", + "setting_id": "GFSS03_03", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280" + ], + "retraction_distances_when_ec": [ + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2DP.json index 4261166266..e1a428af28 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2DP.json @@ -1,130 +1,57 @@ { - "type": "filament", - "name": "Bambu Support For PA/PET @BBL H2DP", - "inherits": "Bambu Support For PA/PET @base", - "from": "system", - "setting_id": "GFSS03_05", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280" - ], - "retraction_distances_when_ec": [ - "4", - "4" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support For PA/PET @BBL H2DP", + "inherits": "Bambu Support For PA/PET @base", + "from": "system", + "setting_id": "GFSS03_05", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280" + ], + "retraction_distances_when_ec": [ + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2S.json b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2S.json index dcde393538..eb90486d2c 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL H2S.json @@ -1,130 +1,70 @@ { - "type": "filament", - "name": "Bambu Support For PA/PET @BBL H2S", - "inherits": "Bambu Support For PA/PET @base", - "from": "system", - "setting_id": "GFSS03_10", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support For PA/PET @BBL H2S", + "inherits": "Bambu Support For PA/PET @base", + "from": "system", + "setting_id": "GFSS03_10", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL P2S.json b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL P2S.json index 496a4c2d57..21492b5673 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL P2S.json @@ -1,170 +1,70 @@ { - "type": "filament", - "name": "Bambu Support For PA/PET @BBL P2S", - "inherits": "Bambu Support For PA/PET @base", - "from": "system", - "setting_id": "GFSS03_04", - "instantiation": "true", - "activate_air_filtration": [ - "0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu Support For PA/PET @BBL P2S", + "inherits": "Bambu Support For PA/PET @base", + "from": "system", + "setting_id": "GFSS03_04", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X1C.json b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X1C.json index bdeddb678f..22e7897bfc 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X1C.json @@ -1,133 +1,60 @@ { - "type": "filament", - "name": "Bambu Support For PA/PET @BBL X1C", - "inherits": "Bambu Support For PA/PET @base", - "from": "system", - "setting_id": "GFSS03_00", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PA/PET @BBL X1C", + "inherits": "Bambu Support For PA/PET @base", + "from": "system", + "setting_id": "GFSS03_00", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X2D 0.4 nozzle.json index 46283ebba8..864a3a15cd 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X2D 0.4 nozzle.json @@ -1,269 +1,90 @@ { - "type": "filament", - "name": "Bambu Support For PA/PET @BBL X2D 0.4 nozzle", - "inherits": "Bambu Support For PA/PET @base", - "from": "system", - "setting_id": "GFSS03_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_extruder_compatibility": [ - "16" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "280" - ], - "nozzle_temperature": [ - "280", - "280", - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280", - "280", - "280" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu Support For PA/PET @BBL X2D 0.4 nozzle", + "inherits": "Bambu Support For PA/PET @base", + "from": "system", + "setting_id": "GFSS03_06", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "280" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "280", + "280", + "280", + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280", + "280", + "280", + "280" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X2D.json b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X2D.json index 506c188475..4106ff746d 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu Support For PA PET @BBL X2D.json @@ -1,270 +1,91 @@ { - "type": "filament", - "name": "Bambu Support For PA/PET @BBL X2D", - "inherits": "Bambu Support For PA/PET @base", - "from": "system", - "setting_id": "GFSS03_07", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_extruder_compatibility": [ - "16" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "280" - ], - "nozzle_temperature": [ - "280", - "280", - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280", - "280", - "280" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu Support For PA/PET @BBL X2D", + "inherits": "Bambu Support For PA/PET @base", + "from": "system", + "setting_id": "GFSS03_07", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "280" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "280", + "280", + "280", + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280", + "280", + "280", + "280" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PA PET @base.json b/resources/profiles/BBL/filament/Bambu Support For PA PET @base.json index 70724ff11f..0f4c717ebd 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PA PET @base.json +++ b/resources/profiles/BBL/filament/Bambu Support For PA PET @base.json @@ -1,29 +1,29 @@ { - "type": "filament", - "name": "Bambu Support For PA/PET @base", - "inherits": "fdm_filament_pa", - "from": "system", - "filament_id": "OFMTK0UC", - "instantiation": "false", - "description": "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.", - "fan_cooling_layer_time": [ - "10" - ], - "filament_cost": [ - "34.99" - ], - "filament_density": [ - "1.22" - ], - "filament_is_support": [ - "1" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "filament_adhesiveness_category": [ - "703" - ], + "type": "filament", + "name": "Bambu Support For PA/PET @base", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "OFMTK0UC", + "instantiation": "false", + "description": "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.", + "fan_cooling_layer_time": [ + "10" + ], + "filament_cost": [ + "34.99" + ], + "filament_density": [ + "1.22" + ], + "filament_is_support": [ + "1" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "filament_adhesiveness_category": [ + "703" + ], "filament_dev_chamber_drying_time": [ "16" ], @@ -42,16 +42,16 @@ "filament_dev_drying_softening_temperature": [ "85" ], - "nozzle_temperature": [ - "280" - ], - "nozzle_temperature_initial_layer": [ - "280" - ], - "required_nozzle_HRC": [ - "3" - ], - "slow_down_layer_time": [ - "6" - ] -} + "nozzle_temperature": [ + "280" + ], + "nozzle_temperature_initial_layer": [ + "280" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_layer_time": [ + "6" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A1 0.2 nozzle.json index f860127756..c6bef4c77e 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A1 0.2 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL A1 0.2 nozzle", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "0.5" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "nozzle_temperature": [ - "240" - ], - "nozzle_temperature_initial_layer": [ - "240" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL A1 0.2 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "0.5" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A1.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A1.json index 09a786b1c5..da962db9cb 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A1.json @@ -1,34 +1,34 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL A1", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL A1", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A1M 0.2 nozzle.json index 811c38f3ef..f02e4de3c2 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A1M 0.2 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL A1M 0.2 nozzle", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "0.5" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature": [ - "240" - ], - "nozzle_temperature_initial_layer": [ - "240" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL A1M 0.2 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "0.5" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A1M.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A1M.json index d483afe734..4a73ea4aca 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A1M.json @@ -1,34 +1,34 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL A1M", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_00", - "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" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL A1M", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_00", + "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" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A2L 0.2 nozzle.json index fefb849bb0..5a8c05f41c 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A2L 0.2 nozzle.json @@ -1,62 +1,62 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL A2L 0.2 nozzle", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_23", - "instantiation": "true", - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "240" - ], - "filament_max_volumetric_speed": [ - "0.5" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature": [ - "240" - ], - "nozzle_temperature_initial_layer": [ - "240" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "40" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL A2L 0.2 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_23", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "240" + ], + "filament_max_volumetric_speed": [ + "0.5" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "40" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A2L 0.6 nozzle.json index 33bc2071f4..42afb75252 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A2L 0.6 nozzle.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL A2L 0.6 nozzle", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_32", - "instantiation": "true", - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "pre_start_fan_time": [ - "2" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL A2L 0.6 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_32", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A2L 0.8 nozzle.json index fb8f803e75..377e78d044 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A2L 0.8 nozzle.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL A2L 0.8 nozzle", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_33", - "instantiation": "true", - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "pre_start_fan_time": [ - "2" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL A2L 0.8 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_33", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A2L.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A2L.json index e4435583c1..f616b22b35 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL A2L.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL A2L", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_24", - "instantiation": "true", - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "pre_start_fan_time": [ - "2" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL A2L", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_24", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2C 0.2 nozzle.json index 725eb7afbf..50022ade4b 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2C 0.2 nozzle.json @@ -1,186 +1,97 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL H2C 0.2 nozzle", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_20", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "20" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "200", - "200" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL H2C 0.2 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_20", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "200", + "200" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2C 0.4 nozzle.json index 7186e97169..c8b6e555c3 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2C 0.4 nozzle.json @@ -1,186 +1,108 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL H2C 0.4 nozzle", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_21", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "20" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu Support For PLA @BBL H2C 0.4 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_21", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..6186fbbfb1 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2C 0.8 nozzle.json @@ -0,0 +1,109 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA @BBL H2C 0.8 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_34", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2C.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2C.json index a98e4e44c6..ccdcb88f8b 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2C.json @@ -1,187 +1,108 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL H2C", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_22", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "20" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu Support For PLA @BBL H2C", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_22", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2D 0.2 nozzle.json index 8d0e7028e2..9ffdfdde10 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2D 0.2 nozzle.json @@ -1,140 +1,69 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL H2D 0.2 nozzle", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_06", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL H2D 0.2 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_06", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2D 0.6 nozzle.json new file mode 100644 index 0000000000..0157469f7b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2D 0.6 nozzle.json @@ -0,0 +1,93 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA @BBL H2D 0.6 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_35", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2D 0.8 nozzle.json new file mode 100644 index 0000000000..18f993668b --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2D 0.8 nozzle.json @@ -0,0 +1,85 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA @BBL H2D 0.8 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_36", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_preheat_temperature_delta": [ + "10", + "10" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2D.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2D.json index 3ff5a8b3c5..224744fbe2 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2D.json @@ -1,142 +1,76 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL H2D", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_07", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL H2D", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_07", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "15" + ], + "fan_min_speed": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2DP 0.2 nozzle.json index b42223fd66..6d3d64f4e4 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2DP 0.2 nozzle.json @@ -1,140 +1,69 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL H2DP 0.2 nozzle", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_17", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL H2DP 0.2 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_17", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2DP 0.6 nozzle.json new file mode 100644 index 0000000000..96927d4949 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2DP 0.6 nozzle.json @@ -0,0 +1,81 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA @BBL H2DP 0.6 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_37", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2DP 0.8 nozzle.json new file mode 100644 index 0000000000..1790f3dc7e --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2DP 0.8 nozzle.json @@ -0,0 +1,81 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA @BBL H2DP 0.8 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_38", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2DP.json index a2e1bdc4f6..ddf96b9502 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2DP.json @@ -1,142 +1,69 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL H2DP", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_18", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu Support For PLA @BBL H2DP", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_18", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2S 0.2 nozzle.json index c17dd50e41..c3bc4b262f 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2S 0.2 nozzle.json @@ -1,140 +1,81 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL H2S 0.2 nozzle", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_09", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL H2S 0.2 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2S 0.6 nozzle.json new file mode 100644 index 0000000000..e1a5cabe18 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2S 0.6 nozzle.json @@ -0,0 +1,98 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA @BBL H2S 0.6 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_39", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2S 0.8 nozzle.json new file mode 100644 index 0000000000..3c6c49d850 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2S 0.8 nozzle.json @@ -0,0 +1,89 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA @BBL H2S 0.8 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_40", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2S.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2S.json index 9545e3d9cb..9a65ce122d 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL H2S.json @@ -1,142 +1,86 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL H2S", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_08", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu Support For PLA @BBL H2S", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_08", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL P2S 0.2 nozzle.json index 1858c1400d..67d1b7513c 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL P2S 0.2 nozzle.json @@ -1,177 +1,78 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL P2S 0.2 nozzle", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_15", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL P2S 0.2 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_15", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL P2S 0.6 nozzle.json new file mode 100644 index 0000000000..9e64493ce5 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL P2S 0.6 nozzle.json @@ -0,0 +1,89 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA @BBL P2S 0.6 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_41", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL P2S 0.8 nozzle.json new file mode 100644 index 0000000000..2ddb2fd157 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL P2S 0.8 nozzle.json @@ -0,0 +1,80 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA @BBL P2S 0.8 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_42", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL P2S.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL P2S.json index a7d8283743..6665caec1e 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL P2S.json @@ -1,173 +1,77 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL P2S", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_16", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu Support For PLA @BBL P2S", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_16", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X1C 0.2 nozzle.json index 2de6cd45de..74ccf5548c 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X1C 0.2 nozzle.json @@ -1,122 +1,49 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL X1C 0.2 nozzle", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL X1C 0.2 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_01", + "instantiation": "true", + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X1C.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X1C.json index a188f11fcb..a1050cd162 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X1C.json @@ -1,130 +1,57 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL X1C", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_02", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL X1C", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_02", + "instantiation": "true", + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.2 nozzle.json index 4a29bf79fe..3876e3f08a 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.2 nozzle.json @@ -1,272 +1,83 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL X2D 0.2 nozzle", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_13", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5", - "0.5", - "0.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "240" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "240", - "240", - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240", - "240", - "240" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL X2D 0.2 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_13", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.4 nozzle.json index 82731fa9e9..f6241c25d3 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.4 nozzle.json @@ -1,278 +1,99 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL X2D 0.4 nozzle", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_14", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "20" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu Support For PLA @BBL X2D 0.4 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_14", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..48a9ea046a --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D 0.8 nozzle.json @@ -0,0 +1,95 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA @BBL X2D 0.8 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_43", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D.json b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D.json index 8d3929fed5..50c702e6a4 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @BBL X2D.json @@ -1,273 +1,93 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL X2D", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_19", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu Support For PLA @BBL X2D", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_19", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA @base.json b/resources/profiles/BBL/filament/Bambu Support For PLA @base.json index 495291a3cf..aba549b864 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA @base.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA @base.json @@ -1,31 +1,28 @@ { - "type": "filament", - "name": "Bambu Support For PLA @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFAnyRUI", - "instantiation": "false", - "description": "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.", - "cool_plate_temp": [ - "40" - ], - "cool_plate_temp_initial_layer": [ - "40" - ], - "filament_cost": [ - "69.98" - ], - "filament_density": [ - "1.30" - ], - "filament_is_support": [ - "1" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "filament_adhesiveness_category": [ - "702" + "type": "filament", + "name": "Bambu Support For PLA @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFAnyRUI", + "instantiation": "false", + "description": "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.", + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "filament_adhesiveness_category": [ + "702" + ], + "filament_cost": [ + "39.98" + ], + "filament_density": [ + "1.30" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "50" ], "filament_dev_ams_drying_temperature": [ "60", @@ -33,16 +30,19 @@ "50", "50" ], - "filament_dev_ams_drying_heat_distortion_temperature": [ - "50" - ], "filament_dev_drying_softening_temperature": [ "55" - ], - "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}" - ] -} + ], + "filament_is_support": [ + "1" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A1 0.2 nozzle.json index 42d6db6223..db0f6ce2f1 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A1 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL A1 0.2 nozzle", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_07", - "instantiation": "true", - "eng_plate_temp": [ - "65" - ], - "eng_plate_temp_initial_layer": [ - "65" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "0.5" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL A1 0.2 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_07", + "instantiation": "true", + "eng_plate_temp": [ + "65" + ], + "eng_plate_temp_initial_layer": [ + "65" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "0.5" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A1.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A1.json index decef700d6..e0cb4210a7 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A1.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL A1", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_06", - "instantiation": "true", - "eng_plate_temp": [ - "65" - ], - "eng_plate_temp_initial_layer": [ - "65" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL A1", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_06", + "instantiation": "true", + "eng_plate_temp": [ + "65" + ], + "eng_plate_temp_initial_layer": [ + "65" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A1M 0.2 nozzle.json index 6cf17252db..90920ebe8c 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A1M 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL A1M 0.2 nozzle", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_05", - "instantiation": "true", - "eng_plate_temp": [ - "65" - ], - "eng_plate_temp_initial_layer": [ - "65" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "0.5" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL A1M 0.2 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_05", + "instantiation": "true", + "eng_plate_temp": [ + "65" + ], + "eng_plate_temp_initial_layer": [ + "65" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "0.5" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A1M.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A1M.json index 05f3bfa985..fcbd1bb645 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A1M.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL A1M", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_04", - "instantiation": "true", - "eng_plate_temp": [ - "65" - ], - "eng_plate_temp_initial_layer": [ - "65" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL A1M", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_04", + "instantiation": "true", + "eng_plate_temp": [ + "65" + ], + "eng_plate_temp_initial_layer": [ + "65" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A2L 0.2 nozzle.json index 84b2f49104..a3cd0a70f0 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A2L 0.2 nozzle.json @@ -1,53 +1,53 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL A2L 0.2 nozzle", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_22", - "instantiation": "true", - "eng_plate_temp": [ - "65" - ], - "eng_plate_temp_initial_layer": [ - "65" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "210" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_max_volumetric_speed": [ - "0.5" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "40" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL A2L 0.2 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_22", + "instantiation": "true", + "eng_plate_temp": [ + "65" + ], + "eng_plate_temp_initial_layer": [ + "65" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "210" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_max_volumetric_speed": [ + "0.5" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "40" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A2L.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A2L.json index e3d6f909b4..714c839c33 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL A2L.json @@ -1,49 +1,49 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL A2L", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_23", - "instantiation": "true", - "eng_plate_temp": [ - "65" - ], - "eng_plate_temp_initial_layer": [ - "65" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "210" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "pre_start_fan_time": [ - "2" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL A2L", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_23", + "instantiation": "true", + "eng_plate_temp": [ + "65" + ], + "eng_plate_temp_initial_layer": [ + "65" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "210" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2C 0.2 nozzle.json index 89b94f0622..00c26d3422 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2C 0.2 nozzle.json @@ -1,180 +1,91 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL H2C 0.2 nozzle", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_19", - "instantiation": "true", - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "supertack_plate_temp": [ - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL H2C 0.2 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_19", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "supertack_plate_temp": [ + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "temperature_vitrification": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2C 0.4 nozzle.json index 784fea9e45..4af8d221ba 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2C 0.4 nozzle.json @@ -1,180 +1,102 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL H2C 0.4 nozzle", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_17", - "instantiation": "true", - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "170", - "170" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "supertack_plate_temp": [ - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL H2C 0.4 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_17", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "170", + "170", + "170" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "supertack_plate_temp": [ + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..9cc5df6520 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2C 0.8 nozzle.json @@ -0,0 +1,103 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL H2C 0.8 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_31", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_pre_cooling_temperature_nc": [ + "170", + "170" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "temperature_vitrification": [ + "40" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2C.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2C.json index 1bbef82d84..bc71874b44 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2C.json @@ -1,181 +1,102 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL H2C", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_18", - "instantiation": "true", - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "170", - "170" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "supertack_plate_temp": [ - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL H2C", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_18", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_pre_cooling_temperature_nc": [ + "170", + "170", + "170" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "temperature_vitrification": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2D 0.2 nozzle.json index bdebe07335..600ea2a5e3 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2D 0.2 nozzle.json @@ -1,134 +1,60 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL H2D 0.2 nozzle", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_09", - "instantiation": "true", - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL H2D 0.2 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_09", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2D 0.6 nozzle.json new file mode 100644 index 0000000000..0b5f655fcb --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2D 0.6 nozzle.json @@ -0,0 +1,84 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL H2D 0.6 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_32", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2D 0.8 nozzle.json new file mode 100644 index 0000000000..38dfd26575 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2D 0.8 nozzle.json @@ -0,0 +1,76 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL H2D 0.8 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_33", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_preheat_temperature_delta": [ + "10", + "10" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2D.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2D.json index 698a644a63..658e24aee0 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2D.json @@ -1,136 +1,73 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL H2D", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_08", - "instantiation": "true", - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL H2D", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_08", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "fan_max_speed": [ + "15" + ], + "fan_min_speed": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "220", + "210", + "210" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2DP 0.2 nozzle.json index 31d5651149..ca040b0b4b 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2DP 0.2 nozzle.json @@ -1,134 +1,60 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL H2DP 0.2 nozzle", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_13", - "instantiation": "true", - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL H2DP 0.2 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_13", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2DP 0.6 nozzle.json new file mode 100644 index 0000000000..2ee8345749 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2DP 0.6 nozzle.json @@ -0,0 +1,72 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL H2DP 0.6 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_39", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2DP 0.8 nozzle.json new file mode 100644 index 0000000000..6834cf6a30 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2DP 0.8 nozzle.json @@ -0,0 +1,72 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL H2DP 0.8 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_40", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2DP.json index ac0a8df2af..3d97fa3d3e 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2DP.json @@ -1,136 +1,60 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL H2DP", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_12", - "instantiation": "true", - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL H2DP", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_12", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2S 0.2 nozzle.json index f9183fc382..0279d24189 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2S 0.2 nozzle.json @@ -1,134 +1,72 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL H2S 0.2 nozzle", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_21", - "instantiation": "true", - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL H2S 0.2 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_21", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2S 0.6 nozzle.json new file mode 100644 index 0000000000..c16fbebfef --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2S 0.6 nozzle.json @@ -0,0 +1,89 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL H2S 0.6 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_34", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2S 0.8 nozzle.json new file mode 100644 index 0000000000..8bd6e13725 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2S 0.8 nozzle.json @@ -0,0 +1,80 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL H2S 0.8 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_35", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2S.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2S.json index ad86a460f4..34a50ef5c8 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL H2S.json @@ -1,136 +1,77 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL H2S", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_20", - "instantiation": "true", - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL H2S", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_20", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P1P 0.2 nozzle.json index 9e473560f6..854ab19880 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P1P 0.2 nozzle.json @@ -1,137 +1,72 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL P1P 0.2 nozzle", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_03", - "instantiation": "true", - "eng_plate_temp": [ - "65" - ], - "eng_plate_temp_initial_layer": [ - "65" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL P1P 0.2 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_03", + "instantiation": "true", + "eng_plate_temp": [ + "65" + ], + "eng_plate_temp_initial_layer": [ + "65" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P1P.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P1P.json index 272ea0515d..c2da61c41c 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P1P.json @@ -1,139 +1,74 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL P1P", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_02", - "instantiation": "true", - "eng_plate_temp": [ - "65" - ], - "eng_plate_temp_initial_layer": [ - "65" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL P1P", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_02", + "instantiation": "true", + "eng_plate_temp": [ + "65" + ], + "eng_plate_temp_initial_layer": [ + "65" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P2S 0.2 nozzle.json index 2a05c968b9..32a5f9cdaa 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P2S 0.2 nozzle.json @@ -1,171 +1,73 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL P2S 0.2 nozzle", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_11", - "instantiation": "true", - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL P2S 0.2 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_11", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P2S 0.6 nozzle.json new file mode 100644 index 0000000000..b080aa58f1 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P2S 0.6 nozzle.json @@ -0,0 +1,91 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL P2S 0.6 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_36", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P2S 0.8 nozzle.json new file mode 100644 index 0000000000..a1cf1530a4 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P2S 0.8 nozzle.json @@ -0,0 +1,81 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL P2S 0.8 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_37", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P2S.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P2S.json index 53748045b1..880ec62cc8 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL P2S.json @@ -1,173 +1,79 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL P2S", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_10", - "instantiation": "true", - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL P2S", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_10", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X1C 0.2 nozzle.json index cf5d8c5006..d3d09d97a1 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X1C 0.2 nozzle.json @@ -1,128 +1,63 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL X1C 0.2 nozzle", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_01", - "instantiation": "true", - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL X1C 0.2 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_01", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X1C.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X1C.json index 036657f387..3d6512aa13 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X1C.json @@ -1,136 +1,71 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL X1C", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_00", - "instantiation": "true", - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL X1C", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_00", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.2 nozzle.json index 75f649146b..10709e5ec1 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.2 nozzle.json @@ -1,275 +1,95 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL X2D 0.2 nozzle", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_16", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_extruder_compatibility": [ - "24" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5", - "0.5", - "0.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "210" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "210", - "210", - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210", - "210", - "210" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL X2D 0.2 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_16", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "24" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.4 nozzle.json index a55c1c8ef3..9e5c65749b 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.4 nozzle.json @@ -1,272 +1,104 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL X2D 0.4 nozzle", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_14", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "210" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "210", - "210", - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210", - "210", - "210" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL X2D 0.4 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_14", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..03e8f04d76 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D 0.8 nozzle.json @@ -0,0 +1,104 @@ +{ + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL X2D 0.8 nozzle", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_38", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "60", + "60", + "50", + "50" + ], + "filament_dev_ams_drying_time": [ + "12", + "12", + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D.json index 6acc6ad0bf..9cfbde810a 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @BBL X2D.json @@ -1,273 +1,104 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @BBL X2D", - "inherits": "Bambu Support For PLA/PETG @base", - "from": "system", - "setting_id": "GFSS05_15", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "210" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "210", - "210", - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210", - "210", - "210" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu Support For PLA/PETG @BBL X2D", + "inherits": "Bambu Support For PLA/PETG @base", + "from": "system", + "setting_id": "GFSS05_15", + "instantiation": "true", + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @base.json b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @base.json index 6a6ff6aa6b..d4bfb77aab 100644 --- a/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @base.json +++ b/resources/profiles/BBL/filament/Bambu Support For PLA-PETG @base.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "Bambu Support For PLA/PETG @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFIfnzxC", - "instantiation": "false", - "description": "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.", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "20" - ], - "filament_cost": [ - "69.98" - ], - "filament_density": [ - "1.19" - ], - "filament_is_support": [ - "1" - ], - "filament_max_volumetric_speed": [ - "6" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "filament_adhesiveness_category": [ - "705" + "type": "filament", + "name": "Bambu Support For PLA/PETG @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFIfnzxC", + "instantiation": "false", + "description": "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.", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "20" + ], + "filament_cost": [ + "63.98" + ], + "filament_density": [ + "1.19" + ], + "filament_is_support": [ + "1" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "filament_adhesiveness_category": [ + "705" ], "filament_dev_chamber_drying_bed_temperature": [ "80" @@ -47,29 +47,29 @@ ], "filament_dev_drying_softening_temperature": [ "55" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature": [ - "210" - ], - "nozzle_temperature_initial_layer": [ - "210" - ], - "slow_down_layer_time": [ - "8" - ], - "supertack_plate_temp_initial_layer": [ - "0" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ] -} + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "slow_down_layer_time": [ + "8" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support G @BBL A1.json b/resources/profiles/BBL/filament/Bambu Support G @BBL A1.json index a2e728b26c..bb28afc0fa 100644 --- a/resources/profiles/BBL/filament/Bambu Support G @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu Support G @BBL A1.json @@ -1,13 +1,13 @@ { - "type": "filament", - "name": "Bambu Support G @BBL A1", - "inherits": "Bambu Support G @base", - "from": "system", - "setting_id": "GFSS01_01", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support G @BBL A1", + "inherits": "Bambu Support G @base", + "from": "system", + "setting_id": "GFSS01_01", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support G @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support G @BBL H2C 0.4 nozzle.json index 00c4001de7..bd669dd7ca 100644 --- a/resources/profiles/BBL/filament/Bambu Support G @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support G @BBL H2C 0.4 nozzle.json @@ -1,174 +1,96 @@ { - "type": "filament", - "name": "Bambu Support G @BBL H2C 0.4 nozzle", - "inherits": "Bambu Support G @base", - "from": "system", - "setting_id": "GFSS01_07", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "240", - "240" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280" - ], - "retraction_distances_when_ec": [ - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support G @BBL H2C 0.4 nozzle", + "inherits": "Bambu Support G @base", + "from": "system", + "setting_id": "GFSS01_07", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "240", + "240", + "240" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280" + ], + "retraction_distances_when_ec": [ + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support G @BBL H2C.json b/resources/profiles/BBL/filament/Bambu Support G @BBL H2C.json index 8237c4f297..6796582027 100644 --- a/resources/profiles/BBL/filament/Bambu Support G @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu Support G @BBL H2C.json @@ -1,175 +1,97 @@ { - "type": "filament", - "name": "Bambu Support G @BBL H2C", - "inherits": "Bambu Support G @base", - "from": "system", - "setting_id": "GFSS01_08", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "240", - "240" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280" - ], - "retraction_distances_when_ec": [ - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support G @BBL H2C", + "inherits": "Bambu Support G @base", + "from": "system", + "setting_id": "GFSS01_08", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "240", + "240", + "240" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280" + ], + "retraction_distances_when_ec": [ + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support G @BBL H2D.json b/resources/profiles/BBL/filament/Bambu Support G @BBL H2D.json index 0b8d4a1ffd..bf5156f0d6 100644 --- a/resources/profiles/BBL/filament/Bambu Support G @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu Support G @BBL H2D.json @@ -1,130 +1,65 @@ { - "type": "filament", - "name": "Bambu Support G @BBL H2D", - "inherits": "Bambu Support G @base", - "from": "system", - "setting_id": "GFSS01_02", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280" - ], - "retraction_distances_when_ec": [ - "4", - "4" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support G @BBL H2D", + "inherits": "Bambu Support G @base", + "from": "system", + "setting_id": "GFSS01_02", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280" + ], + "retraction_distances_when_ec": [ + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support G @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu Support G @BBL H2DP.json index a20e1599d4..b95357fd32 100644 --- a/resources/profiles/BBL/filament/Bambu Support G @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu Support G @BBL H2DP.json @@ -1,130 +1,57 @@ { - "type": "filament", - "name": "Bambu Support G @BBL H2DP", - "inherits": "Bambu Support G @base", - "from": "system", - "setting_id": "GFSS01_04", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280" - ], - "retraction_distances_when_ec": [ - "4", - "4" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support G @BBL H2DP", + "inherits": "Bambu Support G @base", + "from": "system", + "setting_id": "GFSS01_04", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280" + ], + "retraction_distances_when_ec": [ + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support G @BBL H2S.json b/resources/profiles/BBL/filament/Bambu Support G @BBL H2S.json index f7a1d459de..18617a17dc 100644 --- a/resources/profiles/BBL/filament/Bambu Support G @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu Support G @BBL H2S.json @@ -1,130 +1,70 @@ { - "type": "filament", - "name": "Bambu Support G @BBL H2S", - "inherits": "Bambu Support G @base", - "from": "system", - "setting_id": "GFSS01_09", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support G @BBL H2S", + "inherits": "Bambu Support G @base", + "from": "system", + "setting_id": "GFSS01_09", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support G @BBL P2S.json b/resources/profiles/BBL/filament/Bambu Support G @BBL P2S.json index 848c02a81c..37046fc70b 100644 --- a/resources/profiles/BBL/filament/Bambu Support G @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu Support G @BBL P2S.json @@ -1,167 +1,67 @@ { - "type": "filament", - "name": "Bambu Support G @BBL P2S", - "inherits": "Bambu Support G @base", - "from": "system", - "setting_id": "GFSS01_03", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu Support G @BBL P2S", + "inherits": "Bambu Support G @base", + "from": "system", + "setting_id": "GFSS01_03", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support G @BBL X1C.json b/resources/profiles/BBL/filament/Bambu Support G @BBL X1C.json index 273f0cde20..bbb6df001d 100644 --- a/resources/profiles/BBL/filament/Bambu Support G @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu Support G @BBL X1C.json @@ -1,127 +1,54 @@ { - "type": "filament", - "name": "Bambu Support G @BBL X1C", - "inherits": "Bambu Support G @base", - "from": "system", - "setting_id": "GFSS01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support G @BBL X1C", + "inherits": "Bambu Support G @base", + "from": "system", + "setting_id": "GFSS01", + "instantiation": "true", + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support G @BBL X1E.json b/resources/profiles/BBL/filament/Bambu Support G @BBL X1E.json index 9baf0de057..4672cda4c0 100644 --- a/resources/profiles/BBL/filament/Bambu Support G @BBL X1E.json +++ b/resources/profiles/BBL/filament/Bambu Support G @BBL X1E.json @@ -1,124 +1,51 @@ { - "type": "filament", - "name": "Bambu Support G @BBL X1E", - "inherits": "Bambu Support G @base", - "from": "system", - "setting_id": "GFSS01_00", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support G @BBL X1E", + "inherits": "Bambu Support G @base", + "from": "system", + "setting_id": "GFSS01_00", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support G @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support G @BBL X2D 0.4 nozzle.json index 4238d60d8e..b9e3ff0c56 100644 --- a/resources/profiles/BBL/filament/Bambu Support G @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support G @BBL X2D 0.4 nozzle.json @@ -1,266 +1,87 @@ { - "type": "filament", - "name": "Bambu Support G @BBL X2D 0.4 nozzle", - "inherits": "Bambu Support G @base", - "from": "system", - "setting_id": "GFSS01_05", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "280" - ], - "nozzle_temperature": [ - "280", - "280", - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280", - "280", - "280" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu Support G @BBL X2D 0.4 nozzle", + "inherits": "Bambu Support G @base", + "from": "system", + "setting_id": "GFSS01_05", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "280" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "280", + "280", + "280", + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280", + "280", + "280", + "280" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support G @BBL X2D.json b/resources/profiles/BBL/filament/Bambu Support G @BBL X2D.json index 5da2ec0c7c..99748688e1 100644 --- a/resources/profiles/BBL/filament/Bambu Support G @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu Support G @BBL X2D.json @@ -1,267 +1,88 @@ { - "type": "filament", - "name": "Bambu Support G @BBL X2D", - "inherits": "Bambu Support G @base", - "from": "system", - "setting_id": "GFSS01_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "280" - ], - "nozzle_temperature": [ - "280", - "280", - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280", - "280", - "280" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu Support G @BBL X2D", + "inherits": "Bambu Support G @base", + "from": "system", + "setting_id": "GFSS01_06", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "280" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "280", + "280", + "280", + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280", + "280", + "280", + "280", + "280" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support G @base.json b/resources/profiles/BBL/filament/Bambu Support G @base.json index 38c7f500f5..7cf9fc5ca1 100644 --- a/resources/profiles/BBL/filament/Bambu Support G @base.json +++ b/resources/profiles/BBL/filament/Bambu Support G @base.json @@ -1,28 +1,28 @@ { - "type": "filament", - "name": "Bambu Support G @base", - "inherits": "fdm_filament_pa", - "from": "system", - "filament_id": "OFQHiNJs", - "instantiation": "false", - "description": "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.", - "fan_cooling_layer_time": [ - "10" - ], - "filament_cost": [ - "34.99" - ], - "filament_density": [ - "1.22" - ], - "filament_is_support": [ - "1" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "filament_adhesiveness_category": [ - "701" + "type": "filament", + "name": "Bambu Support G @base", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "OFQHiNJs", + "instantiation": "false", + "description": "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.", + "fan_cooling_layer_time": [ + "10" + ], + "filament_cost": [ + "34.99" + ], + "filament_density": [ + "1.22" + ], + "filament_is_support": [ + "1" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "filament_adhesiveness_category": [ + "701" ], "filament_dev_chamber_drying_time": [ "16" @@ -41,17 +41,17 @@ ], "filament_dev_drying_softening_temperature": [ "85" - ], - "nozzle_temperature": [ - "280" - ], - "nozzle_temperature_initial_layer": [ - "280" - ], - "required_nozzle_HRC": [ - "3" - ], - "slow_down_layer_time": [ - "6" - ] -} + ], + "nozzle_temperature": [ + "280" + ], + "nozzle_temperature_initial_layer": [ + "280" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_layer_time": [ + "6" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support W @BBL A1 0.2 nozzle.json index c921528678..6dfc9bf96e 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL A1 0.2 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu Support W @BBL A1 0.2 nozzle", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "0.5" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "nozzle_temperature": [ - "240" - ], - "nozzle_temperature_initial_layer": [ - "240" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL A1 0.2 nozzle", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "0.5" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL A1.json b/resources/profiles/BBL/filament/Bambu Support W @BBL A1.json index 55e6b7ea0a..b5c4e7b7f8 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL A1.json @@ -1,34 +1,34 @@ { - "type": "filament", - "name": "Bambu Support W @BBL A1", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL A1", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support W @BBL A1M 0.2 nozzle.json index e85ec02e3a..96c226d8e0 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL A1M 0.2 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu Support W @BBL A1M 0.2 nozzle", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_02", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "0.5" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature": [ - "240" - ], - "nozzle_temperature_initial_layer": [ - "240" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL A1M 0.2 nozzle", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "0.5" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL A1M.json b/resources/profiles/BBL/filament/Bambu Support W @BBL A1M.json index 5c870fd292..51efafdccf 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL A1M.json @@ -1,34 +1,34 @@ { - "type": "filament", - "name": "Bambu Support W @BBL A1M", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_01", - "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" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL A1M", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_01", + "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" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support W @BBL A2L 0.2 nozzle.json index 74810aaeb7..01b6abe4e7 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL A2L 0.2 nozzle.json @@ -1,56 +1,56 @@ { - "type": "filament", - "name": "Bambu Support W @BBL A2L 0.2 nozzle", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_20", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "240" - ], - "filament_max_volumetric_speed": [ - "0.5" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature": [ - "240" - ], - "nozzle_temperature_initial_layer": [ - "240" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "40" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL A2L 0.2 nozzle", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_20", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "240" + ], + "filament_max_volumetric_speed": [ + "0.5" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "40" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL A2L.json b/resources/profiles/BBL/filament/Bambu Support W @BBL A2L.json index 64e2cbb5d3..7d52265879 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL A2L.json @@ -1,46 +1,46 @@ { - "type": "filament", - "name": "Bambu Support W @BBL A2L", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_21", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_temp_fast": [ - "220" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "pre_start_fan_time": [ - "2" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL A2L", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_21", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "220" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "pre_start_fan_time": [ + "2" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support W @BBL H2C 0.2 nozzle.json index 2a9e1eb28a..f2a1dd4faa 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL H2C 0.2 nozzle.json @@ -1,180 +1,91 @@ { - "type": "filament", - "name": "Bambu Support W @BBL H2C 0.2 nozzle", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_19", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "200", - "200" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL H2C 0.2 nozzle", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_19", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "200", + "200" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support W @BBL H2C 0.4 nozzle.json index e84c9efefa..a141e719b8 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL H2C 0.4 nozzle.json @@ -1,180 +1,102 @@ { - "type": "filament", - "name": "Bambu Support W @BBL H2C 0.4 nozzle", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_17", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL H2C 0.4 nozzle", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_17", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL H2C.json b/resources/profiles/BBL/filament/Bambu Support W @BBL H2C.json index cfd8dcf4b2..5b448140c8 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL H2C.json @@ -1,181 +1,103 @@ { - "type": "filament", - "name": "Bambu Support W @BBL H2C", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_18", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "supertack_plate_temp": [ - "40" - ], - "supertack_plate_temp_initial_layer": [ - "40" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL H2C", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_18", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support W @BBL H2D 0.2 nozzle.json index fcd2d7d52b..8651d60951 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL H2D 0.2 nozzle.json @@ -1,134 +1,63 @@ { - "type": "filament", - "name": "Bambu Support W @BBL H2D 0.2 nozzle", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_06", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL H2D 0.2 nozzle", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_06", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL H2D.json b/resources/profiles/BBL/filament/Bambu Support W @BBL H2D.json index b752b636e9..bbab8a9b04 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL H2D.json @@ -1,136 +1,72 @@ { - "type": "filament", - "name": "Bambu Support W @BBL H2D", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_05", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL H2D", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_05", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support W @BBL H2DP 0.2 nozzle.json index 7b1d2cba34..5d2410e4c4 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL H2DP 0.2 nozzle.json @@ -1,134 +1,63 @@ { - "type": "filament", - "name": "Bambu Support W @BBL H2DP 0.2 nozzle", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_15", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL H2DP 0.2 nozzle", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_15", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu Support W @BBL H2DP.json index 20163bae32..82807fa583 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL H2DP.json @@ -1,136 +1,65 @@ { - "type": "filament", - "name": "Bambu Support W @BBL H2DP", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_14", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL H2DP", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_14", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support W @BBL H2S 0.2 nozzle.json index 5e0f2e54b7..0c9ad96894 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL H2S 0.2 nozzle.json @@ -1,140 +1,85 @@ { - "type": "filament", - "name": "Bambu Support W @BBL H2S 0.2 nozzle", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_08", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL H2S 0.2 nozzle", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_08", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL H2S.json b/resources/profiles/BBL/filament/Bambu Support W @BBL H2S.json index 30f2947e0c..e1bb915584 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL H2S.json @@ -1,142 +1,93 @@ { - "type": "filament", - "name": "Bambu Support W @BBL H2S", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_07", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL H2S", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_07", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_long_retractions_when_cut": [ + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support W @BBL P2S 0.2 nozzle.json index af8729821d..336cca1ec8 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL P2S 0.2 nozzle.json @@ -1,171 +1,72 @@ { - "type": "filament", - "name": "Bambu Support W @BBL P2S 0.2 nozzle", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_13", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL P2S 0.2 nozzle", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_13", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL P2S.json b/resources/profiles/BBL/filament/Bambu Support W @BBL P2S.json index 829856bd84..077265db71 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL P2S.json @@ -1,173 +1,79 @@ { - "type": "filament", - "name": "Bambu Support W @BBL P2S", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_12", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL P2S", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_12", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "supertack_plate_temp": [ + "40" + ], + "supertack_plate_temp_initial_layer": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL X1.json b/resources/profiles/BBL/filament/Bambu Support W @BBL X1.json index 096cd6fa5a..520d5cd793 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL X1.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL X1.json @@ -1,121 +1,48 @@ { - "type": "filament", - "name": "Bambu Support W @BBL X1", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS02", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL X1", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS02", + "instantiation": "true", + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support W @BBL X1C 0.2 nozzle.json index 57385b560c..4f2b3f0120 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL X1C 0.2 nozzle.json @@ -1,122 +1,49 @@ { - "type": "filament", - "name": "Bambu Support W @BBL X1C 0.2 nozzle", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL X1C 0.2 nozzle", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_00", + "instantiation": "true", + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL X1C.json b/resources/profiles/BBL/filament/Bambu Support W @BBL X1C.json index 0d27ffda6c..92e8ea9022 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL X1C.json @@ -1,127 +1,54 @@ { - "type": "filament", - "name": "Bambu Support W @BBL X1C", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL X1C", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00", + "instantiation": "true", + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Bambu Support W @BBL X2D 0.2 nozzle.json index 45979d042a..1154670bd3 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL X2D 0.2 nozzle.json @@ -1,272 +1,83 @@ { - "type": "filament", - "name": "Bambu Support W @BBL X2D 0.2 nozzle", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_16", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5", - "0.5", - "0.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "240" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "240", - "240", - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240", - "240", - "240" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL X2D 0.2 nozzle", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_16", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support W @BBL X2D 0.4 nozzle.json index 3bc7956c2d..97599b236c 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL X2D 0.4 nozzle.json @@ -1,272 +1,93 @@ { - "type": "filament", - "name": "Bambu Support W @BBL X2D 0.4 nozzle", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_09", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL X2D 0.4 nozzle", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_09", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @BBL X2D.json b/resources/profiles/BBL/filament/Bambu Support W @BBL X2D.json index c51b414b40..8146c61633 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu Support W @BBL X2D.json @@ -1,273 +1,94 @@ { - "type": "filament", - "name": "Bambu Support W @BBL X2D", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_11", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL X2D", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_11", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support W @base.json b/resources/profiles/BBL/filament/Bambu Support W @base.json index 1391587ef0..da7a2e7591 100644 --- a/resources/profiles/BBL/filament/Bambu Support W @base.json +++ b/resources/profiles/BBL/filament/Bambu Support W @base.json @@ -1,39 +1,39 @@ { - "type": "filament", - "name": "Bambu Support W @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFsHSVZc", - "instantiation": "false", - "description": "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.", - "cool_plate_temp": [ - "40" - ], - "cool_plate_temp_initial_layer": [ - "40" - ], - "filament_cost": [ - "69.98" - ], - "filament_density": [ - "1.30" - ], - "filament_is_support": [ - "1" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "filament_scarf_seam_type": [ - "none" - ], - "filament_adhesiveness_category": [ - "700" - ], - "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}" - ] -} + "type": "filament", + "name": "Bambu Support W @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFsHSVZc", + "instantiation": "false", + "description": "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.", + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "filament_cost": [ + "69.98" + ], + "filament_density": [ + "1.30" + ], + "filament_is_support": [ + "1" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_adhesiveness_category": [ + "700" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL A1.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL A1.json index 2a4de54a1a..52655bf9fb 100644 --- a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL A1.json @@ -1,19 +1,19 @@ { - "type": "filament", - "name": "Bambu Support for ABS @BBL A1", - "inherits": "Bambu Support for ABS @base", - "from": "system", - "setting_id": "GFSS06_01", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support for ABS @BBL A1", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_01", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2C 0.4 nozzle.json index 0466c80f16..99b5ef2be7 100644 --- a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2C 0.4 nozzle.json @@ -1,174 +1,86 @@ { - "type": "filament", - "name": "Bambu Support for ABS @BBL H2C 0.4 nozzle", - "inherits": "Bambu Support for ABS @base", - "from": "system", - "setting_id": "GFSS06_07", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "230", - "230" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "75" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu Support for ABS @BBL H2C 0.4 nozzle", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_07", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "230", + "230", + "230" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "75" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..db205f0769 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2C 0.8 nozzle.json @@ -0,0 +1,89 @@ +{ + "type": "filament", + "name": "Bambu Support for ABS @BBL H2C 0.8 nozzle", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_14", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "80", + "65", + "75" + ], + "filament_dev_ams_drying_time": [ + "12", + "4", + "12", + "4" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_pre_cooling_temperature_nc": [ + "230", + "230" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "temperature_vitrification": [ + "75" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2C.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2C.json index 3760f214ee..554ffa9475 100644 --- a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2C.json @@ -1,175 +1,86 @@ { - "type": "filament", - "name": "Bambu Support for ABS @BBL H2C", - "inherits": "Bambu Support for ABS @base", - "from": "system", - "setting_id": "GFSS06_08", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "230", - "230" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "75" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu Support for ABS @BBL H2C", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_08", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_pre_cooling_temperature_nc": [ + "230", + "230", + "230" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "75" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2D 0.6 nozzle.json new file mode 100644 index 0000000000..26caca6e30 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2D 0.6 nozzle.json @@ -0,0 +1,70 @@ +{ + "type": "filament", + "name": "Bambu Support for ABS @BBL H2D 0.6 nozzle", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_15", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "80", + "65", + "75" + ], + "filament_dev_ams_drying_time": [ + "12", + "4", + "12", + "4" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2D 0.8 nozzle.json new file mode 100644 index 0000000000..f0106252de --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2D 0.8 nozzle.json @@ -0,0 +1,63 @@ +{ + "type": "filament", + "name": "Bambu Support for ABS @BBL H2D 0.8 nozzle", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_16", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "80", + "65", + "75" + ], + "filament_dev_ams_drying_time": [ + "12", + "4", + "12", + "4" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_preheat_temperature_delta": [ + "10", + "10" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2D.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2D.json index 1e83ac14fa..a2e8f70d1f 100644 --- a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2D.json @@ -1,130 +1,53 @@ { - "type": "filament", - "name": "Bambu Support for ABS @BBL H2D", - "inherits": "Bambu Support for ABS @base", - "from": "system", - "setting_id": "GFSS06_02", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu Support for ABS @BBL H2D", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_02", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2DP 0.6 nozzle.json new file mode 100644 index 0000000000..34ea19621a --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2DP 0.6 nozzle.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "Bambu Support for ABS @BBL H2DP 0.6 nozzle", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_17", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "80", + "65", + "75" + ], + "filament_dev_ams_drying_time": [ + "12", + "4", + "12", + "4" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2DP 0.8 nozzle.json new file mode 100644 index 0000000000..3537f29325 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2DP 0.8 nozzle.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "Bambu Support for ABS @BBL H2DP 0.8 nozzle", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_18", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "80", + "65", + "75" + ], + "filament_dev_ams_drying_time": [ + "12", + "4", + "12", + "4" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2DP.json index f611960602..fd1f329f0d 100644 --- a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2DP.json @@ -1,130 +1,47 @@ { - "type": "filament", - "name": "Bambu Support for ABS @BBL H2DP", - "inherits": "Bambu Support for ABS @base", - "from": "system", - "setting_id": "GFSS06_04", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu Support for ABS @BBL H2DP", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_04", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2S 0.6 nozzle.json new file mode 100644 index 0000000000..bf0fc86691 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2S 0.6 nozzle.json @@ -0,0 +1,75 @@ +{ + "type": "filament", + "name": "Bambu Support for ABS @BBL H2S 0.6 nozzle", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_19", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "80", + "65", + "75" + ], + "filament_dev_ams_drying_time": [ + "12", + "4", + "12", + "4" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2S 0.8 nozzle.json new file mode 100644 index 0000000000..fc939c2ddc --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2S 0.8 nozzle.json @@ -0,0 +1,67 @@ +{ + "type": "filament", + "name": "Bambu Support for ABS @BBL H2S 0.8 nozzle", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_20", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "80", + "65", + "75" + ], + "filament_dev_ams_drying_time": [ + "12", + "4", + "12", + "4" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2S.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2S.json index 03cde4ad6f..64bca9215d 100644 --- a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL H2S.json @@ -1,130 +1,63 @@ { - "type": "filament", - "name": "Bambu Support for ABS @BBL H2S", - "inherits": "Bambu Support for ABS @base", - "from": "system", - "setting_id": "GFSS06_09", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu Support for ABS @BBL H2S", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_09", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL P2S 0.6 nozzle.json new file mode 100644 index 0000000000..efa5fbedf2 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL P2S 0.6 nozzle.json @@ -0,0 +1,80 @@ +{ + "type": "filament", + "name": "Bambu Support for ABS @BBL P2S 0.6 nozzle", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_21", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "80", + "65", + "75" + ], + "filament_dev_ams_drying_time": [ + "12", + "4", + "12", + "4" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL P2S 0.8 nozzle.json new file mode 100644 index 0000000000..d0ebd6307d --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL P2S 0.8 nozzle.json @@ -0,0 +1,71 @@ +{ + "type": "filament", + "name": "Bambu Support for ABS @BBL P2S 0.8 nozzle", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_22", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "80", + "65", + "75" + ], + "filament_dev_ams_drying_time": [ + "12", + "4", + "12", + "4" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL P2S.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL P2S.json index 95e1c6d602..67492a22da 100644 --- a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL P2S.json @@ -1,170 +1,68 @@ { - "type": "filament", - "name": "Bambu Support for ABS @BBL P2S", - "inherits": "Bambu Support for ABS @base", - "from": "system", - "setting_id": "GFSS06_03", - "instantiation": "true", - "activate_air_filtration": [ - "0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu Support for ABS @BBL P2S", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_03", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X1C.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X1C.json index 2c3c1a543c..5ee757619a 100644 --- a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X1C.json @@ -1,133 +1,64 @@ { - "type": "filament", - "name": "Bambu Support for ABS @BBL X1C", - "inherits": "Bambu Support for ABS @base", - "from": "system", - "setting_id": "GFSS06_00", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "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" - ] -} + "type": "filament", + "name": "Bambu Support for ABS @BBL X1C", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_00", + "instantiation": "true", + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "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" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D 0.4 nozzle.json index 89e8556c2f..0882985ee0 100644 --- a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D 0.4 nozzle.json @@ -1,266 +1,95 @@ { - "type": "filament", - "name": "Bambu Support for ABS @BBL X2D 0.4 nozzle", - "inherits": "Bambu Support for ABS @base", - "from": "system", - "setting_id": "GFSS06_05", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "270" - ], - "nozzle_temperature": [ - "270", - "270", - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260", - "260", - "260" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu Support for ABS @BBL X2D 0.4 nozzle", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_05", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..0e52093caa --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D 0.8 nozzle.json @@ -0,0 +1,95 @@ +{ + "type": "filament", + "name": "Bambu Support for ABS @BBL X2D 0.8 nozzle", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_23", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "80", + "65", + "75" + ], + "filament_dev_ams_drying_time": [ + "12", + "4", + "12", + "4" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D.json b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D.json index a9fae6e28f..c5de9aa8ef 100644 --- a/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @BBL X2D.json @@ -1,267 +1,95 @@ { - "type": "filament", - "name": "Bambu Support for ABS @BBL X2D", - "inherits": "Bambu Support for ABS @base", - "from": "system", - "setting_id": "GFSS06_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "270" - ], - "nozzle_temperature": [ - "270", - "270", - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260", - "260", - "260" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu Support for ABS @BBL X2D", + "inherits": "Bambu Support for ABS @base", + "from": "system", + "setting_id": "GFSS06_06", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu Support for ABS @base.json b/resources/profiles/BBL/filament/Bambu Support for ABS @base.json index 25f62a07c3..18400b5404 100644 --- a/resources/profiles/BBL/filament/Bambu Support for ABS @base.json +++ b/resources/profiles/BBL/filament/Bambu Support for ABS @base.json @@ -1,48 +1,48 @@ { - "type": "filament", - "name": "Bambu Support for ABS @base", - "inherits": "fdm_filament_abs", - "from": "system", - "filament_id": "OFf6mfQO", - "instantiation": "false", - "description": "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.", - "fan_max_speed": [ - "30" - ], - "filament_cost": [ - "29.98" - ], - "filament_density": [ - "1.16" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_is_support": [ - "1" - ], - "filament_max_volumetric_speed": [ - "6" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "filament_adhesiveness_category": [ - "706" + "type": "filament", + "name": "Bambu Support for ABS @base", + "inherits": "fdm_filament_abs", + "from": "system", + "filament_id": "OFf6mfQO", + "instantiation": "false", + "description": "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.", + "fan_max_speed": [ + "30" + ], + "filament_adhesiveness_category": [ + "706" + ], + "filament_cost": [ + "23.98" + ], + "filament_density": [ + "1.16" ], "filament_dev_ams_drying_time": [ "12", "4", "12", "4" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "slow_down_layer_time": [ - "12" - ], - "temperature_vitrification": [ - "90" - ] -} + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_is_support": [ + "1" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "temperature_vitrification": [ + "90" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL A2L 0.6 nozzle.json index 160b3cd5b9..05d3bf0141 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL A2L 0.6 nozzle.json @@ -1,77 +1,77 @@ { - "type": "filament", - "name": "Bambu TPU 85A @BBL A2L 0.6 nozzle", - "inherits": "Bambu TPU 85A @base", - "from": "system", - "setting_id": "GFSU04_18", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_cooling_before_tower": [ - "10" - ], - "filament_cost": [ - "41.99" - ], - "filament_density": [ - "1.22" - ], - "filament_pre_cooling_temperature": [ - "195" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "20" - ], - "filament_ramming_volumetric_speed": [ - "0.55" - ], - "filament_retraction_length": [ - "1.3" - ], - "filament_support_printable": [ - "2" - ], - "impact_strength_z": [ - "88.7" - ], - "long_retractions_when_ec": [ - "1" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "pre_start_fan_time": [ - "0" - ], - "retraction_distances_when_ec": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 85A @BBL A2L 0.6 nozzle", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_18", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10" + ], + "filament_cost": [ + "41.99" + ], + "filament_density": [ + "1.22" + ], + "filament_pre_cooling_temperature": [ + "195" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "20" + ], + "filament_ramming_volumetric_speed": [ + "0.55" + ], + "filament_retraction_length": [ + "1.3" + ], + "filament_support_printable": [ + "2" + ], + "impact_strength_z": [ + "88.7" + ], + "long_retractions_when_ec": [ + "1" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "pre_start_fan_time": [ + "0" + ], + "retraction_distances_when_ec": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL A2L 0.8 nozzle.json index bf04a2f638..9f80ff8060 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL A2L 0.8 nozzle.json @@ -1,80 +1,80 @@ { - "type": "filament", - "name": "Bambu TPU 85A @BBL A2L 0.8 nozzle", - "inherits": "Bambu TPU 85A @base", - "from": "system", - "setting_id": "GFSU04_19", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_cooling_before_tower": [ - "10" - ], - "filament_cost": [ - "41.99" - ], - "filament_density": [ - "1.22" - ], - "filament_max_volumetric_speed": [ - "3" - ], - "filament_pre_cooling_temperature": [ - "195" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "20" - ], - "filament_ramming_volumetric_speed": [ - "0.55" - ], - "filament_retraction_length": [ - "1" - ], - "filament_support_printable": [ - "2" - ], - "impact_strength_z": [ - "88.7" - ], - "long_retractions_when_ec": [ - "1" - ], - "nozzle_temperature": [ - "215" - ], - "nozzle_temperature_initial_layer": [ - "215" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "pre_start_fan_time": [ - "0" - ], - "retraction_distances_when_ec": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 85A @BBL A2L 0.8 nozzle", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_19", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10" + ], + "filament_cost": [ + "41.99" + ], + "filament_density": [ + "1.22" + ], + "filament_max_volumetric_speed": [ + "3" + ], + "filament_pre_cooling_temperature": [ + "195" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "20" + ], + "filament_ramming_volumetric_speed": [ + "0.55" + ], + "filament_retraction_length": [ + "1" + ], + "filament_support_printable": [ + "2" + ], + "impact_strength_z": [ + "88.7" + ], + "long_retractions_when_ec": [ + "1" + ], + "nozzle_temperature": [ + "215" + ], + "nozzle_temperature_initial_layer": [ + "215" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "pre_start_fan_time": [ + "0" + ], + "retraction_distances_when_ec": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2C.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2C.json index c9c84d7b30..50da178634 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2C.json @@ -1,199 +1,151 @@ { - "type": "filament", - "name": "Bambu TPU 85A @BBL H2C", - "inherits": "Bambu TPU 85A @base", - "from": "system", - "setting_id": "GFSU04_05", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_cost": [ - "41.99" - ], - "filament_density": [ - "1.22" - ], - "filament_deretraction_speed": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2.2", - "2.2" - ], - "filament_ramming_volumetric_speed": [ - "0.55", - "0.55" - ], - "filament_ramming_volumetric_speed_nc": [ - "0.55", - "0.55" - ], - "filament_printable": [ - "2" - ], - "filament_retraction_length": [ - "1", - "1" - ], - "filament_retraction_speed": [ - "10", - "10" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature": [ - "195", - "195" - ], - "filament_pre_cooling_temperature_nc": [ - "185", - "185" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_ramming_travel_time_nc": [ - "20", - "20" - ], - "filament_retract_length_nc": [ - "10", - "10" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "impact_strength_z": [ - "88.7" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "temperature_vitrification": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 85A @BBL H2C", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_05", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_cost": [ + "41.99" + ], + "filament_density": [ + "1.22" + ], + "filament_deretraction_speed": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.2", + "2.2", + "2.2" + ], + "filament_ramming_volumetric_speed": [ + "0.55", + "0.55", + "0.55" + ], + "filament_ramming_volumetric_speed_nc": [ + "0.55", + "0.55", + "0.55" + ], + "filament_printable": [ + "2" + ], + "filament_retraction_length": [ + "1", + "1", + "1" + ], + "filament_retraction_speed": [ + "10", + "10", + "10" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature": [ + "195", + "195", + "195" + ], + "filament_pre_cooling_temperature_nc": [ + "185", + "185", + "185" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "20", + "20", + "20" + ], + "filament_retract_length_nc": [ + "10", + "10", + "10" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "impact_strength_z": [ + "88.7" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature": [ + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "temperature_vitrification": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2D 0.4 nozzle.json index 635ab2556c..4a4cfb2e1e 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2D 0.4 nozzle.json @@ -1,101 +1,116 @@ { - "type": "filament", - "name": "Bambu TPU 85A @BBL H2D 0.4 nozzle", - "inherits": "Bambu TPU 85A @base", - "from": "system", - "setting_id": "GFSU04_17", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_cooling_before_tower": [ - "10" - ], - "filament_cost": [ - "41.99" - ], - "filament_density": [ - "1.22" - ], - "filament_deretraction_speed": [ - "50" - ], - "filament_extruder_variant": [ - "Direct Drive TPU High Flow" - ], - "filament_flow_ratio": [ - "1.1" - ], - "filament_long_retractions_when_cut": [ - "0" - ], - "filament_max_volumetric_speed": [ - "2.5" - ], - "filament_pre_cooling_temperature": [ - "195" - ], - "filament_printable": [ - "2" - ], - "filament_ramming_travel_time": [ - "20" - ], - "filament_ramming_volumetric_speed": [ - "0.55" - ], - "filament_retraction_length": [ - "2.3" - ], - "filament_retraction_speed": [ - "20" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop": [ - "0.6" - ], - "filament_z_hop_types": [ - "Auto Lift" - ], - "impact_strength_z": [ - "88.7" - ], - "long_retractions_when_ec": [ - "1" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "slow_down_layer_time": [ - "14" - ], - "slow_down_min_speed": [ - "30" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 85A @BBL H2D 0.4 nozzle", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_17", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10" + ], + "filament_cost": [ + "41.99" + ], + "filament_density": [ + "1.22" + ], + "filament_deretraction_speed": [ + "50" + ], + "filament_extruder_variant": [ + "Direct Drive TPU High Flow" + ], + "filament_flow_ratio": [ + "1.1" + ], + "filament_long_retractions_when_cut": [ + "0" + ], + "filament_max_volumetric_speed": [ + "2.5" + ], + "filament_overhang_2_4_speed": [ + "25" + ], + "filament_overhang_3_4_speed": [ + "25" + ], + "filament_overhang_4_4_speed": [ + "20" + ], + "filament_overhang_totally_speed": [ + "25" + ], + "filament_pre_cooling_temperature": [ + "195" + ], + "filament_printable": [ + "2" + ], + "filament_ramming_travel_time": [ + "20" + ], + "filament_ramming_volumetric_speed": [ + "0.55" + ], + "filament_retraction_length": [ + "2.3" + ], + "filament_retraction_speed": [ + "20" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop": [ + "0.6" + ], + "filament_z_hop_types": [ + "Auto Lift" + ], + "impact_strength_z": [ + "88.7" + ], + "long_retractions_when_ec": [ + "1" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "override_process_overhang_speed": [ + "1" + ], + "slow_down_layer_time": [ + "14" + ], + "slow_down_min_speed": [ + "30" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2D.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2D.json index 7a35448013..a1c364a9ec 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2D.json @@ -1,171 +1,291 @@ { - "type": "filament", - "name": "Bambu TPU 85A @BBL H2D", - "inherits": "Bambu TPU 85A @base", - "from": "system", - "setting_id": "GFSU04_02", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "10", - "10", - "50" - ], - "filament_flow_ratio": [ - "1", - "1", - "1.03" - ], - "filament_flush_temp": [ - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2.2", - "2.2", - "4.8" - ], - "filament_ramming_volumetric_speed": [ - "0.55", - "0.55", - "0.55" - ], - "filament_printable": [ - "2" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "2", - "2", - "2.3" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10", - "40" - ], - "filament_wipe": [ - "nil", - "nil", - "1" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "0.4" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "Auto Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Direct Drive TPU High Flow" - ], - "filament_pre_cooling_temperature": [ - "195", - "195", - "195" - ], - "filament_ramming_travel_time": [ - "20", - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0" - ], - "impact_strength_z": [ - "88.7" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "nozzle_temperature": [ - "225", - "225", - "235" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225", - "235" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 85A @BBL H2D", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_02", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10", + "50", + "10" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive TPU High Flow", + "Direct Drive E3D High Flow" + ], + "filament_flow_ratio": [ + "1", + "1", + "1.03", + "1" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "2.2", + "2.2", + "4.8", + "2.2" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "25", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "25", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "20", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "25", + "10" + ], + "filament_pre_cooling_temperature": [ + "195", + "195", + "195", + "195" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_printable": [ + "2" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "0.55", + "0.55", + "0.55", + "0.55" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "2", + "2", + "2.3", + "2" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "10", + "10", + "40", + "10" + ], + "filament_wipe": [ + "nil", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "0.4", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "Auto Lift", + "nil" + ], + "impact_strength_z": [ + "88.7" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10", + "10" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "nozzle_temperature": [ + "225", + "225", + "235", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "235", + "225" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "override_process_overhang_speed": [ + "0", + "0", + "1", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "40", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2DP 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2DP 0.4 nozzle.json index ff23d0e23b..8834843065 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2DP 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2DP 0.4 nozzle.json @@ -1,101 +1,116 @@ { - "type": "filament", - "name": "Bambu TPU 85A @BBL H2DP 0.4 nozzle", - "inherits": "Bambu TPU 85A @base", - "from": "system", - "setting_id": "GFSU04_20", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_cooling_before_tower": [ - "10" - ], - "filament_cost": [ - "41.99" - ], - "filament_density": [ - "1.22" - ], - "filament_deretraction_speed": [ - "50" - ], - "filament_extruder_variant": [ - "Direct Drive TPU High Flow" - ], - "filament_flow_ratio": [ - "1.1" - ], - "filament_long_retractions_when_cut": [ - "0" - ], - "filament_max_volumetric_speed": [ - "2.5" - ], - "filament_pre_cooling_temperature": [ - "195" - ], - "filament_printable": [ - "2" - ], - "filament_ramming_travel_time": [ - "20" - ], - "filament_ramming_volumetric_speed": [ - "0.55" - ], - "filament_retraction_length": [ - "2.3" - ], - "filament_retraction_speed": [ - "20" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop": [ - "0.6" - ], - "filament_z_hop_types": [ - "Auto Lift" - ], - "impact_strength_z": [ - "88.7" - ], - "long_retractions_when_ec": [ - "1" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "slow_down_layer_time": [ - "14" - ], - "slow_down_min_speed": [ - "30" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 85A @BBL H2DP 0.4 nozzle", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_20", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10" + ], + "filament_cost": [ + "41.99" + ], + "filament_density": [ + "1.22" + ], + "filament_deretraction_speed": [ + "50" + ], + "filament_extruder_variant": [ + "Direct Drive TPU High Flow" + ], + "filament_flow_ratio": [ + "1.1" + ], + "filament_long_retractions_when_cut": [ + "0" + ], + "filament_max_volumetric_speed": [ + "2.5" + ], + "filament_overhang_2_4_speed": [ + "25" + ], + "filament_overhang_3_4_speed": [ + "25" + ], + "filament_overhang_4_4_speed": [ + "20" + ], + "filament_overhang_totally_speed": [ + "25" + ], + "filament_pre_cooling_temperature": [ + "195" + ], + "filament_printable": [ + "2" + ], + "filament_ramming_travel_time": [ + "20" + ], + "filament_ramming_volumetric_speed": [ + "0.55" + ], + "filament_retraction_length": [ + "2.3" + ], + "filament_retraction_speed": [ + "20" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop": [ + "0.6" + ], + "filament_z_hop_types": [ + "Auto Lift" + ], + "impact_strength_z": [ + "88.7" + ], + "long_retractions_when_ec": [ + "1" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "override_process_overhang_speed": [ + "1" + ], + "slow_down_layer_time": [ + "14" + ], + "slow_down_min_speed": [ + "30" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2DP.json index eda8e4f60e..5afdd55df6 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2DP.json @@ -1,171 +1,249 @@ { - "type": "filament", - "name": "Bambu TPU 85A @BBL H2DP", - "inherits": "Bambu TPU 85A @base", - "from": "system", - "setting_id": "GFSU04_03", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "10", - "10", - "50" - ], - "filament_flow_ratio": [ - "1", - "1", - "1.03" - ], - "filament_flush_temp": [ - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2.2", - "2.2", - "4.8" - ], - "filament_ramming_volumetric_speed": [ - "0.55", - "0.55", - "0.55" - ], - "filament_printable": [ - "2" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "2", - "2", - "2.3" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10", - "40" - ], - "filament_wipe": [ - "nil", - "nil", - "1" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "0.4" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "Auto Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Direct Drive TPU High Flow" - ], - "filament_pre_cooling_temperature": [ - "195", - "195", - "195" - ], - "filament_ramming_travel_time": [ - "20", - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0" - ], - "impact_strength_z": [ - "88.7" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "nozzle_temperature": [ - "225", - "225", - "235" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225", - "235" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 85A @BBL H2DP", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_03", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0" + ], + "filament_bridge_speed": [ + "25", + "25", + "25" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10", + "50" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive TPU High Flow" + ], + "filament_flow_ratio": [ + "1", + "1", + "1.03" + ], + "filament_flush_temp": [ + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "2.2", + "2.2", + "4.8" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "25" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "25" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "20" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "25" + ], + "filament_pre_cooling_temperature": [ + "195", + "195", + "195" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0" + ], + "filament_printable": [ + "2" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "0.55", + "0.55", + "0.55" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "2", + "2", + "2.3" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "10", + "10", + "40" + ], + "filament_wipe": [ + "nil", + "nil", + "1" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "0.4" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "Auto Lift" + ], + "impact_strength_z": [ + "88.7" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1" + ], + "nozzle_temperature": [ + "225", + "225", + "235" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "235" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "override_process_overhang_speed": [ + "0", + "0", + "1" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "40" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2S 0.6 nozzle.json index 608802a6a2..493fb2004d 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2S 0.6 nozzle.json @@ -1,168 +1,115 @@ { - "type": "filament", - "name": "Bambu TPU 85A @BBL H2S 0.6 nozzle", - "inherits": "Bambu TPU 85A @base", - "from": "system", - "setting_id": "GFSU04_8", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "3", - "3" - ], - "filament_ramming_volumetric_speed": [ - "0.55", - "0.55" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "2", - "2" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_for_layer_cooling": [ - "0" - ], - "volumetric_speed_coefficients": [ - "12.4717 -2.8601 9.7830 2.9503 3.9235 -1.8644", - "12.4717 -2.8601 9.7830 2.9503 3.9235 -1.8644" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 85A @BBL H2S 0.6 nozzle", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_8", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3", + "3", + "3" + ], + "filament_ramming_volumetric_speed": [ + "0.55", + "0.55", + "0.55" + ], + "filament_retraction_length": [ + "2", + "2", + "2" + ], + "filament_retraction_speed": [ + "10", + "10", + "10" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_for_layer_cooling": [ + "0" + ], + "volumetric_speed_coefficients": [ + "12.4717 -2.8601 9.7830 2.9503 3.9235 -1.8644", + "12.4717 -2.8601 9.7830 2.9503 3.9235 -1.8644", + "12.4717 -2.8601 9.7830 2.9503 3.9235 -1.8644" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2S 0.8 nozzle.json index 257d518996..b39cbdfe34 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2S 0.8 nozzle.json @@ -1,140 +1,99 @@ { - "type": "filament", - "name": "Bambu TPU 85A @BBL H2S 0.8 nozzle", - "inherits": "Bambu TPU 85A @base", - "from": "system", - "setting_id": "GFSU04_9", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "5", - "5" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "3", - "3" - ], - "filament_ramming_volumetric_speed": [ - "0.55", - "0.55" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "1", - "1" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "5", - "5" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_for_layer_cooling": [ - "0" - ], - "volumetric_speed_coefficients": [ - "6.6221 -1.8351 5.4532 2.6077 3.1996 -1.9564", - "6.6221 -1.8351 5.4532 2.6077 3.1996 -1.9564" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 85A @BBL H2S 0.8 nozzle", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_9", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_deretraction_speed": [ + "5", + "5" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3", + "3" + ], + "filament_ramming_volumetric_speed": [ + "0.55", + "0.55" + ], + "filament_retraction_length": [ + "1", + "1" + ], + "filament_retraction_speed": [ + "5", + "5" + ], + "filament_wipe": [ + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_for_layer_cooling": [ + "0" + ], + "volumetric_speed_coefficients": [ + "6.6221 -1.8351 5.4532 2.6077 3.1996 -1.9564", + "6.6221 -1.8351 5.4532 2.6077 3.1996 -1.9564" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2S.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2S.json index 8ccd07d3c8..32401c7021 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL H2S.json @@ -1,140 +1,117 @@ { - "type": "filament", - "name": "Bambu TPU 85A @BBL H2S", - "inherits": "Bambu TPU 85A @base", - "from": "system", - "setting_id": "GFSU04_07", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "3", - "3" - ], - "filament_ramming_volumetric_speed": [ - "0.55", - "0.55" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "2", - "2" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "30" - ], - "volumetric_speed_coefficients": [ - "-72.1736 -8.8086 10.6201 29.6592 9.9286 -3.3920", - "-72.1736 -8.8086 10.6201 29.6592 9.9286 -3.3920" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 85A @BBL H2S", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_07", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3", + "3", + "3" + ], + "filament_ramming_volumetric_speed": [ + "0.55", + "0.55", + "0.55" + ], + "filament_retraction_length": [ + "2", + "2", + "2" + ], + "filament_retraction_speed": [ + "10", + "10", + "10" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "30", + "30", + "30" + ], + "volumetric_speed_coefficients": [ + "-72.1736 -8.8086 10.6201 29.6592 9.9286 -3.3920", + "-72.1736 -8.8086 10.6201 29.6592 9.9286 -3.3920", + "-72.1736 -8.8086 10.6201 29.6592 9.9286 -3.3920" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL P1P.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL P1P.json index fbdfb1d84e..61a640f9f4 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL P1P.json @@ -1,120 +1,47 @@ { - "type": "filament", - "name": "Bambu TPU 85A @BBL P1P", - "inherits": "Bambu TPU 85A @base", - "from": "system", - "setting_id": "GFSU04_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2.2", - "2.2" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 85A @BBL P1P", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2.2", + "2.2" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL P2S 0.8 nozzle.json index 860a2da6b9..b2ee2d8b7c 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL P2S 0.8 nozzle.json @@ -1,168 +1,57 @@ { - "type": "filament", - "name": "Bambu TPU 85A @BBL P2S 0.8 nozzle", - "inherits": "Bambu TPU 85A @base", - "from": "system", - "setting_id": "GFSU04_10", - "instantiation": "true", - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2.2", - "2.2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "1.2", - "1.2" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu TPU 85A @BBL P2S 0.8 nozzle", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_10", + "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.", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.2", + "2.2" + ], + "filament_prime_volume": [ + "60" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "1.2", + "1.2" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL P2S.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL P2S.json index 7c139e896c..44fd0998eb 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL P2S.json @@ -1,168 +1,68 @@ { - "type": "filament", - "name": "Bambu TPU 85A @BBL P2S", - "inherits": "Bambu TPU 85A @base", - "from": "system", - "setting_id": "GFSU04_06", - "instantiation": "true", - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2.2", - "2.2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "1", - "1" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu TPU 85A @BBL P2S", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_06", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.2", + "2.2", + "2.2" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "1", + "1", + "1" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X1C.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X1C.json index 41d325d219..b24ff17409 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X1C.json @@ -1,126 +1,53 @@ { - "type": "filament", - "name": "Bambu TPU 85A @BBL X1C", - "inherits": "Bambu TPU 85A @base", - "from": "system", - "setting_id": "GFSU04_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2.2", - "2.2" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 85A @BBL X1C", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2.2", + "2.2" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X2D 0.8 nozzle.json index 0bde7eb2e4..eb47c12591 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X2D 0.8 nozzle.json @@ -1,278 +1,83 @@ { - "type": "filament", - "name": "Bambu TPU 85A @BBL X2D 0.8 nozzle", - "inherits": "Bambu TPU 85A @base", - "from": "system", - "setting_id": "GFSU04_21", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "1.2", - "1.2", - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_extruder_compatibility": [ - "8" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2.2", - "2.2", - "2.2", - "2.2" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "225" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "225", - "225", - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225", - "225", - "225" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu TPU 85A @BBL X2D 0.8 nozzle", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_21", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.2", + "2.2", + "2.2", + "2.2" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "1.2", + "1.2", + "0.4", + "0.4" + ], + "filament_tower_interface_print_temp": [ + "225" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "225", + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X2D.json b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X2D.json index df1e421aad..69367399c0 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @BBL X2D.json @@ -1,278 +1,107 @@ { - "type": "filament", - "name": "Bambu TPU 85A @BBL X2D", - "inherits": "Bambu TPU 85A @base", - "from": "system", - "setting_id": "GFSU04_04", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "2", - "2", - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "200", - "200", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_extruder_compatibility": [ - "8" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2.2", - "2.2", - "2.2", - "2.2" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "225" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "225", - "225", - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225", - "225", - "225" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu TPU 85A @BBL X2D", + "inherits": "Bambu TPU 85A @base", + "from": "system", + "setting_id": "GFSU04_04", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.2", + "2.2", + "2.2", + "2.2", + "2.2", + "2.2" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "2", + "2", + "2", + "0.4", + "0.4", + "0.4" + ], + "filament_retraction_speed": [ + "200", + "200", + "200", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "225" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "225", + "225", + "225", + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225", + "225", + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 85A @base.json b/resources/profiles/BBL/filament/Bambu TPU 85A @base.json index fc7f67bc45..d38f1b3da6 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 85A @base.json +++ b/resources/profiles/BBL/filament/Bambu TPU 85A @base.json @@ -1,33 +1,33 @@ { - "type": "filament", - "name": "Bambu TPU 85A @base", - "inherits": "fdm_filament_tpu", - "from": "system", - "filament_id": "OFlfuj2k", - "instantiation": "false", - "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.", - "filament_cost": [ - "44.99" - ], - "filament_density": [ - "1.18" - ], - "filament_max_volumetric_speed": [ - "2.2" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "nozzle_temperature": [ - "225" - ], - "nozzle_temperature_initial_layer": [ - "225" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "slow_down_layer_time": [ - "20" - ] -} + "type": "filament", + "name": "Bambu TPU 85A @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "OFlfuj2k", + "instantiation": "false", + "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.", + "filament_cost": [ + "41.99" + ], + "filament_density": [ + "1.18" + ], + "filament_max_volumetric_speed": [ + "2.2" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "225" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "slow_down_layer_time": [ + "20" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A1.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A1.json index 71f9bc7bd8..72beca2f7b 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A1.json @@ -1,34 +1,34 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL A1", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_04", - "instantiation": "true", - "filament_density": [ - "1.22" - ], - "hot_plate_temp": [ - "45" - ], - "hot_plate_temp_initial_layer": [ - "45" - ], - "impact_strength_z": [ - "88.7" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "textured_plate_temp": [ - "45" - ], - "textured_plate_temp_initial_layer": [ - "45" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL A1", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_04", + "instantiation": "true", + "filament_density": [ + "1.22" + ], + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "45" + ], + "impact_strength_z": [ + "88.7" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A1M.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A1M.json index 7e86089fbb..0aca42745f 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A1M.json @@ -1,34 +1,34 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL A1M", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_05", - "instantiation": "true", - "filament_density": [ - "1.22" - ], - "hot_plate_temp": [ - "30" - ], - "hot_plate_temp_initial_layer": [ - "30" - ], - "impact_strength_z": [ - "88.7" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "textured_plate_temp": [ - "30" - ], - "textured_plate_temp_initial_layer": [ - "30" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle", - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL A1M", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_05", + "instantiation": "true", + "filament_density": [ + "1.22" + ], + "hot_plate_temp": [ + "30" + ], + "hot_plate_temp_initial_layer": [ + "30" + ], + "impact_strength_z": [ + "88.7" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "textured_plate_temp": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "30" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A2L 0.6 nozzle.json index a3097b65c0..a9e2cf1890 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A2L 0.6 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL A2L 0.6 nozzle", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_28", - "instantiation": "true", - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_density": [ - "1.22" - ], - "filament_max_volumetric_speed": [ - "4.5" - ], - "filament_overhang_totally_speed": [ - "20" - ], - "filament_retraction_length": [ - "0.8" - ], - "impact_strength_z": [ - "88.7" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_min_speed": [ - "25" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL A2L 0.6 nozzle", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_28", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_density": [ + "1.22" + ], + "filament_max_volumetric_speed": [ + "4.5" + ], + "filament_overhang_totally_speed": [ + "20" + ], + "filament_retraction_length": [ + "0.8" + ], + "impact_strength_z": [ + "88.7" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_min_speed": [ + "25" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A2L 0.8 nozzle.json index 8d6283b83d..fa6f028ab6 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A2L 0.8 nozzle.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL A2L 0.8 nozzle", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_32", - "instantiation": "true", - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_density": [ - "1.22" - ], - "filament_max_volumetric_speed": [ - "4.5" - ], - "filament_overhang_totally_speed": [ - "25" - ], - "impact_strength_z": [ - "88.7" - ], - "nozzle_temperature": [ - "205" - ], - "nozzle_temperature_initial_layer": [ - "205" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_min_speed": [ - "20" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL A2L 0.8 nozzle", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_32", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_density": [ + "1.22" + ], + "filament_max_volumetric_speed": [ + "4.5" + ], + "filament_overhang_totally_speed": [ + "25" + ], + "impact_strength_z": [ + "88.7" + ], + "nozzle_temperature": [ + "205" + ], + "nozzle_temperature_initial_layer": [ + "205" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A2L.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A2L.json index 7e2c12fdca..c05d4c9aea 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL A2L.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL A2L", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_12", - "instantiation": "true", - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_density": [ - "1.22" - ], - "filament_retraction_length": [ - "1" - ], - "impact_strength_z": [ - "88.7" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_min_speed": [ - "35" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL A2L", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_12", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_density": [ + "1.22" + ], + "filament_retraction_length": [ + "1" + ], + "impact_strength_z": [ + "88.7" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_min_speed": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2C 0.4 nozzle.json index 621055a250..9a41e06a29 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2C 0.4 nozzle.json @@ -1,195 +1,152 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL H2C 0.4 nozzle", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_08", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_cost": [ - "41.99" - ], - "filament_density": [ - "1.22" - ], - "filament_deretraction_speed": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2.8", - "2.8" - ], - "filament_ramming_volumetric_speed": [ - "0.7", - "0.7" - ], - "filament_ramming_volumetric_speed_nc": [ - "0.7", - "0.7" - ], - "filament_retraction_length": [ - "2", - "2" - ], - "filament_retraction_speed": [ - "10", - "10" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature": [ - "195", - "195" - ], - "filament_pre_cooling_temperature_nc": [ - "185", - "185" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_ramming_travel_time_nc": [ - "20", - "20" - ], - "filament_retract_length_nc": [ - "10", - "10" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "impact_strength_z": [ - "88.7" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "30", - "30" - ], - "temperature_vitrification": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL H2C 0.4 nozzle", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_08", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_cost": [ + "41.99" + ], + "filament_density": [ + "1.22" + ], + "filament_deretraction_speed": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8", + "2.8" + ], + "filament_ramming_volumetric_speed": [ + "0.7", + "0.7", + "0.7" + ], + "filament_ramming_volumetric_speed_nc": [ + "0.7", + "0.7", + "0.7" + ], + "filament_retraction_length": [ + "2", + "2", + "2" + ], + "filament_retraction_speed": [ + "10", + "10", + "10" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature": [ + "195", + "195", + "195" + ], + "filament_pre_cooling_temperature_nc": [ + "185", + "185", + "185" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "20", + "20", + "20" + ], + "filament_retract_length_nc": [ + "10", + "10", + "10" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "impact_strength_z": [ + "88.7" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature": [ + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "30", + "30", + "30" + ], + "temperature_vitrification": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2C.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2C.json index d96ebeb009..28f6778d20 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2C.json @@ -1,196 +1,153 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL H2C", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_09", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_cost": [ - "41.99" - ], - "filament_density": [ - "1.22" - ], - "filament_deretraction_speed": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2.8", - "2.8" - ], - "filament_ramming_volumetric_speed": [ - "0.7", - "0.7" - ], - "filament_ramming_volumetric_speed_nc": [ - "0.7", - "0.7" - ], - "filament_retraction_length": [ - "1", - "1" - ], - "filament_retraction_speed": [ - "10", - "10" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature": [ - "195", - "195" - ], - "filament_pre_cooling_temperature_nc": [ - "185", - "185" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_ramming_travel_time_nc": [ - "20", - "20" - ], - "filament_retract_length_nc": [ - "10", - "10" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "impact_strength_z": [ - "88.7" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL H2C", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_cost": [ + "41.99" + ], + "filament_density": [ + "1.22" + ], + "filament_deretraction_speed": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8", + "2.8" + ], + "filament_ramming_volumetric_speed": [ + "0.7", + "0.7", + "0.7" + ], + "filament_ramming_volumetric_speed_nc": [ + "0.7", + "0.7", + "0.7" + ], + "filament_retraction_length": [ + "1", + "1", + "1" + ], + "filament_retraction_speed": [ + "10", + "10", + "10" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature": [ + "195", + "195", + "195" + ], + "filament_pre_cooling_temperature_nc": [ + "185", + "185", + "185" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "20", + "20", + "20" + ], + "filament_retract_length_nc": [ + "10", + "10", + "10" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "impact_strength_z": [ + "88.7" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature": [ + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2D 0.6 nozzle.json index 2efb672844..feb9db8a13 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2D 0.6 nozzle.json @@ -1,205 +1,290 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL H2D 0.6 nozzle", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_24", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10" - ], - "filament_density": [ - "1.22" - ], - "filament_deretraction_speed": [ - "25", - "25", - "30" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Direct Drive TPU High Flow" - ], - "filament_flow_ratio": [ - "1.05", - "1.05", - "1.08" - ], - "filament_flush_temp": [ - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2.8", - "2.8", - "5.6" - ], - "filament_pre_cooling_temperature": [ - "195", - "195", - "195" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0" - ], - "filament_preheat_temperature_delta": [ - "10", - "10", - "10" - ], - "filament_ramming_travel_time": [ - "20", - "20", - "20" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "0.7", - "0.7", - "0.7" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.6", - "0.6", - "1.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10", - "30" - ], - "filament_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "impact_strength_z": [ - "88.7" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1" - ], - "nozzle_temperature": [ - "225", - "225", - "220" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225", - "220" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "25", - "25", - "50" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL H2D 0.6 nozzle", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_24", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_density": [ + "1.22" + ], + "filament_deretraction_speed": [ + "25", + "25", + "30", + "25" + ], + "filament_flow_ratio": [ + "1.05", + "1.05", + "1.08", + "1.05" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8", + "5.6", + "2.8" + ], + "filament_ramming_volumetric_speed": [ + "0.7", + "0.7", + "0.7", + "0.7" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.6", + "0.6", + "1.8", + "0.6" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "10", + "10", + "30", + "10" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive TPU High Flow", + "Direct Drive E3D High Flow" + ], + "filament_pre_cooling_temperature": [ + "195", + "195", + "195", + "195" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "30", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "30", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "30", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "30", + "25" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "impact_strength_z": [ + "88.7" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10", + "10" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature": [ + "225", + "225", + "220", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "220", + "225" + ], + "override_process_overhang_speed": [ + "0", + "0", + "1", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "25", + "25", + "50", + "25" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2D 0.8 nozzle.json index 347b10121c..b1a45e6d9a 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2D 0.8 nozzle.json @@ -1,171 +1,94 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL H2D 0.8 nozzle", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_26", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_density": [ - "1.22" - ], - "filament_deretraction_speed": [ - "25", - "25" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flow_ratio": [ - "1.05", - "1.05" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2.8", - "2.8" - ], - "filament_pre_cooling_temperature": [ - "195", - "195" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_preheat_temperature_delta": [ - "10", - "10" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "0.7", - "0.7" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.2", - "0.2" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "impact_strength_z": [ - "88.7" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "25", - "25" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL H2D 0.8 nozzle", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_26", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_density": [ + "1.22" + ], + "filament_deretraction_speed": [ + "25", + "25" + ], + "filament_flow_ratio": [ + "1.05", + "1.05" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8" + ], + "filament_pre_cooling_temperature": [ + "195", + "195" + ], + "filament_ramming_travel_time": [ + "20", + "20" + ], + "filament_ramming_volumetric_speed": [ + "0.7", + "0.7" + ], + "filament_retraction_length": [ + "0.2", + "0.2" + ], + "filament_retraction_speed": [ + "10", + "10" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "impact_strength_z": [ + "88.7" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "25", + "25" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2D.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2D.json index e51fc63586..f2d39bc05c 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2D.json @@ -1,170 +1,290 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL H2D", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_02", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "10", - "10", - "30" - ], - "filament_flow_ratio": [ - "1", - "1", - "1.05" - ], - "filament_flush_temp": [ - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2.8", - "2.8", - "5.6" - ], - "filament_ramming_volumetric_speed": [ - "0.7", - "0.7", - "0.7" - ], - "filament_printable": [ - "2" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "2", - "2", - "2.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10", - "30" - ], - "filament_wipe": [ - "nil", - "nil", - "1" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "2" - ], - "filament_z_hop": [ - "nil", - "nil", - "0.4" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "Slope Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Direct Drive TPU High Flow" - ], - "filament_pre_cooling_temperature": [ - "195", - "195", - "195" - ], - "filament_ramming_travel_time": [ - "20", - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0" - ], - "impact_strength_z": [ - "88.7" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "nozzle_temperature": [ - "225", - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225", - "225" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL H2D", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_02", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_bridge_speed": [ + "25", + "25", + "30", + "25" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_cost": [ + "38.99" + ], + "filament_deretraction_speed": [ + "25", + "25", + "30", + "25" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive TPU High Flow", + "Direct Drive E3D High Flow" + ], + "filament_flow_ratio": [ + "1", + "1", + "1.05", + "1" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8", + "5.6", + "2.8" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "30", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "30", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "30", + "10" + ], + "filament_pre_cooling_temperature": [ + "195", + "195", + "195", + "195" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10", + "10" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "0.7", + "0.7", + "0.7", + "0.7" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "1.5", + "1.5", + "2.8", + "1.5" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "10", + "10", + "30", + "10" + ], + "filament_wipe": [ + "nil", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "2", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "0.4", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Slope Lift", + "Spiral Lift" + ], + "impact_strength_z": [ + "88.7" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "nozzle_temperature": [ + "225", + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225", + "225" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "override_process_overhang_speed": [ + "0", + "0", + "1", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "25", + "25", + "50", + "25" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2DP 0.6 nozzle.json index 8fee266af3..cb24fbdbdd 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2DP 0.6 nozzle.json @@ -1,205 +1,248 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL H2DP 0.6 nozzle", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_25", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10" - ], - "filament_density": [ - "1.22" - ], - "filament_deretraction_speed": [ - "25", - "25", - "30" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Direct Drive TPU High Flow" - ], - "filament_flow_ratio": [ - "1.05", - "1.05", - "1.08" - ], - "filament_flush_temp": [ - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2.8", - "2.8", - "5.6" - ], - "filament_pre_cooling_temperature": [ - "195", - "195", - "195" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0" - ], - "filament_preheat_temperature_delta": [ - "10", - "10", - "10" - ], - "filament_ramming_travel_time": [ - "20", - "20", - "20" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "0.7", - "0.7", - "0.7" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.6", - "0.6", - "1.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10", - "30" - ], - "filament_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Spiral Lift" - ], - "impact_strength_z": [ - "88.7" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1" - ], - "nozzle_temperature": [ - "225", - "225", - "220" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225", - "220" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "25", - "25", - "50" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL H2DP 0.6 nozzle", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_25", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0" + ], + "filament_bridge_speed": [ + "25", + "25", + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_density": [ + "1.22" + ], + "filament_deretraction_speed": [ + "25", + "25", + "30" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive TPU High Flow" + ], + "filament_flow_ratio": [ + "1.05", + "1.05", + "1.08" + ], + "filament_flush_temp": [ + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8", + "5.6" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "30" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "30" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "30" + ], + "filament_pre_cooling_temperature": [ + "195", + "195", + "195" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "0.7", + "0.7", + "0.7" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.6", + "0.6", + "1.8" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "10", + "10", + "30" + ], + "filament_wipe": [ + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "impact_strength_z": [ + "88.7" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1" + ], + "nozzle_temperature": [ + "225", + "225", + "220" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "220" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "override_process_overhang_speed": [ + "0", + "0", + "1" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "25", + "25", + "50" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2DP 0.8 nozzle.json index bc2728217d..6f8fc61c4e 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2DP 0.8 nozzle.json @@ -1,171 +1,94 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL H2DP 0.8 nozzle", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_27", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_density": [ - "1.22" - ], - "filament_deretraction_speed": [ - "25", - "25" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flow_ratio": [ - "1.05", - "1.05" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2.8", - "2.8" - ], - "filament_pre_cooling_temperature": [ - "195", - "195" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_preheat_temperature_delta": [ - "10", - "10" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "0.7", - "0.7" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.2", - "0.2" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "impact_strength_z": [ - "88.7" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "25", - "25" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL H2DP 0.8 nozzle", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_27", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_density": [ + "1.22" + ], + "filament_deretraction_speed": [ + "25", + "25" + ], + "filament_flow_ratio": [ + "1.05", + "1.05" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8" + ], + "filament_pre_cooling_temperature": [ + "195", + "195" + ], + "filament_ramming_travel_time": [ + "20", + "20" + ], + "filament_ramming_volumetric_speed": [ + "0.7", + "0.7" + ], + "filament_retraction_length": [ + "0.2", + "0.2" + ], + "filament_retraction_speed": [ + "10", + "10" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift" + ], + "impact_strength_z": [ + "88.7" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "25", + "25" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2DP.json index 52c6c8e3c8..a77efbc6d7 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2DP.json @@ -1,170 +1,248 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL H2DP", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_03", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "10", - "10", - "30" - ], - "filament_flow_ratio": [ - "1", - "1", - "1.05" - ], - "filament_flush_temp": [ - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2.8", - "2.8", - "5.6" - ], - "filament_ramming_volumetric_speed": [ - "0.7", - "0.7", - "0.7" - ], - "filament_printable": [ - "2" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "2", - "2", - "2.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10", - "30" - ], - "filament_wipe": [ - "nil", - "nil", - "1" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "2" - ], - "filament_z_hop": [ - "nil", - "nil", - "0.4" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "Slope Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Direct Drive TPU High Flow" - ], - "filament_pre_cooling_temperature": [ - "195", - "195", - "195" - ], - "filament_ramming_travel_time": [ - "20", - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0" - ], - "impact_strength_z": [ - "88.7" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "nozzle_temperature": [ - "225", - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225", - "225" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL H2DP", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_03", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0" + ], + "filament_bridge_speed": [ + "25", + "25", + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_cost": [ + "38.99" + ], + "filament_deretraction_speed": [ + "25", + "25", + "30" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive TPU High Flow" + ], + "filament_flow_ratio": [ + "1", + "1", + "1.05" + ], + "filament_flush_temp": [ + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8", + "5.6" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "30" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "30" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "30" + ], + "filament_pre_cooling_temperature": [ + "195", + "195", + "195" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "0.7", + "0.7", + "0.7" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "1.5", + "1.5", + "2.8" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "10", + "10", + "30" + ], + "filament_wipe": [ + "nil", + "nil", + "1" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "2" + ], + "filament_z_hop": [ + "nil", + "nil", + "0.4" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Slope Lift" + ], + "impact_strength_z": [ + "88.7" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1" + ], + "nozzle_temperature": [ + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "override_process_overhang_speed": [ + "0", + "0", + "1" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "25", + "25", + "50" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2S 0.6 nozzle.json index ae9da2933e..c56c11ff05 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2S 0.6 nozzle.json @@ -1,140 +1,107 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL H2S 0.6 nozzle", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_13", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "5.6", - "5.6" - ], - "filament_ramming_volumetric_speed": [ - "0.7", - "0.7" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "2", - "2" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_for_layer_cooling": [ - "0" - ], - "volumetric_speed_coefficients": [ - "85.1441 -0.1306 48.4938 -43.6862 -5.8088 5.5653", - "85.1441 -0.1306 48.4938 -43.6862 -5.8088 5.5653" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL H2S 0.6 nozzle", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_13", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "5.6", + "5.6", + "5.6" + ], + "filament_ramming_volumetric_speed": [ + "0.7", + "0.7", + "0.7" + ], + "filament_retraction_length": [ + "1", + "1", + "1" + ], + "filament_retraction_speed": [ + "10", + "10", + "10" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "30", + "30", + "30" + ], + "volumetric_speed_coefficients": [ + "85.1441 -0.1306 48.4938 -43.6862 -5.8088 5.5653", + "85.1441 -0.1306 48.4938 -43.6862 -5.8088 5.5653", + "85.1441 -0.1306 48.4938 -43.6862 -5.8088 5.5653" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2S 0.8 nozzle.json index 8b4a090877..d6358536a6 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2S 0.8 nozzle.json @@ -1,140 +1,95 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL H2S 0.8 nozzle", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_14", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "5", - "5" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "5.6", - "5.6" - ], - "filament_ramming_volumetric_speed": [ - "0.7", - "0.7" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "1", - "1" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "5", - "5" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_for_layer_cooling": [ - "0" - ], - "volumetric_speed_coefficients": [ - "48.0137 -0.3915 27.3862 -32.3779 -3.9738 5.2809", - "48.0137 -0.3915 27.3862 -32.3779 -3.9738 5.2809" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL H2S 0.8 nozzle", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_14", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "5.6", + "5.6" + ], + "filament_ramming_volumetric_speed": [ + "0.7", + "0.7" + ], + "filament_retraction_length": [ + "0.6", + "0.6" + ], + "filament_retraction_speed": [ + "10", + "10" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "18" + ], + "slow_down_min_speed": [ + "12", + "12" + ], + "volumetric_speed_coefficients": [ + "48.0137 -0.3915 27.3862 -32.3779 -3.9738 5.2809", + "48.0137 -0.3915 27.3862 -32.3779 -3.9738 5.2809" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2S.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2S.json index a0a432569e..0cae43b7ab 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL H2S.json @@ -1,140 +1,107 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL H2S", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_11", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "5.6", - "5.6" - ], - "filament_ramming_volumetric_speed": [ - "0.7", - "0.7" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "2", - "2" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "30" - ], - "volumetric_speed_coefficients": [ - "-20.9250 -1.8134 71.7462 1.9816 0.5060 -0.1901", - "-20.9250 -1.8134 71.7462 1.9816 0.5060 -0.1901" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL H2S", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_11", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "5.6", + "5.6", + "5.6" + ], + "filament_ramming_volumetric_speed": [ + "0.7", + "0.7", + "0.7" + ], + "filament_retraction_length": [ + "1", + "1", + "1" + ], + "filament_retraction_speed": [ + "10", + "10", + "10" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "30", + "30", + "30" + ], + "volumetric_speed_coefficients": [ + "-20.9250 -1.8134 71.7462 1.9816 0.5060 -0.1901", + "-20.9250 -1.8134 71.7462 1.9816 0.5060 -0.1901", + "-20.9250 -1.8134 71.7462 1.9816 0.5060 -0.1901" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL P1P.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL P1P.json index decf0510fc..e061018fc9 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL P1P.json @@ -1,121 +1,48 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL P1P", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2.8", - "2.8" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL P1P", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2.8", + "2.8" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL P2S 0.6 nozzle.json index ce3a3c1c9e..b294fbacc4 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL P2S 0.6 nozzle.json @@ -1,171 +1,86 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL P2S 0.6 nozzle", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_16", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2.8", - "2.8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.6", - "0.6" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "0", - "0" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL P2S 0.6 nozzle", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_16", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8", + "2.8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.6", + "0.6", + "0.6" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "0", + "0", + "0" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL P2S 0.8 nozzle.json index 7424760d4d..1c890a8ad9 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL P2S 0.8 nozzle.json @@ -1,171 +1,54 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL P2S 0.8 nozzle", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_17", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2.8", - "2.8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "1.2", - "1.2" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL P2S 0.8 nozzle", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_17", + "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.", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "1.2", + "1.2" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL P2S.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL P2S.json index ca32c1cb12..1942641481 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL P2S.json @@ -1,171 +1,71 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL P2S", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_10", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2.8", - "2.8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "1", - "1" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL P2S", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_10", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8", + "2.8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "1", + "1", + "1" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X1C.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X1C.json index df4538dc7e..d6978f2776 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X1C.json @@ -1,130 +1,68 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL X1C", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2.8", - "2.8" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "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 P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL X1C", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2.8", + "2.8" + ], + "filament_retraction_length": [ + "0.8", + "0.4" + ], + "filament_flow_ratio": [ + "1.029", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_z_hop": [ + "0.6", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "0" + ], + "compatible_printers": [ + "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 P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D 0.4 nozzle.json index a408dd51f2..849ff6609c 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D 0.4 nozzle.json @@ -1,278 +1,107 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL X2D 0.4 nozzle", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift", - "Auto Lift", - "Auto Lift" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_extruder_compatibility": [ - "8" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2.8", - "2.8", - "2.8", - "2.8" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "225" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "225", - "225", - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225", - "225", - "225" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL X2D 0.4 nozzle", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_06", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8", + "2.8", + "2.8", + "2.8", + "2.8" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "0.8", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "225" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift", + "Auto Lift", + "Auto Lift", + "Auto Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "225", + "225", + "225", + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225", + "225", + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D 0.8 nozzle.json index 4596dc5cfc..675c288c03 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D 0.8 nozzle.json @@ -1,281 +1,104 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL X2D 0.8 nozzle", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_15", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.5", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_extruder_compatibility": [ - "8" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2.8", - "2.8", - "2.8", - "2.8" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "225" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "225", - "225", - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225", - "225", - "225" - ], - "slow_down_for_layer_cooling": [ - "0" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL X2D 0.8 nozzle", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_15", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8", + "2.8", + "2.8" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.5", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "225" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "nil" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "nil" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "225", + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_for_layer_cooling": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D.json b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D.json index d41e9b3574..d9af1d226f 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @BBL X2D.json @@ -1,281 +1,126 @@ { - "type": "filament", - "name": "Bambu TPU 90A @BBL X2D", - "inherits": "Bambu TPU 90A @base", - "from": "system", - "setting_id": "GFSU03_07", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.5", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "nil", - "1", - "nil" - ], - "filament_wipe_distance": [ - "1", - "nil", - "1", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "nil", - "Spiral Lift", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_extruder_compatibility": [ - "8" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2.8", - "2.8", - "2.8", - "2.8" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "225" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "225", - "225", - "225", - "225" - ], - "nozzle_temperature_initial_layer": [ - "225", - "225", - "225", - "225" - ], - "slow_down_for_layer_cooling": [ - "0" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @BBL X2D", + "inherits": "Bambu TPU 90A @base", + "from": "system", + "setting_id": "GFSU03_07", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2.8", + "2.8", + "2.8", + "2.8", + "2.8", + "2.8" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.5", + "nil", + "0.5", + "nil", + "nil", + "nil" + ], + "filament_tower_interface_print_temp": [ + "225" + ], + "filament_wipe": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_wipe_distance": [ + "1", + "nil", + "1", + "1", + "nil", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "nil", + "Spiral Lift", + "Spiral Lift", + "nil", + "Spiral Lift" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "225", + "225", + "225", + "225", + "225", + "225" + ], + "nozzle_temperature_initial_layer": [ + "225", + "225", + "225", + "225", + "225", + "225" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slow_down_for_layer_cooling": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 90A @base.json b/resources/profiles/BBL/filament/Bambu TPU 90A @base.json index 2f2ae95b02..583c17a63d 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 90A @base.json +++ b/resources/profiles/BBL/filament/Bambu TPU 90A @base.json @@ -1,33 +1,33 @@ { - "type": "filament", - "name": "Bambu TPU 90A @base", - "inherits": "fdm_filament_tpu", - "from": "system", - "filament_id": "OFtkLO6q", - "instantiation": "false", - "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.", - "filament_cost": [ - "59.99" - ], - "filament_max_volumetric_speed": [ - "2.8" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "87.3" - ], - "nozzle_temperature": [ - "225" - ], - "nozzle_temperature_initial_layer": [ - "225" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "slow_down_layer_time": [ - "14" - ] -} + "type": "filament", + "name": "Bambu TPU 90A @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "OFtkLO6q", + "instantiation": "false", + "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.", + "filament_cost": [ + "38.99" + ], + "filament_max_volumetric_speed": [ + "2.8" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "87.3" + ], + "nozzle_temperature": [ + "225" + ], + "nozzle_temperature_initial_layer": [ + "225" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "slow_down_layer_time": [ + "14" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL A1.json b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL A1.json index 6e003d4717..1210ba985d 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL A1.json @@ -1,28 +1,28 @@ { - "type": "filament", - "name": "Bambu TPU 95A @BBL A1", - "inherits": "Bambu TPU 95A @base", - "from": "system", - "setting_id": "GFSU01_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "3.6" - ], - "hot_plate_temp": [ - "45" - ], - "hot_plate_temp_initial_layer": [ - "45" - ], - "textured_plate_temp": [ - "45" - ], - "textured_plate_temp_initial_layer": [ - "45" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 95A @BBL A1", + "inherits": "Bambu TPU 95A @base", + "from": "system", + "setting_id": "GFSU01_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3.6" + ], + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL A1M.json b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL A1M.json index 3a0cce1e89..eefb04f274 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL A1M.json @@ -1,28 +1,28 @@ { - "type": "filament", - "name": "Bambu TPU 95A @BBL A1M", - "inherits": "Bambu TPU 95A @base", - "from": "system", - "setting_id": "GFSU01_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "3.6" - ], - "hot_plate_temp": [ - "30" - ], - "hot_plate_temp_initial_layer": [ - "30" - ], - "textured_plate_temp": [ - "30" - ], - "textured_plate_temp_initial_layer": [ - "30" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 95A @BBL A1M", + "inherits": "Bambu TPU 95A @base", + "from": "system", + "setting_id": "GFSU01_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3.6" + ], + "hot_plate_temp": [ + "30" + ], + "hot_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "30" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL A2L.json b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL A2L.json index 767dc230ac..70c758c99c 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL A2L.json @@ -1,28 +1,28 @@ { - "type": "filament", - "name": "Bambu TPU 95A @BBL A2L", - "inherits": "Bambu TPU 95A @base", - "from": "system", - "setting_id": "GFSU01_11", - "instantiation": "true", - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_max_volumetric_speed": [ - "3.6" - ], - "pre_start_fan_time": [ - "0" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu TPU 95A @BBL A2L", + "inherits": "Bambu TPU 95A @base", + "from": "system", + "setting_id": "GFSU01_11", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_max_volumetric_speed": [ + "3.6" + ], + "pre_start_fan_time": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2C 0.4 nozzle.json index 252bc0a1bb..bbd0dbc809 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2C 0.4 nozzle.json @@ -1,180 +1,137 @@ { - "type": "filament", - "name": "Bambu TPU 95A @BBL H2C 0.4 nozzle", - "inherits": "Bambu TPU 95A @base", - "from": "system", - "setting_id": "GFSU01_08", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_deretraction_speed": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "3.6", - "3.6" - ], - "filament_ramming_volumetric_speed": [ - "0.9", - "0.9" - ], - "filament_ramming_volumetric_speed_nc": [ - "0.9", - "0.9" - ], - "filament_retraction_length": [ - "2", - "2" - ], - "filament_retraction_speed": [ - "10", - "10" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature": [ - "200", - "200" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_ramming_travel_time_nc": [ - "20", - "20" - ], - "filament_retract_length_nc": [ - "10", - "10" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 95A @BBL H2C 0.4 nozzle", + "inherits": "Bambu TPU 95A @base", + "from": "system", + "setting_id": "GFSU01_08", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3.6", + "3.6", + "3.6" + ], + "filament_ramming_volumetric_speed": [ + "0.9", + "0.9", + "0.9" + ], + "filament_ramming_volumetric_speed_nc": [ + "0.9", + "0.9", + "0.9" + ], + "filament_retraction_length": [ + "2", + "2", + "2" + ], + "filament_retraction_speed": [ + "10", + "10", + "10" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature": [ + "200", + "200", + "200" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190", + "190" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "20", + "20", + "20" + ], + "filament_retract_length_nc": [ + "10", + "10", + "10" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2C.json b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2C.json index 5ba6a6ae92..20331454b3 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2C.json @@ -1,181 +1,138 @@ { - "type": "filament", - "name": "Bambu TPU 95A @BBL H2C", - "inherits": "Bambu TPU 95A @base", - "from": "system", - "setting_id": "GFSU01_09", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_deretraction_speed": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "3.6", - "3.6" - ], - "filament_ramming_volumetric_speed": [ - "0.9", - "0.9" - ], - "filament_ramming_volumetric_speed_nc": [ - "0.9", - "0.9" - ], - "filament_retraction_length": [ - "2", - "2" - ], - "filament_retraction_speed": [ - "10", - "10" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature": [ - "200", - "200" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_ramming_travel_time_nc": [ - "20", - "20" - ], - "filament_retract_length_nc": [ - "10", - "10" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 95A @BBL H2C", + "inherits": "Bambu TPU 95A @base", + "from": "system", + "setting_id": "GFSU01_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3.6", + "3.6", + "3.6" + ], + "filament_ramming_volumetric_speed": [ + "0.9", + "0.9", + "0.9" + ], + "filament_ramming_volumetric_speed_nc": [ + "0.9", + "0.9", + "0.9" + ], + "filament_retraction_length": [ + "2", + "2", + "2" + ], + "filament_retraction_speed": [ + "10", + "10", + "10" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature": [ + "200", + "200", + "200" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190", + "190" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "20", + "20", + "20" + ], + "filament_retract_length_nc": [ + "10", + "10", + "10" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2D.json b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2D.json index 5c2937c6fb..fa3cb556e2 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2D.json @@ -1,166 +1,283 @@ { - "type": "filament", - "name": "Bambu TPU 95A @BBL H2D", - "inherits": "Bambu TPU 95A @base", - "from": "system", - "setting_id": "GFSU01_03", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "10", - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "3.6", - "3.6", - "3.6" - ], - "filament_ramming_volumetric_speed": [ - "0.9", - "0.9", - "0.9" - ], - "filament_printable": [ - "2" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "2", - "2", - "2" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10", - "10" - ], - "filament_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Direct Drive TPU High Flow" - ], - "filament_pre_cooling_temperature": [ - "200", - "200", - "200" - ], - "filament_ramming_travel_time": [ - "20", - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 95A @BBL H2D", + "inherits": "Bambu TPU 95A @base", + "from": "system", + "setting_id": "GFSU01_03", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "3.6", + "3.6", + "3.6", + "3.6" + ], + "filament_ramming_volumetric_speed": [ + "0.9", + "0.9", + "0.9", + "0.9" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "2", + "2", + "2", + "2" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive TPU High Flow", + "Direct Drive E3D High Flow" + ], + "filament_pre_cooling_temperature": [ + "200", + "200", + "200", + "200" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10", + "10" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2DP.json index a347feaa73..b2c79b2b94 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2DP.json @@ -1,166 +1,241 @@ { - "type": "filament", - "name": "Bambu TPU 95A @BBL H2DP", - "inherits": "Bambu TPU 95A @base", - "from": "system", - "setting_id": "GFSU01_06", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "10", - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "3.6", - "3.6", - "3.6" - ], - "filament_ramming_volumetric_speed": [ - "0.9", - "0.9", - "0.9" - ], - "filament_printable": [ - "2" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "2", - "2", - "2" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10", - "10" - ], - "filament_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Direct Drive TPU High Flow" - ], - "filament_pre_cooling_temperature": [ - "200", - "200", - "200" - ], - "filament_ramming_travel_time": [ - "20", - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 95A @BBL H2DP", + "inherits": "Bambu TPU 95A @base", + "from": "system", + "setting_id": "GFSU01_06", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0" + ], + "filament_bridge_speed": [ + "25", + "25", + "25" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10", + "10" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive TPU High Flow" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "3.6", + "3.6", + "3.6" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10" + ], + "filament_pre_cooling_temperature": [ + "200", + "200", + "200" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "0.9", + "0.9", + "0.9" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "2", + "2", + "2" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "10", + "10", + "10" + ], + "filament_wipe": [ + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "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.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2S.json b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2S.json index 0e6c571c17..af483d6b70 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL H2S.json @@ -1,142 +1,99 @@ { - "type": "filament", - "name": "Bambu TPU 95A @BBL H2S", - "inherits": "Bambu TPU 95A @base", - "from": "system", - "setting_id": "GFSU01_04", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "3.6", - "3.6" - ], - "filament_ramming_volumetric_speed": [ - "0.9", - "0.9" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "2", - "2" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU 95A @BBL H2S", + "inherits": "Bambu TPU 95A @base", + "from": "system", + "setting_id": "GFSU01_04", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3.6", + "3.6", + "3.6" + ], + "filament_ramming_volumetric_speed": [ + "0.9", + "0.9", + "0.9" + ], + "filament_retraction_length": [ + "2", + "2", + "2" + ], + "filament_retraction_speed": [ + "10", + "10", + "10" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL P2S.json b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL P2S.json index f3726eaa93..240ebd5486 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL P2S.json @@ -1,173 +1,73 @@ { - "type": "filament", - "name": "Bambu TPU 95A @BBL P2S", - "inherits": "Bambu TPU 95A @base", - "from": "system", - "setting_id": "GFSU01_05", - "instantiation": "true", - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "3.6", - "3.6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu TPU 95A @BBL P2S", + "inherits": "Bambu TPU 95A @base", + "from": "system", + "setting_id": "GFSU01_05", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3.6", + "3.6", + "3.6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X1.json b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X1.json index 2d726ce148..c64d5188c5 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X1.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X1.json @@ -1,121 +1,48 @@ { - "type": "filament", - "name": "Bambu TPU 95A @BBL X1", - "inherits": "Bambu TPU 95A @base", - "from": "system", - "setting_id": "GFSU01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "3.6", - "3.6" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 95A @BBL X1", + "inherits": "Bambu TPU 95A @base", + "from": "system", + "setting_id": "GFSU01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3.6", + "3.6" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X1C.json b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X1C.json index b134616a28..2cc7fbb6f3 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X1C.json @@ -1,127 +1,54 @@ { - "type": "filament", - "name": "Bambu TPU 95A @BBL X1C", - "inherits": "Bambu TPU 95A @base", - "from": "system", - "setting_id": "GFSU00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "3.6", - "3.6" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 95A @BBL X1C", + "inherits": "Bambu TPU 95A @base", + "from": "system", + "setting_id": "GFSU00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3.6", + "3.6" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X2D 0.4 nozzle.json index d99f6acf2d..f17756a8b3 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X2D 0.4 nozzle.json @@ -1,278 +1,99 @@ { - "type": "filament", - "name": "Bambu TPU 95A @BBL X2D 0.4 nozzle", - "inherits": "Bambu TPU 95A @base", - "from": "system", - "setting_id": "GFSU01_02", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_extruder_compatibility": [ - "8" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "3.6", - "3.6", - "3.6", - "3.6" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "230" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "230", - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu TPU 95A @BBL X2D 0.4 nozzle", + "inherits": "Bambu TPU 95A @base", + "from": "system", + "setting_id": "GFSU01_02", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3.6", + "3.6", + "3.6", + "3.6", + "3.6", + "3.6" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4", + "0.4", + "0.4" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X2D.json b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X2D.json index 14091161d3..4aab4ed5fe 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A @BBL X2D.json @@ -1,279 +1,100 @@ { - "type": "filament", - "name": "Bambu TPU 95A @BBL X2D", - "inherits": "Bambu TPU 95A @base", - "from": "system", - "setting_id": "GFSU01_07", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_extruder_compatibility": [ - "8" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "3.6", - "3.6", - "3.6", - "3.6" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "230" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "230", - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Bambu TPU 95A @BBL X2D", + "inherits": "Bambu TPU 95A @base", + "from": "system", + "setting_id": "GFSU01_07", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3.6", + "3.6", + "3.6", + "3.6", + "3.6", + "3.6" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4", + "0.4", + "0.4" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A @base.json b/resources/profiles/BBL/filament/Bambu TPU 95A @base.json index 7d94b0256c..82787c65ea 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A @base.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A @base.json @@ -1,27 +1,27 @@ { - "type": "filament", - "name": "Bambu TPU 95A @base", - "inherits": "fdm_filament_tpu", - "from": "system", - "filament_id": "OFVCkX5w", - "instantiation": "false", - "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.", - "filament_cost": [ - "41.99" - ], - "filament_density": [ - "1.22" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "88.7" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ] -} + "type": "filament", + "name": "Bambu TPU 95A @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "OFVCkX5w", + "instantiation": "false", + "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.", + "filament_cost": [ + "41.99" + ], + "filament_density": [ + "1.22" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "88.7" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A1.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A1.json index 6654c53566..bf8526e1bf 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A1.json @@ -1,34 +1,34 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL A1", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_06", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil" - ], - "filament_retraction_length": [ - "0.8" - ], - "filament_retraction_speed": [ - "nil" - ], - "hot_plate_temp": [ - "45" - ], - "hot_plate_temp_initial_layer": [ - "45" - ], - "textured_plate_temp": [ - "45" - ], - "textured_plate_temp_initial_layer": [ - "45" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 95A HF @BBL A1", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_06", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil" + ], + "filament_retraction_length": [ + "0.8" + ], + "filament_retraction_speed": [ + "nil" + ], + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A1M.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A1M.json index 658003f5bd..a02dcb29ea 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A1M.json @@ -1,34 +1,34 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL A1M", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_05", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil" - ], - "filament_retraction_length": [ - "0.8" - ], - "filament_retraction_speed": [ - "nil" - ], - "hot_plate_temp": [ - "30" - ], - "hot_plate_temp_initial_layer": [ - "30" - ], - "textured_plate_temp": [ - "30" - ], - "textured_plate_temp_initial_layer": [ - "30" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 95A HF @BBL A1M", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_05", + "instantiation": "true", + "filament_deretraction_speed": [ + "nil" + ], + "filament_retraction_length": [ + "0.8" + ], + "filament_retraction_speed": [ + "nil" + ], + "hot_plate_temp": [ + "30" + ], + "hot_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "30" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A2L 0.6 nozzle.json index 27926d79eb..a9f31bef41 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A2L 0.6 nozzle.json @@ -1,35 +1,35 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL A2L 0.6 nozzle", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_24", - "instantiation": "true", - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "50" - ], - "filament_retraction_length": [ - "2.5" - ], - "filament_retraction_speed": [ - "100" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_min_speed": [ - "50" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu TPU 95A HF @BBL A2L 0.6 nozzle", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_24", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_deretraction_speed": [ + "50" + ], + "filament_retraction_length": [ + "2.5" + ], + "filament_retraction_speed": [ + "100" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_min_speed": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A2L 0.8 nozzle.json index e332366dad..b4eacb1a62 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A2L 0.8 nozzle.json @@ -1,35 +1,35 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL A2L 0.8 nozzle", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_25", - "instantiation": "true", - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "50" - ], - "filament_retraction_length": [ - "1.2" - ], - "filament_retraction_speed": [ - "100" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_min_speed": [ - "50" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu TPU 95A HF @BBL A2L 0.8 nozzle", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_25", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_deretraction_speed": [ + "50" + ], + "filament_retraction_length": [ + "1.2" + ], + "filament_retraction_speed": [ + "100" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_min_speed": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A2L.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A2L.json index 4a0835012a..44bcddd47b 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL A2L.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL A2L", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_15", - "instantiation": "true", - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "50" - ], - "filament_retraction_length": [ - "1.2" - ], - "filament_retraction_speed": [ - "100" - ], - "nozzle_temperature": [ - "240" - ], - "nozzle_temperature_initial_layer": [ - "240" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_min_speed": [ - "50" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu TPU 95A HF @BBL A2L", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_15", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_deretraction_speed": [ + "50" + ], + "filament_retraction_length": [ + "1.2" + ], + "filament_retraction_speed": [ + "100" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_min_speed": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2C 0.4 nozzle.json index f451928fb0..e482736c0e 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2C 0.4 nozzle.json @@ -1,183 +1,140 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL H2C 0.4 nozzle", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_13", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_deretraction_speed": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "3.0", - "3.0" - ], - "filament_ramming_volumetric_speed_nc": [ - "3.0", - "3.0" - ], - "filament_retraction_length": [ - "2", - "2" - ], - "filament_retraction_speed": [ - "10", - "10" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature": [ - "200", - "200" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_ramming_travel_time_nc": [ - "20", - "20" - ], - "filament_retract_length_nc": [ - "10", - "10" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "70" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu TPU 95A HF @BBL H2C 0.4 nozzle", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_13", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_volumetric_speed": [ + "3.0", + "3.0", + "3.0" + ], + "filament_ramming_volumetric_speed_nc": [ + "3.0", + "3.0", + "3.0" + ], + "filament_retraction_length": [ + "2", + "2", + "2" + ], + "filament_retraction_speed": [ + "10", + "10", + "10" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature": [ + "200", + "200", + "200" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190", + "190" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "20", + "20", + "20" + ], + "filament_retract_length_nc": [ + "10", + "10", + "10" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "70" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..d2368268d3 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2C 0.8 nozzle.json @@ -0,0 +1,134 @@ +{ + "type": "filament", + "name": "Bambu TPU 95A HF @BBL H2C 0.8 nozzle", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_26", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_pre_cooling_temperature": [ + "200", + "200" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "20", + "20" + ], + "filament_ramming_volumetric_speed": [ + "3.0", + "3.0" + ], + "filament_ramming_volumetric_speed_nc": [ + "3.0", + "3.0" + ], + "filament_retract_length_nc": [ + "10", + "10" + ], + "filament_retraction_length": [ + "2", + "2" + ], + "filament_retraction_speed": [ + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "temperature_vitrification": [ + "70" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2C.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2C.json index 347c0fc4d7..52fdb8633b 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2C.json @@ -1,184 +1,140 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL H2C", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_14", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_deretraction_speed": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "3.0", - "3.0" - ], - "filament_ramming_volumetric_speed_nc": [ - "3.0", - "3.0" - ], - "filament_retraction_length": [ - "2", - "2" - ], - "filament_retraction_speed": [ - "10", - "10" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature": [ - "200", - "200" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_ramming_travel_time_nc": [ - "20", - "20" - ], - "filament_retract_length_nc": [ - "10", - "10" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "70" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu TPU 95A HF @BBL H2C", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_14", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_pre_cooling_temperature": [ + "200", + "200", + "200" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190", + "190" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "20", + "20", + "20" + ], + "filament_ramming_volumetric_speed": [ + "3.0", + "3.0", + "3.0" + ], + "filament_ramming_volumetric_speed_nc": [ + "3.0", + "3.0", + "3.0" + ], + "filament_retract_length_nc": [ + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "2", + "2", + "2" + ], + "filament_retraction_speed": [ + "10", + "10", + "10" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "70" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2D 0.4 nozzle.json index b061a22065..38726b7410 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2D 0.4 nozzle.json @@ -1,46 +1,65 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL H2D 0.4 nozzle", - "inherits": "Bambu TPU 95A HF @BBL H2D", - "from": "system", - "setting_id": "GFSU00_20", - "instantiation": "true", - "filament_deretraction_speed": [ - "10", - "10", - "50" - ], - "filament_retraction_length": [ - "2", - "2", - "0.8" - ], - "filament_retraction_speed": [ - "10", - "10", - "50" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "Slope Lift" - ], - "nozzle_temperature": [ - "230", - "230", - "240" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "240" - ], - "slow_down_min_speed": [ - "10", - "10", - "40" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ] + "type": "filament", + "name": "Bambu TPU 95A HF @BBL H2D 0.4 nozzle", + "inherits": "Bambu TPU 95A HF @BBL H2D", + "from": "system", + "setting_id": "GFSU00_20", + "instantiation": "true", + "filament_deretraction_speed": [ + "10", + "10", + "50", + "10" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10", + "10" + ], + "filament_retraction_length": [ + "2", + "2", + "0.8", + "2" + ], + "filament_retraction_speed": [ + "10", + "10", + "50", + "10" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "Slope Lift", + "nil" + ], + "filament_bridge_speed": [ + "25", + "25", + "50", + "25" + ], + "nozzle_temperature": [ + "230", + "230", + "240", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "240", + "230" + ], + "slow_down_min_speed": [ + "10", + "10", + "40", + "10" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ] } diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2D 0.8 nozzle.json new file mode 100644 index 0000000000..04662c4e58 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2D 0.8 nozzle.json @@ -0,0 +1,101 @@ +{ + "type": "filament", + "name": "Bambu TPU 95A HF @BBL H2D 0.8 nozzle", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_27", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_pre_cooling_temperature": [ + "200", + "200" + ], + "filament_preheat_temperature_delta": [ + "10", + "10" + ], + "filament_ramming_travel_time": [ + "20", + "20" + ], + "filament_ramming_volumetric_speed": [ + "3.0", + "3.0" + ], + "filament_retraction_length": [ + "2", + "2" + ], + "filament_retraction_speed": [ + "10", + "10" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2D.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2D.json index 57f8ff236f..e4333a1576 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2D.json @@ -1,165 +1,281 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL H2D", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_08", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "10", - "10", - "40" - ], - "filament_flow_ratio": [ - "1", - "1", - "0.99" - ], - "filament_flush_temp": [ - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "16" - ], - "filament_ramming_volumetric_speed": [ - "3.0", - "3.0", - "3.0" - ], - "filament_printable": [ - "2" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "2", - "2", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10", - "40" - ], - "filament_wipe": [ - "nil", - "nil", - "1" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Direct Drive TPU High Flow" - ], - "filament_pre_cooling_temperature": [ - "200", - "200", - "200" - ], - "filament_ramming_travel_time": [ - "20", - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230", - "235" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "235" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu TPU 95A HF @BBL H2D", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_08", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10", + "40", + "10" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive TPU High Flow", + "Direct Drive E3D High Flow" + ], + "filament_flow_ratio": [ + "1", + "1", + "0.99", + "1" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "16", + "12" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "25", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "25", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "25", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "25", + "10" + ], + "filament_pre_cooling_temperature": [ + "200", + "200", + "200", + "200" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10", + "10" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "3.0", + "3.0", + "3.0", + "3.0" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "2", + "2", + "0.4", + "2" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "10", + "10", + "40", + "10" + ], + "filament_wipe": [ + "nil", + "nil", + "1", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "1", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "Spiral Lift", + "nil" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "nozzle_temperature": [ + "230", + "230", + "235", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "235", + "230" + ], + "override_process_overhang_speed": [ + "0", + "0", + "1", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "30", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2DP 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2DP 0.4 nozzle.json index c99895e092..721fae1b45 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2DP 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2DP 0.4 nozzle.json @@ -1,51 +1,56 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL H2DP 0.4 nozzle", - "inherits": "Bambu TPU 95A HF @BBL H2DP", - "from": "system", - "setting_id": "GFSU00_21", - "instantiation": "true", - "filament_deretraction_speed": [ - "10", - "10", - "50" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "16" - ], - "filament_retraction_length": [ - "2", - "2", - "0.8" - ], - "filament_retraction_speed": [ - "10", - "10", - "50" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "Slope Lift" - ], - "nozzle_temperature": [ - "230", - "230", - "240" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "240" - ], - "slow_down_min_speed": [ - "10", - "10", - "40" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 95A HF @BBL H2DP 0.4 nozzle", + "inherits": "Bambu TPU 95A HF @BBL H2DP", + "from": "system", + "setting_id": "GFSU00_21", + "instantiation": "true", + "filament_bridge_speed": [ + "25", + "25", + "50" + ], + "filament_deretraction_speed": [ + "10", + "10", + "50" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "16" + ], + "filament_retraction_length": [ + "2", + "2", + "0.8" + ], + "filament_retraction_speed": [ + "10", + "10", + "50" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "Slope Lift" + ], + "nozzle_temperature": [ + "230", + "230", + "240" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "240" + ], + "slow_down_min_speed": [ + "10", + "10", + "40" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2DP 0.8 nozzle.json new file mode 100644 index 0000000000..68762079c0 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2DP 0.8 nozzle.json @@ -0,0 +1,101 @@ +{ + "type": "filament", + "name": "Bambu TPU 95A HF @BBL H2DP 0.8 nozzle", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_28", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_pre_cooling_temperature": [ + "200", + "200" + ], + "filament_preheat_temperature_delta": [ + "10", + "10" + ], + "filament_ramming_travel_time": [ + "20", + "20" + ], + "filament_ramming_volumetric_speed": [ + "3.0", + "3.0" + ], + "filament_retraction_length": [ + "2", + "2" + ], + "filament_retraction_speed": [ + "10", + "10" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2DP.json index 181e7f9931..d0b0b6191f 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2DP.json @@ -1,165 +1,239 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL H2DP", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_11", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "10", - "10", - "40" - ], - "filament_flow_ratio": [ - "1", - "1", - "0.99" - ], - "filament_flush_temp": [ - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "3.0", - "3.0", - "3.0" - ], - "filament_printable": [ - "2" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "2", - "2", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10", - "40" - ], - "filament_wipe": [ - "nil", - "nil", - "1" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "1" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Direct Drive TPU High Flow" - ], - "filament_pre_cooling_temperature": [ - "200", - "200", - "200" - ], - "filament_ramming_travel_time": [ - "20", - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230", - "235" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "235" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu TPU 95A HF @BBL H2DP", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_11", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0" + ], + "filament_bridge_speed": [ + "25", + "25", + "25" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10", + "40" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive TPU High Flow" + ], + "filament_flow_ratio": [ + "1", + "1", + "0.99" + ], + "filament_flush_temp": [ + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "16" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "25" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "25" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "25" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "25" + ], + "filament_pre_cooling_temperature": [ + "200", + "200", + "200" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "20" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "3.0", + "3.0", + "3.0" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "2", + "2", + "0.4" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "10", + "10", + "40" + ], + "filament_wipe": [ + "nil", + "nil", + "1" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "1" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "Spiral Lift" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1" + ], + "nozzle_temperature": [ + "230", + "230", + "235" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "235" + ], + "override_process_overhang_speed": [ + "0", + "0", + "1" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "30" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2S 0.6 nozzle.json new file mode 100644 index 0000000000..c9afffaaf8 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2S 0.6 nozzle.json @@ -0,0 +1,109 @@ +{ + "type": "filament", + "name": "Bambu TPU 95A HF @BBL H2S 0.6 nozzle", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_29", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "3", + "3", + "3" + ], + "filament_retraction_length": [ + "2", + "2", + "2" + ], + "filament_retraction_speed": [ + "10", + "10", + "10" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2S 0.8 nozzle.json new file mode 100644 index 0000000000..bbe70e2225 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2S 0.8 nozzle.json @@ -0,0 +1,96 @@ +{ + "type": "filament", + "name": "Bambu TPU 95A HF @BBL H2S 0.8 nozzle", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_30", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "3", + "3" + ], + "filament_retraction_length": [ + "2", + "2" + ], + "filament_retraction_speed": [ + "10", + "10" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2S.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2S.json index b48e66e6ae..82964bc87a 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL H2S.json @@ -1,142 +1,97 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL H2S", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_09", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "3", - "3" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "2", - "2" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "10", - "10" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu TPU 95A HF @BBL H2S", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "3", + "3", + "3" + ], + "filament_retraction_length": [ + "2", + "2", + "2" + ], + "filament_retraction_speed": [ + "10", + "10", + "10" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P1P.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P1P.json index 5cb160ae36..1a3cef67ba 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P1P.json @@ -1,133 +1,60 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL P1P", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_02", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "45" - ], - "hot_plate_temp_initial_layer": [ - "45" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "45" - ], - "textured_plate_temp_initial_layer": [ - "45" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 95A HF @BBL P1P", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_02", + "instantiation": "true", + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "45" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P1S.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P1S.json index e13dd4b154..7710412bc5 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P1S.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P1S.json @@ -1,121 +1,48 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL P1S", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_03", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 95A HF @BBL P1S", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_03", + "instantiation": "true", + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P2S 0.6 nozzle.json new file mode 100644 index 0000000000..949d9c0906 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P2S 0.6 nozzle.json @@ -0,0 +1,86 @@ +{ + "type": "filament", + "name": "Bambu TPU 95A HF @BBL P2S 0.6 nozzle", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_31", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "0.8" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P2S 0.8 nozzle.json new file mode 100644 index 0000000000..a2665f6707 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P2S 0.8 nozzle.json @@ -0,0 +1,77 @@ +{ + "type": "filament", + "name": "Bambu TPU 95A HF @BBL P2S 0.8 nozzle", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_32", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P2S.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P2S.json index 23b20373bb..ab6761cea9 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL P2S.json @@ -1,176 +1,74 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL P2S", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_10", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu TPU 95A HF @BBL P2S", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_10", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "0.8" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X1.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X1.json index df952405f8..41b3e48dfc 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X1.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X1.json @@ -1,121 +1,48 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL X1", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_01", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 95A HF @BBL X1", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_01", + "instantiation": "true", + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X1C.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X1C.json index 9f700cf01f..7bef00ce3f 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X1C.json @@ -1,121 +1,48 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL X1C", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_00", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 95A HF @BBL X1C", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_00", + "instantiation": "true", + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X1E.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X1E.json index e5a5db367f..b855400979 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X1E.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X1E.json @@ -1,121 +1,48 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL X1E", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_04", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 95A HF @BBL X1E", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_04", + "instantiation": "true", + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D 0.4 nozzle.json index b9ab2be6e6..f29d6d6f42 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D 0.4 nozzle.json @@ -1,278 +1,99 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL X2D 0.4 nozzle", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_07", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8", - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_extruder_compatibility": [ - "8" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "230" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "230", - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu TPU 95A HF @BBL X2D 0.4 nozzle", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_07", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "0.8", + "0.8", + "0.8", + "0.8" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..7b2087f6a4 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D 0.8 nozzle.json @@ -0,0 +1,101 @@ +{ + "type": "filament", + "name": "Bambu TPU 95A HF @BBL X2D 0.8 nozzle", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_33", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "0.8", + "0.8" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D.json index 8fd01e296c..c44f6842fc 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @BBL X2D.json @@ -1,279 +1,99 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @BBL X2D", - "inherits": "Bambu TPU 95A HF @base", - "from": "system", - "setting_id": "GFSU00_12", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8", - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_extruder_compatibility": [ - "8" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "230" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "230", - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu TPU 95A HF @BBL X2D", + "inherits": "Bambu TPU 95A HF @base", + "from": "system", + "setting_id": "GFSU00_12", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "8" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "0.8", + "0.8", + "0.8", + "0.8" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu TPU 95A HF @base.json b/resources/profiles/BBL/filament/Bambu TPU 95A HF @base.json index 9f977eb5b2..d13561f288 100644 --- a/resources/profiles/BBL/filament/Bambu TPU 95A HF @base.json +++ b/resources/profiles/BBL/filament/Bambu TPU 95A HF @base.json @@ -1,39 +1,39 @@ { - "type": "filament", - "name": "Bambu TPU 95A HF @base", - "inherits": "fdm_filament_tpu", - "from": "system", - "filament_id": "OFvKUnLh", - "instantiation": "false", - "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.", - "filament_cost": [ - "41.99" - ], - "filament_density": [ - "1.22" - ], - "filament_deretraction_speed": [ - "10" - ], - "filament_max_volumetric_speed": [ - "12" - ], - "filament_retraction_length": [ - "2" - ], - "filament_retraction_speed": [ - "10" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "86.3" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ] -} + "type": "filament", + "name": "Bambu TPU 95A HF @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "OFvKUnLh", + "instantiation": "false", + "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.", + "filament_cost": [ + "38.99" + ], + "filament_density": [ + "1.22" + ], + "filament_deretraction_speed": [ + "10" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_retraction_length": [ + "2" + ], + "filament_retraction_speed": [ + "10" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "86.3" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A1.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A1.json index 5e46c3fc96..a892637409 100644 --- a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A1.json +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A1.json @@ -1,25 +1,25 @@ { - "type": "filament", - "name": "Bambu TPU for AMS @BBL A1", - "inherits": "Bambu TPU for AMS @base", - "from": "system", - "setting_id": "GFSU02_02", - "instantiation": "true", - "fan_max_speed": [ - "40" - ], - "filament_deretraction_speed": [ - "nil" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_retraction_speed": [ - "nil" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU for AMS @BBL A1", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_02", + "instantiation": "true", + "fan_max_speed": [ + "40" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_retraction_speed": [ + "nil" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A1M.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A1M.json index 47baba277b..5d6371640b 100644 --- a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A1M.json +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A1M.json @@ -1,25 +1,25 @@ { - "type": "filament", - "name": "Bambu TPU for AMS @BBL A1M", - "inherits": "Bambu TPU for AMS @base", - "from": "system", - "setting_id": "GFSU02_03", - "instantiation": "true", - "fan_max_speed": [ - "40" - ], - "filament_deretraction_speed": [ - "nil" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_retraction_speed": [ - "nil" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU for AMS @BBL A1M", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_03", + "instantiation": "true", + "fan_max_speed": [ + "40" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_retraction_speed": [ + "nil" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A2L 0.6 nozzle.json index f4d92511dd..cbb5ed89f9 100644 --- a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A2L 0.6 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "Bambu TPU for AMS @BBL A2L 0.6 nozzle", - "inherits": "Bambu TPU for AMS @base", - "from": "system", - "setting_id": "GFSU02_21", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "30" - ], - "filament_deretraction_speed": [ - "nil" - ], - "filament_retraction_length": [ - "0.6" - ], - "filament_retraction_speed": [ - "90" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_layer_time": [ - "19" - ], - "slow_down_min_speed": [ - "30" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu TPU for AMS @BBL A2L 0.6 nozzle", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_21", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_retraction_length": [ + "0.6" + ], + "filament_retraction_speed": [ + "90" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_layer_time": [ + "19" + ], + "slow_down_min_speed": [ + "30" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A2L 0.8 nozzle.json index 02a3c85695..e05f85cd65 100644 --- a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A2L 0.8 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "Bambu TPU for AMS @BBL A2L 0.8 nozzle", - "inherits": "Bambu TPU for AMS @base", - "from": "system", - "setting_id": "GFSU02_22", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "30" - ], - "filament_deretraction_speed": [ - "nil" - ], - "filament_retraction_length": [ - "0.6" - ], - "filament_retraction_speed": [ - "90" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_layer_time": [ - "16" - ], - "slow_down_min_speed": [ - "30" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu TPU for AMS @BBL A2L 0.8 nozzle", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_22", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_retraction_length": [ + "0.6" + ], + "filament_retraction_speed": [ + "90" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_layer_time": [ + "16" + ], + "slow_down_min_speed": [ + "30" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A2L.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A2L.json index 3338821e07..f7558a1f12 100644 --- a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A2L.json +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL A2L.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Bambu TPU for AMS @BBL A2L", - "inherits": "Bambu TPU for AMS @base", - "from": "system", - "setting_id": "GFSU02_12", - "instantiation": "true", - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_deretraction_speed": [ - "nil" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_retraction_speed": [ - "nil" - ], - "filament_wipe": [ - "1" - ], - "filament_wipe_distance": [ - "1" - ], - "filament_z_hop_types": [ - "Spiral Lift" - ], - "pre_start_fan_time": [ - "0" - ], - "slow_down_layer_time": [ - "12" - ], - "slow_down_min_speed": [ - "35" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Bambu TPU for AMS @BBL A2L", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_12", + "instantiation": "true", + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_wipe": [ + "1" + ], + "filament_wipe_distance": [ + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift" + ], + "pre_start_fan_time": [ + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "35" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2C 0.4 nozzle.json index 68b634336d..73f4e42208 100644 --- a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2C 0.4 nozzle.json @@ -1,186 +1,123 @@ { - "type": "filament", - "name": "Bambu TPU for AMS @BBL H2C 0.4 nozzle", - "inherits": "Bambu TPU for AMS @base", - "from": "system", - "setting_id": "GFSU02_09", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "fan_max_speed": [ - "40" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "4.5", - "4.5" - ], - "filament_ramming_volumetric_speed_nc": [ - "4.5", - "4.5" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature": [ - "200", - "200" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_ramming_travel_time_nc": [ - "20", - "20" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu TPU for AMS @BBL H2C 0.4 nozzle", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_volumetric_speed": [ + "4.5", + "4.5", + "4.5" + ], + "filament_ramming_volumetric_speed_nc": [ + "4.5", + "4.5", + "4.5" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature": [ + "200", + "200", + "200" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190", + "190" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "20", + "20", + "20" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..0e54a2e1d5 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2C 0.8 nozzle.json @@ -0,0 +1,121 @@ +{ + "type": "filament", + "name": "Bambu TPU for AMS @BBL H2C 0.8 nozzle", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_25", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "40" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_pre_cooling_temperature": [ + "200", + "200" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "20", + "20" + ], + "filament_ramming_volumetric_speed": [ + "4.5", + "4.5" + ], + "filament_ramming_volumetric_speed_nc": [ + "4.5", + "4.5" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "temperature_vitrification": [ + "40" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2C.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2C.json index 2eca7e2354..74253e1452 100644 --- a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2C.json +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2C.json @@ -1,187 +1,123 @@ { - "type": "filament", - "name": "Bambu TPU for AMS @BBL H2C", - "inherits": "Bambu TPU for AMS @base", - "from": "system", - "setting_id": "GFSU02_10", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "fan_max_speed": [ - "40" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "4.5", - "4.5" - ], - "filament_ramming_volumetric_speed_nc": [ - "4.5", - "4.5" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature": [ - "200", - "200" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_ramming_travel_time_nc": [ - "20", - "20" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu TPU for AMS @BBL H2C", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_10", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "40" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_pre_cooling_temperature": [ + "200", + "200", + "200" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190", + "190" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "20", + "20", + "20" + ], + "filament_ramming_volumetric_speed": [ + "4.5", + "4.5", + "4.5" + ], + "filament_ramming_volumetric_speed_nc": [ + "4.5", + "4.5", + "4.5" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2D 0.6 nozzle.json new file mode 100644 index 0000000000..24405af162 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2D 0.6 nozzle.json @@ -0,0 +1,99 @@ +{ + "type": "filament", + "name": "Bambu TPU for AMS @BBL H2D 0.6 nozzle", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_26", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_pre_cooling_temperature": [ + "200", + "200", + "200" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_volumetric_speed": [ + "4.5", + "4.5", + "4.5" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2D 0.8 nozzle.json new file mode 100644 index 0000000000..cc9f65412d --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2D 0.8 nozzle.json @@ -0,0 +1,88 @@ +{ + "type": "filament", + "name": "Bambu TPU for AMS @BBL H2D 0.8 nozzle", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_27", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_pre_cooling_temperature": [ + "200", + "200" + ], + "filament_preheat_temperature_delta": [ + "10", + "10" + ], + "filament_ramming_travel_time": [ + "20", + "20" + ], + "filament_ramming_volumetric_speed": [ + "4.5", + "4.5" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2D.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2D.json index 2762b73aed..22d29a0b08 100644 --- a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2D.json +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2D.json @@ -1,139 +1,82 @@ { - "type": "filament", - "name": "Bambu TPU for AMS @BBL H2D", - "inherits": "Bambu TPU for AMS @base", - "from": "system", - "setting_id": "GFSU02_04", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "fan_max_speed": [ - "40" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "4.5", - "4.5" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "200", - "200" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Bambu TPU for AMS @BBL H2D", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_04", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_pre_cooling_temperature": [ + "200", + "200", + "200" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_volumetric_speed": [ + "4.5", + "4.5", + "4.5" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2DP 0.6 nozzle.json new file mode 100644 index 0000000000..728ec60720 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2DP 0.6 nozzle.json @@ -0,0 +1,84 @@ +{ + "type": "filament", + "name": "Bambu TPU for AMS @BBL H2DP 0.6 nozzle", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_28", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_pre_cooling_temperature": [ + "200", + "200" + ], + "filament_ramming_travel_time": [ + "20", + "20" + ], + "filament_ramming_volumetric_speed": [ + "4.5", + "4.5" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2DP 0.8 nozzle.json new file mode 100644 index 0000000000..405b96caa6 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2DP 0.8 nozzle.json @@ -0,0 +1,84 @@ +{ + "type": "filament", + "name": "Bambu TPU for AMS @BBL H2DP 0.8 nozzle", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_29", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_pre_cooling_temperature": [ + "200", + "200" + ], + "filament_ramming_travel_time": [ + "20", + "20" + ], + "filament_ramming_volumetric_speed": [ + "4.5", + "4.5" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2DP.json index b4ca419611..641c6bd8b2 100644 --- a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2DP.json @@ -1,139 +1,72 @@ { - "type": "filament", - "name": "Bambu TPU for AMS @BBL H2DP", - "inherits": "Bambu TPU for AMS @base", - "from": "system", - "setting_id": "GFSU02_06", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "fan_max_speed": [ - "40" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "4.5", - "4.5" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "200", - "200" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu TPU for AMS @BBL H2DP", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_06", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_pre_cooling_temperature": [ + "200", + "200" + ], + "filament_ramming_travel_time": [ + "20", + "20" + ], + "filament_ramming_volumetric_speed": [ + "4.5", + "4.5" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2S 0.6 nozzle.json new file mode 100644 index 0000000000..3791a37dfb --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2S 0.6 nozzle.json @@ -0,0 +1,129 @@ +{ + "type": "filament", + "name": "Bambu TPU for AMS @BBL H2S 0.6 nozzle", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_24", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "40" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_pre_cooling_temperature": [ + "200", + "200", + "200" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190", + "190" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "20", + "20", + "20" + ], + "filament_ramming_volumetric_speed": [ + "4.5", + "4.5", + "4.5" + ], + "filament_ramming_volumetric_speed_nc": [ + "4.5", + "4.5", + "4.5" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2S 0.8 nozzle.json new file mode 100644 index 0000000000..785f6512f1 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2S 0.8 nozzle.json @@ -0,0 +1,115 @@ +{ + "type": "filament", + "name": "Bambu TPU for AMS @BBL H2S 0.8 nozzle", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_23", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "40" + ], + "filament_change_length": [ + "4" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_pre_cooling_temperature": [ + "200", + "200" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_ramming_travel_time": [ + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "20", + "20" + ], + "filament_ramming_volumetric_speed": [ + "4.5", + "4.5" + ], + "filament_ramming_volumetric_speed_nc": [ + "4.5", + "4.5" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2S.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2S.json index f497204aa0..195742bdb0 100644 --- a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2S.json +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL H2S.json @@ -1,145 +1,90 @@ { - "type": "filament", - "name": "Bambu TPU for AMS @BBL H2S", - "inherits": "Bambu TPU for AMS @base", - "from": "system", - "setting_id": "GFSU02_11", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "fan_max_speed": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "4.5", - "4.5" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] + "type": "filament", + "name": "Bambu TPU for AMS @BBL H2S", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_11", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "4.5", + "4.5", + "4.5" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P1P 0.6 nozzle.json new file mode 100644 index 0000000000..bf9b7554f8 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P1P 0.6 nozzle.json @@ -0,0 +1,61 @@ +{ + "type": "filament", + "name": "Bambu TPU for AMS @BBL P1P 0.6 nozzle", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_16", + "instantiation": "true", + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.97", + "0.975" + ], + "filament_max_volumetric_speed": [ + "18", + "6" + ], + "filament_retraction_length": [ + "0.4", + "0.2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P1P.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P1P.json index e62c1e698b..80d40378a7 100644 --- a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P1P.json +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P1P.json @@ -1,127 +1,53 @@ { - "type": "filament", - "name": "Bambu TPU for AMS @BBL P1P", - "inherits": "Bambu TPU for AMS @base", - "from": "system", - "setting_id": "GFSU02_01", - "instantiation": "true", - "fan_max_speed": [ - "40" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU for AMS @BBL P1P", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_01", + "instantiation": "true", + "fan_max_speed": [ + "40" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_flow_ratio": [ + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P2S 0.6 nozzle.json new file mode 100644 index 0000000000..4f2c364ef4 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P2S 0.6 nozzle.json @@ -0,0 +1,92 @@ +{ + "type": "filament", + "name": "Bambu TPU for AMS @BBL P2S 0.6 nozzle", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_30", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P2S 0.8 nozzle.json new file mode 100644 index 0000000000..fe6a92f21c --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P2S 0.8 nozzle.json @@ -0,0 +1,83 @@ +{ + "type": "filament", + "name": "Bambu TPU for AMS @BBL P2S 0.8 nozzle", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_31", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_flow_ratio": [ + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P2S.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P2S.json index db5c9e608c..bf1249ebcb 100644 --- a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P2S.json +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL P2S.json @@ -1,182 +1,80 @@ { - "type": "filament", - "name": "Bambu TPU for AMS @BBL P2S", - "inherits": "Bambu TPU for AMS @base", - "from": "system", - "setting_id": "GFSU02_05", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "30" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu TPU for AMS @BBL P2S", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_05", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "30" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X1C 0.6 nozzle.json new file mode 100644 index 0000000000..f7e164fe81 --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X1C 0.6 nozzle.json @@ -0,0 +1,62 @@ +{ + "type": "filament", + "name": "Bambu TPU for AMS @BBL X1C 0.6 nozzle", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_13", + "instantiation": "true", + "fan_max_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.97", + "0.975" + ], + "filament_max_volumetric_speed": [ + "18", + "6" + ], + "filament_retraction_length": [ + "0.4", + "0.2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab P1S 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X1C.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X1C.json index 6ad9b4e263..45b784e741 100644 --- a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X1C.json @@ -1,130 +1,55 @@ { - "type": "filament", - "name": "Bambu TPU for AMS @BBL X1C", - "inherits": "Bambu TPU for AMS @base", - "from": "system", - "setting_id": "GFSU02_00", - "instantiation": "true", - "fan_max_speed": [ - "40" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "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.8 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU for AMS @BBL X1C", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_00", + "instantiation": "true", + "fan_max_speed": [ + "40" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_flow_ratio": [ + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D 0.4 nozzle.json index bb7ebd7daf..696a79e84a 100644 --- a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D 0.4 nozzle.json @@ -1,278 +1,102 @@ { - "type": "filament", - "name": "Bambu TPU for AMS @BBL X2D 0.4 nozzle", - "inherits": "Bambu TPU for AMS @base", - "from": "system", - "setting_id": "GFSU02_07", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.2", - "0.4", - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "fan_max_speed": [ - "40" - ], - "filament_extruder_compatibility": [ - "16" - ], - "filament_flow_ratio": [ - "0.97", - "0.97", - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "18", - "18", - "18", - "18" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "230" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "230", - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu TPU for AMS @BBL X2D 0.4 nozzle", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_07", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97", + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.2", + "0.4", + "0.2", + "0.4", + "0.4", + "0.4" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "temperature_vitrification": [ + "30" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D 0.8 nozzle.json new file mode 100644 index 0000000000..116476ceeb --- /dev/null +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D 0.8 nozzle.json @@ -0,0 +1,101 @@ +{ + "type": "filament", + "name": "Bambu TPU for AMS @BBL X2D 0.8 nozzle", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_32", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_dev_ams_drying_temperature": [ + "65", + "75", + "45", + "45" + ], + "filament_dev_ams_drying_time": [ + "12", + "18", + "12", + "18" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97", + "0.97" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D.json index e5357ea399..ee378baeff 100644 --- a/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D.json +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @BBL X2D.json @@ -1,279 +1,99 @@ { - "type": "filament", - "name": "Bambu TPU for AMS @BBL X2D", - "inherits": "Bambu TPU for AMS @base", - "from": "system", - "setting_id": "GFSU02_08", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "fan_max_speed": [ - "40" - ], - "filament_extruder_compatibility": [ - "16" - ], - "filament_flow_ratio": [ - "0.97", - "0.97", - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "18", - "18", - "18", - "18" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "230" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "230", - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] + "type": "filament", + "name": "Bambu TPU for AMS @BBL X2D", + "inherits": "Bambu TPU for AMS @base", + "from": "system", + "setting_id": "GFSU02_08", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_max_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_extruder_compatibility": [ + "16" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97", + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4", + "0.4", + "0.4" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] } diff --git a/resources/profiles/BBL/filament/Bambu TPU for AMS @base.json b/resources/profiles/BBL/filament/Bambu TPU for AMS @base.json index 5f0b03329f..d4830a3c60 100644 --- a/resources/profiles/BBL/filament/Bambu TPU for AMS @base.json +++ b/resources/profiles/BBL/filament/Bambu TPU for AMS @base.json @@ -1,66 +1,66 @@ { - "type": "filament", - "name": "Bambu TPU for AMS @base", - "inherits": "fdm_filament_tpu", - "from": "system", - "filament_id": "OFIBbYO5", - "instantiation": "false", - "description": "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.", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "20" - ], - "filament_cost": [ - "38.99" - ], - "filament_density": [ - "1.26" - ], - "filament_deretraction_speed": [ - "10" - ], - "filament_flow_ratio": [ - "0.97" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_retraction_length": [ - "2" - ], - "filament_retraction_speed": [ - "10" - ], - "filament_type": [ - "TPU-AMS" - ], - "filament_vendor": [ - "Bambu Lab" - ], - "impact_strength_z": [ - "9.6" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature_range_low": [ - "220" - ], - "overhang_fan_threshold": [ - "25%" - ], - "slow_down_layer_time": [ - "10" - ] -} + "type": "filament", + "name": "Bambu TPU for AMS @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "OFIBbYO5", + "instantiation": "false", + "description": "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.", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "20" + ], + "filament_cost": [ + "34.99" + ], + "filament_density": [ + "1.26" + ], + "filament_deretraction_speed": [ + "10" + ], + "filament_flow_ratio": [ + "0.97" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_retraction_length": [ + "2" + ], + "filament_retraction_speed": [ + "10" + ], + "filament_type": [ + "TPU-AMS" + ], + "filament_vendor": [ + "Bambu Lab" + ], + "impact_strength_z": [ + "9.6" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_layer_time": [ + "10" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ABS @0.2 nozzle.json index b37a33a8fe..ea692b1849 100644 --- a/resources/profiles/BBL/filament/Generic ABS @0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ABS @0.2 nozzle.json @@ -1,16 +1,16 @@ { - "type": "filament", - "name": "Generic ABS @0.2 nozzle", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic ABS @0.2 nozzle", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ABS @BBL A1 0.2 nozzle.json index 094d26bee1..a094891d38 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL A1 0.2 nozzle.json @@ -1,32 +1,32 @@ { - "type": "filament", - "name": "Generic ABS @BBL A1 0.2 nozzle", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99_06", - "instantiation": "true", - "fan_max_speed": [ - "20" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic ABS @BBL A1 0.2 nozzle", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_06", + "instantiation": "true", + "fan_max_speed": [ + "20" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL A1.json b/resources/profiles/BBL/filament/Generic ABS @BBL A1.json index b2a4909f9c..4c9b38b183 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL A1.json @@ -1,34 +1,37 @@ { - "type": "filament", - "name": "Generic ABS @BBL A1", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99_05", - "instantiation": "true", - "fan_max_speed": [ - "20" - ], - "filament_max_volumetric_speed": [ - "15" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic ABS @BBL A1", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_05", + "instantiation": "true", + "fan_max_speed": [ + "20" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_retraction_length": [ + "0.4" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ABS @BBL H2C 0.2 nozzle.json index 921bd56b9f..a95f8b7000 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL H2C 0.2 nozzle.json @@ -1,180 +1,83 @@ { - "type": "filament", - "name": "Generic ABS @BBL H2C 0.2 nozzle", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99_18", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "40" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "230", - "230" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "overhang_fan_speed": [ - "100" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic ABS @BBL H2C 0.2 nozzle", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_18", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "230", + "230" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic ABS @BBL H2C 0.4 nozzle.json index 1fd81f53d5..1262f2e87b 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL H2C 0.4 nozzle.json @@ -1,171 +1,108 @@ { - "type": "filament", - "name": "Generic ABS @BBL H2C 0.4 nozzle", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99_16", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "230", - "230" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic ABS @BBL H2C 0.4 nozzle", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_16", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "230", + "230", + "230" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL H2C.json b/resources/profiles/BBL/filament/Generic ABS @BBL H2C.json index e14004572f..4b2f542fdf 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL H2C.json @@ -1,172 +1,109 @@ { - "type": "filament", - "name": "Generic ABS @BBL H2C", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99_17", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "230", - "230" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic ABS @BBL H2C", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_17", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "230", + "230", + "230" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ABS @BBL H2D 0.2 nozzle.json index 567b30c430..9495615771 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL H2D 0.2 nozzle.json @@ -1,128 +1,47 @@ { - "type": "filament", - "name": "Generic ABS @BBL H2D 0.2 nozzle", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99_08", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic ABS @BBL H2D 0.2 nozzle", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_08", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL H2D.json b/resources/profiles/BBL/filament/Generic ABS @BBL H2D.json index 242cd40643..9a813fd06d 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL H2D.json @@ -1,130 +1,55 @@ { - "type": "filament", - "name": "Generic ABS @BBL H2D", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99_07", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic ABS @BBL H2D", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_07", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ABS @BBL H2DP 0.2 nozzle.json index 0f3b6c1505..034c767566 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL H2DP 0.2 nozzle.json @@ -1,128 +1,47 @@ { - "type": "filament", - "name": "Generic ABS @BBL H2DP 0.2 nozzle", - "inherits": "Generic ABS @0.2 nozzle", - "from": "system", - "setting_id": "GFSB99_12", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic ABS @BBL H2DP 0.2 nozzle", + "inherits": "Generic ABS @0.2 nozzle", + "from": "system", + "setting_id": "GFSB99_12", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL H2DP.json b/resources/profiles/BBL/filament/Generic ABS @BBL H2DP.json index ba21cde063..808befc013 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL H2DP.json @@ -1,130 +1,49 @@ { - "type": "filament", - "name": "Generic ABS @BBL H2DP", - "inherits": "Generic ABS", - "from": "system", - "setting_id": "GFSB99_11", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic ABS @BBL H2DP", + "inherits": "Generic ABS", + "from": "system", + "setting_id": "GFSB99_11", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ABS @BBL H2S 0.2 nozzle.json index bc238da9d2..e412d22e80 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL H2S 0.2 nozzle.json @@ -1,131 +1,62 @@ { - "type": "filament", - "name": "Generic ABS @BBL H2S 0.2 nozzle", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99_22", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "40" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic ABS @BBL H2S 0.2 nozzle", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_22", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "40" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic ABS @BBL H2S 0.4 nozzle.json index 1bffdc2ba7..4e19da6ed8 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL H2S 0.4 nozzle.json @@ -1,127 +1,82 @@ { - "type": "filament", - "name": "Generic ABS @BBL H2S 0.4 nozzle", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99_21", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic ABS @BBL H2S 0.4 nozzle", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_21", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ABS @BBL P2S 0.2 nozzle.json index a94d0c097a..04624095b8 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL P2S 0.2 nozzle.json @@ -1,165 +1,56 @@ { - "type": "filament", - "name": "Generic ABS @BBL P2S 0.2 nozzle", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99_10", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic ABS @BBL P2S 0.2 nozzle", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_10", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL P2S.json b/resources/profiles/BBL/filament/Generic ABS @BBL P2S.json index 73300b11d2..b03f98831f 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL P2S.json @@ -1,167 +1,62 @@ { - "type": "filament", - "name": "Generic ABS @BBL P2S", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99_09", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic ABS @BBL P2S", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_09", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL X1E 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ABS @BBL X1E 0.2 nozzle.json index 3117363a52..946ef8f492 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL X1E 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL X1E 0.2 nozzle.json @@ -1,119 +1,42 @@ { - "type": "filament", - "name": "Generic ABS @BBL X1E 0.2 nozzle", - "inherits": "Generic ABS @0.2 nozzle", - "from": "system", - "setting_id": "GFSB99_04", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic ABS @BBL X1E 0.2 nozzle", + "inherits": "Generic ABS @0.2 nozzle", + "from": "system", + "setting_id": "GFSB99_04", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL X1E.json b/resources/profiles/BBL/filament/Generic ABS @BBL X1E.json index f57c4510a2..5043419305 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL X1E.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL X1E.json @@ -1,121 +1,44 @@ { - "type": "filament", - "name": "Generic ABS @BBL X1E", - "inherits": "Generic ABS", - "from": "system", - "setting_id": "GFSB99_03", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic ABS @BBL X1E", + "inherits": "Generic ABS", + "from": "system", + "setting_id": "GFSB99_03", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ABS @BBL X2D 0.2 nozzle.json index 4854d1c98b..7ef8a9eea3 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL X2D 0.2 nozzle.json @@ -1,266 +1,77 @@ { - "type": "filament", - "name": "Generic ABS @BBL X2D 0.2 nozzle", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99_15", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "2", - "2", - "2", - "2" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "270" - ], - "nozzle_temperature": [ - "270", - "270", - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260", - "260", - "260" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic ABS @BBL X2D 0.2 nozzle", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_15", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic ABS @BBL X2D 0.4 nozzle.json index 7840aa4d8a..c4f4f032bd 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL X2D 0.4 nozzle.json @@ -1,266 +1,87 @@ { - "type": "filament", - "name": "Generic ABS @BBL X2D 0.4 nozzle", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99_13", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "15", - "15", - "15", - "15" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "270" - ], - "nozzle_temperature": [ - "270", - "270", - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260", - "260", - "260" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic ABS @BBL X2D 0.4 nozzle", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_13", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15", + "15", + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @BBL X2D.json b/resources/profiles/BBL/filament/Generic ABS @BBL X2D.json index 354570652b..296f60a32c 100644 --- a/resources/profiles/BBL/filament/Generic ABS @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic ABS @BBL X2D.json @@ -1,267 +1,88 @@ { - "type": "filament", - "name": "Generic ABS @BBL X2D", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99_14", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "15", - "15", - "15", - "15" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "270" - ], - "nozzle_temperature": [ - "270", - "270", - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260", - "260", - "260" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic ABS @BBL X2D", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_14", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15", + "15", + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "270" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270", + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS @base.json b/resources/profiles/BBL/filament/Generic ABS @base.json index d15a7cdfea..c38d4f371a 100644 --- a/resources/profiles/BBL/filament/Generic ABS @base.json +++ b/resources/profiles/BBL/filament/Generic ABS @base.json @@ -1,15 +1,15 @@ { - "type": "filament", - "name": "Generic ABS @base", - "inherits": "fdm_filament_abs", - "from": "system", - "filament_id": "OFY9muEs", - "instantiation": "false", - "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.", - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "16" - ] -} + "type": "filament", + "name": "Generic ABS @base", + "inherits": "fdm_filament_abs", + "from": "system", + "filament_id": "OFY9muEs", + "instantiation": "false", + "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.", + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "16" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ABS.json b/resources/profiles/BBL/filament/Generic ABS.json index 40cfb23b7a..b740793514 100644 --- a/resources/profiles/BBL/filament/Generic ABS.json +++ b/resources/profiles/BBL/filament/Generic ABS.json @@ -1,22 +1,25 @@ { - "type": "filament", - "name": "Generic ABS", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "15" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic ABS", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "15" + ], + "filament_retraction_length": [ + "0.4" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ASA @0.2 nozzle.json index 535f48bf18..7e26d7bb66 100644 --- a/resources/profiles/BBL/filament/Generic ASA @0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ASA @0.2 nozzle.json @@ -1,16 +1,16 @@ { - "type": "filament", - "name": "Generic ASA @0.2 nozzle", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic ASA @0.2 nozzle", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ASA @BBL A1 0.2 nozzle.json index d0d0a96895..9830140547 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL A1 0.2 nozzle.json @@ -1,14 +1,14 @@ { - "type": "filament", - "name": "Generic ASA @BBL A1 0.2 nozzle", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98_03", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic ASA @BBL A1 0.2 nozzle", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_03", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL A1.json b/resources/profiles/BBL/filament/Generic ASA @BBL A1.json index 1ec63fb6f8..282fab2763 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL A1.json @@ -1,13 +1,13 @@ { - "type": "filament", - "name": "Generic ASA @BBL A1", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98_04", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic ASA @BBL A1", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_04", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ASA @BBL H2C 0.2 nozzle.json index 777de9e63b..54194fbb21 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL H2C 0.2 nozzle.json @@ -1,177 +1,80 @@ { - "type": "filament", - "name": "Generic ASA @BBL H2C 0.2 nozzle", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98_16", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "220", - "220" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "overhang_fan_speed": [ - "100" - ], - "slow_down_layer_time": [ - "12" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic ASA @BBL H2C 0.2 nozzle", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_16", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "220", + "220" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic ASA @BBL H2C 0.4 nozzle.json index 0fbf7075a8..4fdada67bf 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL H2C 0.4 nozzle.json @@ -1,174 +1,111 @@ { - "type": "filament", - "name": "Generic ASA @BBL H2C 0.4 nozzle", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98_17", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "220", - "220" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "slow_down_layer_time": [ - "12" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic ASA @BBL H2C 0.4 nozzle", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_17", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "220", + "220", + "220" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL H2C.json b/resources/profiles/BBL/filament/Generic ASA @BBL H2C.json index c454519dcb..090c4aff5f 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL H2C.json @@ -1,175 +1,112 @@ { - "type": "filament", - "name": "Generic ASA @BBL H2C", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98_18", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "220", - "220" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "slow_down_layer_time": [ - "12" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic ASA @BBL H2C", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_18", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "220", + "220", + "220" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ASA @BBL H2D 0.2 nozzle.json index 910c35b01d..5b34e05140 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL H2D 0.2 nozzle.json @@ -1,128 +1,47 @@ { - "type": "filament", - "name": "Generic ASA @BBL H2D 0.2 nozzle", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98_05", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic ASA @BBL H2D 0.2 nozzle", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_05", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL H2D.json b/resources/profiles/BBL/filament/Generic ASA @BBL H2D.json index bab8005821..0ff6405d9d 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL H2D.json @@ -1,130 +1,55 @@ { - "type": "filament", - "name": "Generic ASA @BBL H2D", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98_06", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic ASA @BBL H2D", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_06", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ASA @BBL H2DP 0.2 nozzle.json index b5a978207b..d18f10b86c 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL H2DP 0.2 nozzle.json @@ -1,128 +1,47 @@ { - "type": "filament", - "name": "Generic ASA @BBL H2DP 0.2 nozzle", - "inherits": "Generic ASA @0.2 nozzle", - "from": "system", - "setting_id": "GFSB98_09", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic ASA @BBL H2DP 0.2 nozzle", + "inherits": "Generic ASA @0.2 nozzle", + "from": "system", + "setting_id": "GFSB98_09", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL H2DP.json b/resources/profiles/BBL/filament/Generic ASA @BBL H2DP.json index f7b48b9538..cf40a83df7 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL H2DP.json @@ -1,130 +1,49 @@ { - "type": "filament", - "name": "Generic ASA @BBL H2DP", - "inherits": "Generic ASA", - "from": "system", - "setting_id": "GFSB98_12", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic ASA @BBL H2DP", + "inherits": "Generic ASA", + "from": "system", + "setting_id": "GFSB98_12", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ASA @BBL H2S 0.2 nozzle.json index a7ae370b40..600499309e 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL H2S 0.2 nozzle.json @@ -1,146 +1,77 @@ { - "type": "filament", - "name": "Generic ASA @BBL H2S 0.2 nozzle", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98_22", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "90" - ], - "eng_plate_temp_initial_layer": [ - "90" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "90" - ], - "hot_plate_temp_initial_layer": [ - "90" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "12" - ], - "textured_plate_temp": [ - "90" - ], - "textured_plate_temp_initial_layer": [ - "90" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic ASA @BBL H2S 0.2 nozzle", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_22", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "eng_plate_temp": [ + "90" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "90" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic ASA @BBL H2S 0.4 nozzle.json index 78479bbcf6..76f6c346c0 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL H2S 0.4 nozzle.json @@ -1,148 +1,103 @@ { - "type": "filament", - "name": "Generic ASA @BBL H2S 0.4 nozzle", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98_21", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "90" - ], - "eng_plate_temp_initial_layer": [ - "90" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "90" - ], - "hot_plate_temp_initial_layer": [ - "90" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "12" - ], - "textured_plate_temp": [ - "90" - ], - "textured_plate_temp_initial_layer": [ - "90" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic ASA @BBL H2S 0.4 nozzle", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_21", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "eng_plate_temp": [ + "90" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "textured_plate_temp": [ + "90" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ASA @BBL P2S 0.2 nozzle.json index 2a070f1652..5541d06861 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL P2S 0.2 nozzle.json @@ -1,183 +1,74 @@ { - "type": "filament", - "name": "Generic ASA @BBL P2S 0.2 nozzle", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98_07", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "90" - ], - "eng_plate_temp_initial_layer": [ - "90" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "90" - ], - "hot_plate_temp_initial_layer": [ - "90" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "90" - ], - "textured_plate_temp_initial_layer": [ - "90" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic ASA @BBL P2S 0.2 nozzle", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_07", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "eng_plate_temp": [ + "90" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "90" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL P2S.json b/resources/profiles/BBL/filament/Generic ASA @BBL P2S.json index 9bf5026339..91646bd08f 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL P2S.json @@ -1,185 +1,80 @@ { - "type": "filament", - "name": "Generic ASA @BBL P2S", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98_08", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "90" - ], - "eng_plate_temp_initial_layer": [ - "90" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "90" - ], - "hot_plate_temp_initial_layer": [ - "90" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "90" - ], - "textured_plate_temp_initial_layer": [ - "90" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic ASA @BBL P2S", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_08", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "eng_plate_temp": [ + "90" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "textured_plate_temp": [ + "90" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL X1E 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ASA @BBL X1E 0.2 nozzle.json index 750118d31d..348c3e8e9e 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL X1E 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL X1E 0.2 nozzle.json @@ -1,119 +1,42 @@ { - "type": "filament", - "name": "Generic ASA @BBL X1E 0.2 nozzle", - "inherits": "Generic ASA @0.2 nozzle", - "from": "system", - "setting_id": "GFSB98_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic ASA @BBL X1E 0.2 nozzle", + "inherits": "Generic ASA @0.2 nozzle", + "from": "system", + "setting_id": "GFSB98_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL X1E.json b/resources/profiles/BBL/filament/Generic ASA @BBL X1E.json index 1225e33b6a..0e0d8a0997 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL X1E.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL X1E.json @@ -1,121 +1,44 @@ { - "type": "filament", - "name": "Generic ASA @BBL X1E", - "inherits": "Generic ASA", - "from": "system", - "setting_id": "GFSB98_02", - "instantiation": "true", - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic ASA @BBL X1E", + "inherits": "Generic ASA", + "from": "system", + "setting_id": "GFSB98_02", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic ASA @BBL X2D 0.2 nozzle.json index 84de220839..e53dae7455 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL X2D 0.2 nozzle.json @@ -1,266 +1,77 @@ { - "type": "filament", - "name": "Generic ASA @BBL X2D 0.2 nozzle", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98_13", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "2", - "2", - "2", - "2" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "260" - ], - "nozzle_temperature": [ - "260", - "260", - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260", - "260", - "260" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic ASA @BBL X2D 0.2 nozzle", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_13", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2", + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "260" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic ASA @BBL X2D 0.4 nozzle.json index 4c17d0b666..ee7d814947 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL X2D 0.4 nozzle.json @@ -1,266 +1,87 @@ { - "type": "filament", - "name": "Generic ASA @BBL X2D 0.4 nozzle", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98_14", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "260" - ], - "nozzle_temperature": [ - "260", - "260", - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260", - "260", - "260" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic ASA @BBL X2D 0.4 nozzle", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_14", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "260" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @BBL X2D.json b/resources/profiles/BBL/filament/Generic ASA @BBL X2D.json index 40c72ceee4..f2613130f1 100644 --- a/resources/profiles/BBL/filament/Generic ASA @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic ASA @BBL X2D.json @@ -1,267 +1,88 @@ { - "type": "filament", - "name": "Generic ASA @BBL X2D", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98_15", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "260" - ], - "nozzle_temperature": [ - "260", - "260", - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260", - "260", - "260" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic ASA @BBL X2D", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_15", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "260" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA @base.json b/resources/profiles/BBL/filament/Generic ASA @base.json index 699fc64f7c..d860a37821 100644 --- a/resources/profiles/BBL/filament/Generic ASA @base.json +++ b/resources/profiles/BBL/filament/Generic ASA @base.json @@ -1,33 +1,33 @@ { - "type": "filament", - "name": "Generic ASA @base", - "inherits": "fdm_filament_asa", - "from": "system", - "filament_id": "OFLPAxz3", - "instantiation": "false", - "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.", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "12" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ] -} + "type": "filament", + "name": "Generic ASA @base", + "inherits": "fdm_filament_asa", + "from": "system", + "filament_id": "OFLPAxz3", + "instantiation": "false", + "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.", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic ASA.json b/resources/profiles/BBL/filament/Generic ASA.json index d5b6456db8..7e56eb37af 100644 --- a/resources/profiles/BBL/filament/Generic ASA.json +++ b/resources/profiles/BBL/filament/Generic ASA.json @@ -1,19 +1,19 @@ { - "type": "filament", - "name": "Generic ASA", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic ASA", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic BVOH @BBL A1.json b/resources/profiles/BBL/filament/Generic BVOH @BBL A1.json index 065a899291..c719bc4f8d 100644 --- a/resources/profiles/BBL/filament/Generic BVOH @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic BVOH @BBL A1.json @@ -1,13 +1,13 @@ { - "type": "filament", - "name": "Generic BVOH @BBL A1", - "inherits": "Generic BVOH @base", - "from": "system", - "setting_id": "GFSS97_02", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic BVOH @BBL A1", + "inherits": "Generic BVOH @base", + "from": "system", + "setting_id": "GFSS97_02", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic BVOH @BBL A1M.json b/resources/profiles/BBL/filament/Generic BVOH @BBL A1M.json index c3e7ea8742..c7c2bb1fbc 100644 --- a/resources/profiles/BBL/filament/Generic BVOH @BBL A1M.json +++ b/resources/profiles/BBL/filament/Generic BVOH @BBL A1M.json @@ -1,13 +1,13 @@ { - "type": "filament", - "name": "Generic BVOH @BBL A1M", - "inherits": "Generic BVOH @base", - "from": "system", - "setting_id": "GFSS97_01", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic BVOH @BBL A1M", + "inherits": "Generic BVOH @base", + "from": "system", + "setting_id": "GFSS97_01", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic BVOH @BBL A2L.json b/resources/profiles/BBL/filament/Generic BVOH @BBL A2L.json index 2e2d66ea50..f90124864b 100644 --- a/resources/profiles/BBL/filament/Generic BVOH @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic BVOH @BBL A2L.json @@ -1,19 +1,19 @@ { - "type": "filament", - "name": "Generic BVOH @BBL A2L", - "inherits": "Generic BVOH @base", - "from": "system", - "setting_id": "GFSS97_10", - "instantiation": "true", - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic BVOH @BBL A2L", + "inherits": "Generic BVOH @base", + "from": "system", + "setting_id": "GFSS97_10", + "instantiation": "true", + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic BVOH @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic BVOH @BBL H2C 0.4 nozzle.json index bb5ed16dbe..2238cbdae1 100644 --- a/resources/profiles/BBL/filament/Generic BVOH @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic BVOH @BBL H2C 0.4 nozzle.json @@ -1,177 +1,94 @@ { - "type": "filament", - "name": "Generic BVOH @BBL H2C 0.4 nozzle", - "inherits": "Generic BVOH @base", - "from": "system", - "setting_id": "GFSS97_08", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic BVOH @BBL H2C 0.4 nozzle", + "inherits": "Generic BVOH @base", + "from": "system", + "setting_id": "GFSS97_08", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic BVOH @BBL H2C.json b/resources/profiles/BBL/filament/Generic BVOH @BBL H2C.json index 6bdf0d5c99..6ad4f65689 100644 --- a/resources/profiles/BBL/filament/Generic BVOH @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic BVOH @BBL H2C.json @@ -1,178 +1,95 @@ { - "type": "filament", - "name": "Generic BVOH @BBL H2C", - "inherits": "Generic BVOH @base", - "from": "system", - "setting_id": "GFSS97_09", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic BVOH @BBL H2C", + "inherits": "Generic BVOH @base", + "from": "system", + "setting_id": "GFSS97_09", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic BVOH @BBL H2D.json b/resources/profiles/BBL/filament/Generic BVOH @BBL H2D.json index 359f483a81..b6a467b3a0 100644 --- a/resources/profiles/BBL/filament/Generic BVOH @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic BVOH @BBL H2D.json @@ -1,133 +1,63 @@ { - "type": "filament", - "name": "Generic BVOH @BBL H2D", - "inherits": "Generic BVOH @base", - "from": "system", - "setting_id": "GFSS97_03", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic BVOH @BBL H2D", + "inherits": "Generic BVOH @base", + "from": "system", + "setting_id": "GFSS97_03", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic BVOH @BBL H2DP.json b/resources/profiles/BBL/filament/Generic BVOH @BBL H2DP.json index 2133d66a0d..0e0c3a994b 100644 --- a/resources/profiles/BBL/filament/Generic BVOH @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic BVOH @BBL H2DP.json @@ -1,133 +1,56 @@ { - "type": "filament", - "name": "Generic BVOH @BBL H2DP", - "inherits": "Generic BVOH @base", - "from": "system", - "setting_id": "GFSS97_05", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic BVOH @BBL H2DP", + "inherits": "Generic BVOH @base", + "from": "system", + "setting_id": "GFSS97_05", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic BVOH @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic BVOH @BBL H2S 0.4 nozzle.json index 8f9c236520..f6e2599e15 100644 --- a/resources/profiles/BBL/filament/Generic BVOH @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic BVOH @BBL H2S 0.4 nozzle.json @@ -1,136 +1,76 @@ { - "type": "filament", - "name": "Generic BVOH @BBL H2S 0.4 nozzle", - "inherits": "Generic BVOH @base", - "from": "system", - "setting_id": "GFSS97_11", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "temperature_vitrification": [ - "40" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic BVOH @BBL H2S 0.4 nozzle", + "inherits": "Generic BVOH @base", + "from": "system", + "setting_id": "GFSS97_11", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic BVOH @BBL P2S.json b/resources/profiles/BBL/filament/Generic BVOH @BBL P2S.json index b924559101..51e7f4f88f 100644 --- a/resources/profiles/BBL/filament/Generic BVOH @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic BVOH @BBL P2S.json @@ -1,173 +1,73 @@ { - "type": "filament", - "name": "Generic BVOH @BBL P2S", - "inherits": "Generic BVOH @base", - "from": "system", - "setting_id": "GFSS97_04", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic BVOH @BBL P2S", + "inherits": "Generic BVOH @base", + "from": "system", + "setting_id": "GFSS97_04", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic BVOH @BBL X1C.json b/resources/profiles/BBL/filament/Generic BVOH @BBL X1C.json index 122196177a..278d9943ca 100644 --- a/resources/profiles/BBL/filament/Generic BVOH @BBL X1C.json +++ b/resources/profiles/BBL/filament/Generic BVOH @BBL X1C.json @@ -1,133 +1,60 @@ { - "type": "filament", - "name": "Generic BVOH @BBL X1C", - "inherits": "Generic BVOH @base", - "from": "system", - "setting_id": "GFSS97_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "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 X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic BVOH @BBL X1C", + "inherits": "Generic BVOH @base", + "from": "system", + "setting_id": "GFSS97_00", + "instantiation": "true", + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "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 X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic BVOH @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic BVOH @BBL X2D 0.4 nozzle.json index a76d2f3bc8..b9321b9892 100644 --- a/resources/profiles/BBL/filament/Generic BVOH @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic BVOH @BBL X2D 0.4 nozzle.json @@ -1,272 +1,93 @@ { - "type": "filament", - "name": "Generic BVOH @BBL X2D 0.4 nozzle", - "inherits": "Generic BVOH @base", - "from": "system", - "setting_id": "GFSS97_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic BVOH @BBL X2D 0.4 nozzle", + "inherits": "Generic BVOH @base", + "from": "system", + "setting_id": "GFSS97_06", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic BVOH @BBL X2D.json b/resources/profiles/BBL/filament/Generic BVOH @BBL X2D.json index feeb341891..b36508c030 100644 --- a/resources/profiles/BBL/filament/Generic BVOH @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic BVOH @BBL X2D.json @@ -1,273 +1,94 @@ { - "type": "filament", - "name": "Generic BVOH @BBL X2D", - "inherits": "Generic BVOH @base", - "from": "system", - "setting_id": "GFSS97_07", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic BVOH @BBL X2D", + "inherits": "Generic BVOH @base", + "from": "system", + "setting_id": "GFSS97_07", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic BVOH @base.json b/resources/profiles/BBL/filament/Generic BVOH @base.json index 4a0fdf358e..da0a8da1bb 100644 --- a/resources/profiles/BBL/filament/Generic BVOH @base.json +++ b/resources/profiles/BBL/filament/Generic BVOH @base.json @@ -1,11 +1,11 @@ { - "type": "filament", - "name": "Generic BVOH @base", - "inherits": "fdm_filament_bvoh", - "from": "system", - "filament_id": "OFo2UF2C", - "instantiation": "false", - "filament_adhesiveness_category": [ - "797" - ] -} + "type": "filament", + "name": "Generic BVOH @base", + "inherits": "fdm_filament_bvoh", + "from": "system", + "filament_id": "OFo2UF2C", + "instantiation": "false", + "filament_adhesiveness_category": [ + "797" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic EVA @BBL A1.json b/resources/profiles/BBL/filament/Generic EVA @BBL A1.json index a6d8267096..1090e57594 100644 --- a/resources/profiles/BBL/filament/Generic EVA @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic EVA @BBL A1.json @@ -1,14 +1,14 @@ { - "type": "filament", - "name": "Generic EVA @BBL A1", - "inherits": "Generic EVA @base", - "from": "system", - "setting_id": "GFSR99_01", - "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": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic EVA @BBL A1", + "inherits": "Generic EVA @base", + "from": "system", + "setting_id": "GFSR99_01", + "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": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic EVA @BBL A1M.json b/resources/profiles/BBL/filament/Generic EVA @BBL A1M.json index c0cae7fd4a..9d903da18d 100644 --- a/resources/profiles/BBL/filament/Generic EVA @BBL A1M.json +++ b/resources/profiles/BBL/filament/Generic EVA @BBL A1M.json @@ -1,14 +1,14 @@ { - "type": "filament", - "name": "Generic EVA @BBL A1M", - "inherits": "Generic EVA @base", - "from": "system", - "setting_id": "GFSR99_02", - "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": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.8 nozzle", - "Bambu Lab A1 mini 0.6 nozzle" - ] -} + "type": "filament", + "name": "Generic EVA @BBL A1M", + "inherits": "Generic EVA @base", + "from": "system", + "setting_id": "GFSR99_02", + "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": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 mini 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic EVA @BBL A2L.json b/resources/profiles/BBL/filament/Generic EVA @BBL A2L.json index 7f8afc4732..39d644ab35 100644 --- a/resources/profiles/BBL/filament/Generic EVA @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic EVA @BBL A2L.json @@ -1,20 +1,20 @@ { - "type": "filament", - "name": "Generic EVA @BBL A2L", - "inherits": "Generic EVA @base", - "from": "system", - "setting_id": "GFSR99_11", - "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.", - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic EVA @BBL A2L", + "inherits": "Generic EVA @base", + "from": "system", + "setting_id": "GFSR99_11", + "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.", + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic EVA @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic EVA @BBL H2C 0.4 nozzle.json index d20e6c6608..614d08e93f 100644 --- a/resources/profiles/BBL/filament/Generic EVA @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic EVA @BBL H2C 0.4 nozzle.json @@ -1,178 +1,95 @@ { - "type": "filament", - "name": "Generic EVA @BBL H2C 0.4 nozzle", - "inherits": "Generic EVA @base", - "from": "system", - "setting_id": "GFSR99_08", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "170", - "170" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic EVA @BBL H2C 0.4 nozzle", + "inherits": "Generic EVA @base", + "from": "system", + "setting_id": "GFSR99_08", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "170", + "170", + "170" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic EVA @BBL H2C.json b/resources/profiles/BBL/filament/Generic EVA @BBL H2C.json index 5c32ec697a..91349159f1 100644 --- a/resources/profiles/BBL/filament/Generic EVA @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic EVA @BBL H2C.json @@ -1,179 +1,96 @@ { - "type": "filament", - "name": "Generic EVA @BBL H2C", - "inherits": "Generic EVA @base", - "from": "system", - "setting_id": "GFSR99_09", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "170", - "170" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic EVA @BBL H2C", + "inherits": "Generic EVA @base", + "from": "system", + "setting_id": "GFSR99_09", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "170", + "170", + "170" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic EVA @BBL H2D.json b/resources/profiles/BBL/filament/Generic EVA @BBL H2D.json index 7c3a40e926..f71bc5f2d2 100644 --- a/resources/profiles/BBL/filament/Generic EVA @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic EVA @BBL H2D.json @@ -1,134 +1,64 @@ { - "type": "filament", - "name": "Generic EVA @BBL H2D", - "inherits": "Generic EVA @base", - "from": "system", - "setting_id": "GFSR99_03", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic EVA @BBL H2D", + "inherits": "Generic EVA @base", + "from": "system", + "setting_id": "GFSR99_03", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic EVA @BBL H2DP.json b/resources/profiles/BBL/filament/Generic EVA @BBL H2DP.json index 0bcb1c622d..1a845320ad 100644 --- a/resources/profiles/BBL/filament/Generic EVA @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic EVA @BBL H2DP.json @@ -1,134 +1,57 @@ { - "type": "filament", - "name": "Generic EVA @BBL H2DP", - "inherits": "Generic EVA @base", - "from": "system", - "setting_id": "GFSR99_05", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic EVA @BBL H2DP", + "inherits": "Generic EVA @base", + "from": "system", + "setting_id": "GFSR99_05", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic EVA @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic EVA @BBL H2S 0.4 nozzle.json index ded79988ba..1effe071b2 100644 --- a/resources/profiles/BBL/filament/Generic EVA @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic EVA @BBL H2S 0.4 nozzle.json @@ -1,137 +1,77 @@ { - "type": "filament", - "name": "Generic EVA @BBL H2S 0.4 nozzle", - "inherits": "Generic EVA @base", - "from": "system", - "setting_id": "GFSR99_12", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "temperature_vitrification": [ - "40" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic EVA @BBL H2S 0.4 nozzle", + "inherits": "Generic EVA @base", + "from": "system", + "setting_id": "GFSR99_12", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic EVA @BBL P2S.json b/resources/profiles/BBL/filament/Generic EVA @BBL P2S.json index 352bef9f8d..d59dd359af 100644 --- a/resources/profiles/BBL/filament/Generic EVA @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic EVA @BBL P2S.json @@ -1,174 +1,74 @@ { - "type": "filament", - "name": "Generic EVA @BBL P2S", - "inherits": "Generic EVA @base", - "from": "system", - "setting_id": "GFSR99_04", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic EVA @BBL P2S", + "inherits": "Generic EVA @base", + "from": "system", + "setting_id": "GFSR99_04", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic EVA @BBL X1C.json b/resources/profiles/BBL/filament/Generic EVA @BBL X1C.json index 4de66e4b21..3e54162ac4 100644 --- a/resources/profiles/BBL/filament/Generic EVA @BBL X1C.json +++ b/resources/profiles/BBL/filament/Generic EVA @BBL X1C.json @@ -1,134 +1,61 @@ { - "type": "filament", - "name": "Generic EVA @BBL X1C", - "inherits": "Generic EVA @base", - "from": "system", - "setting_id": "GFSR99_00", - "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_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "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" - ] -} + "type": "filament", + "name": "Generic EVA @BBL X1C", + "inherits": "Generic EVA @base", + "from": "system", + "setting_id": "GFSR99_00", + "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_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "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" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic EVA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic EVA @BBL X2D 0.4 nozzle.json index 02e31aa051..3f3277cb67 100644 --- a/resources/profiles/BBL/filament/Generic EVA @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic EVA @BBL X2D 0.4 nozzle.json @@ -1,273 +1,94 @@ { - "type": "filament", - "name": "Generic EVA @BBL X2D 0.4 nozzle", - "inherits": "Generic EVA @base", - "from": "system", - "setting_id": "GFSR99_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "210" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "210", - "210", - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210", - "210", - "210" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic EVA @BBL X2D 0.4 nozzle", + "inherits": "Generic EVA @base", + "from": "system", + "setting_id": "GFSR99_06", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic EVA @BBL X2D.json b/resources/profiles/BBL/filament/Generic EVA @BBL X2D.json index 9730666950..3e447fb433 100644 --- a/resources/profiles/BBL/filament/Generic EVA @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic EVA @BBL X2D.json @@ -1,274 +1,95 @@ { - "type": "filament", - "name": "Generic EVA @BBL X2D", - "inherits": "Generic EVA @base", - "from": "system", - "setting_id": "GFSR99_07", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "210" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "210", - "210", - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210", - "210", - "210" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic EVA @BBL X2D", + "inherits": "Generic EVA @base", + "from": "system", + "setting_id": "GFSR99_07", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic EVA @base.json b/resources/profiles/BBL/filament/Generic EVA @base.json index 79308d5d37..987b77013d 100644 --- a/resources/profiles/BBL/filament/Generic EVA @base.json +++ b/resources/profiles/BBL/filament/Generic EVA @base.json @@ -1,83 +1,86 @@ { - "type": "filament", - "name": "Generic EVA @base", - "inherits": "fdm_filament_eva", - "from": "system", - "filament_id": "OFCD8qiU", - "instantiation": "false", - "additional_cooling_fan_speed": [ - "70" - ], - "close_fan_the_first_x_layers": [ - "1" - ], - "cool_plate_temp": [ - "35" - ], - "cool_plate_temp_initial_layer": [ - "35" - ], - "eng_plate_temp": [ - "0" - ], - "eng_plate_temp_initial_layer": [ - "0" - ], - "fan_cooling_layer_time": [ - "100" - ], - "fan_min_speed": [ - "100" - ], - "filament_cost": [ - "21.99" - ], - "filament_density": [ - "0.94" - ], - "filament_max_volumetric_speed": [ - "12" - ], - "hot_plate_temp": [ - "55" - ], - "hot_plate_temp_initial_layer": [ - "55" - ], - "nozzle_temperature_range_low": [ - "175" - ], - "nozzle_temperature_range_high": [ - "220" - ], - "nozzle_temperature": [ - "210" - ], - "nozzle_temperature_initial_layer": [ - "210" - ], - "overhang_fan_threshold": [ - "50%" - ], - "reduce_fan_stop_start_freq": [ - "1" - ], - "slow_down_layer_time": [ - "4" - ], - "slow_down_min_speed": [ - "20" - ], - "temperature_vitrification": [ - "70" - ], - "textured_plate_temp": [ - "55" - ], - "textured_plate_temp_initial_layer": [ - "55" - ], - "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}" - ] -} + "type": "filament", + "name": "Generic EVA @base", + "inherits": "fdm_filament_eva", + "from": "system", + "filament_id": "OFCD8qiU", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "1" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "21.99" + ], + "filament_density": [ + "0.94" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "nozzle_temperature_range_low": [ + "175" + ], + "nozzle_temperature_range_high": [ + "220" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "overhang_fan_threshold": [ + "50%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "70" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic HIPS @BBL A1 0.2 nozzle.json index fc12cd457b..9a75038819 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL A1 0.2 nozzle.json @@ -1,32 +1,32 @@ { - "type": "filament", - "name": "Generic HIPS @BBL A1 0.2 nozzle", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_05", - "instantiation": "true", - "eng_plate_temp": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "filament_max_volumetric_speed": [ - "0.5" - ], - "hot_plate_temp": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "textured_plate_temp": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL A1 0.2 nozzle", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_05", + "instantiation": "true", + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "filament_max_volumetric_speed": [ + "0.5" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL A1.json b/resources/profiles/BBL/filament/Generic HIPS @BBL A1.json index b5c3f5a664..7ca8bbc16a 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL A1.json @@ -1,31 +1,31 @@ { - "type": "filament", - "name": "Generic HIPS @BBL A1", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_04", - "instantiation": "true", - "eng_plate_temp": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "hot_plate_temp": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "textured_plate_temp": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL A1", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_04", + "instantiation": "true", + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic HIPS @BBL A1M 0.2 nozzle.json index 07ca51b896..a2200be03c 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL A1M 0.2 nozzle.json @@ -1,32 +1,32 @@ { - "type": "filament", - "name": "Generic HIPS @BBL A1M 0.2 nozzle", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_03", - "instantiation": "true", - "eng_plate_temp": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "filament_max_volumetric_speed": [ - "0.5" - ], - "hot_plate_temp": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "textured_plate_temp": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL A1M 0.2 nozzle", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_03", + "instantiation": "true", + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "filament_max_volumetric_speed": [ + "0.5" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL A1M.json b/resources/profiles/BBL/filament/Generic HIPS @BBL A1M.json index 78e10ef103..11c1000c23 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL A1M.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL A1M.json @@ -1,31 +1,31 @@ { - "type": "filament", - "name": "Generic HIPS @BBL A1M", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_02", - "instantiation": "true", - "eng_plate_temp": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "hot_plate_temp": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "textured_plate_temp": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL A1M", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_02", + "instantiation": "true", + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic HIPS @BBL A2L 0.2 nozzle.json index 88c952b8d6..bbb755bf1e 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL A2L 0.2 nozzle.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Generic HIPS @BBL A2L 0.2 nozzle", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_18", - "instantiation": "true", - "eng_plate_temp": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "filament_max_volumetric_speed": [ - "0.5" - ], - "hot_plate_temp": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "40" - ], - "textured_plate_temp": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL A2L 0.2 nozzle", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_18", + "instantiation": "true", + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "filament_max_volumetric_speed": [ + "0.5" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "40" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL A2L.json b/resources/profiles/BBL/filament/Generic HIPS @BBL A2L.json index 9af02ee93a..7d51372d31 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL A2L.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "Generic HIPS @BBL A2L", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_19", - "instantiation": "true", - "eng_plate_temp": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "hot_plate_temp": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "pre_start_fan_time": [ - "2" - ], - "textured_plate_temp": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL A2L", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_19", + "instantiation": "true", + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "pre_start_fan_time": [ + "2" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic HIPS @BBL H2C 0.2 nozzle.json index 06ce0cbc13..bf887ab1a9 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL H2C 0.2 nozzle.json @@ -1,171 +1,78 @@ { - "type": "filament", - "name": "Generic HIPS @BBL H2C 0.2 nozzle", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_17", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "200", - "200" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "75" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL H2C 0.2 nozzle", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_17", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "200", + "200" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "temperature_vitrification": [ + "75" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic HIPS @BBL H2C 0.4 nozzle.json index da9c295fc8..f55bddf14f 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL H2C 0.4 nozzle.json @@ -1,171 +1,88 @@ { - "type": "filament", - "name": "Generic HIPS @BBL H2C 0.4 nozzle", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_15", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "200", - "200" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "75" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL H2C 0.4 nozzle", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_15", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "200", + "200", + "200" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "75" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL H2C.json b/resources/profiles/BBL/filament/Generic HIPS @BBL H2C.json index 71ab193857..c4699ac65a 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL H2C.json @@ -1,172 +1,89 @@ { - "type": "filament", - "name": "Generic HIPS @BBL H2C", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_16", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "200", - "200" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "75" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL H2C", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_16", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "200", + "200", + "200" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "75" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic HIPS @BBL H2D 0.2 nozzle.json index 719d29fdfa..2cf9a6067f 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL H2D 0.2 nozzle.json @@ -1,125 +1,48 @@ { - "type": "filament", - "name": "Generic HIPS @BBL H2D 0.2 nozzle", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_07", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL H2D 0.2 nozzle", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_07", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL H2D.json b/resources/profiles/BBL/filament/Generic HIPS @BBL H2D.json index ff10ca843d..c198e26682 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL H2D.json @@ -1,127 +1,57 @@ { - "type": "filament", - "name": "Generic HIPS @BBL H2D", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_06", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL H2D", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_06", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic HIPS @BBL H2DP 0.2 nozzle.json index f37ed54947..c27f7b5a17 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL H2DP 0.2 nozzle.json @@ -1,125 +1,48 @@ { - "type": "filament", - "name": "Generic HIPS @BBL H2DP 0.2 nozzle", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_11", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL H2DP 0.2 nozzle", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_11", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL H2DP.json b/resources/profiles/BBL/filament/Generic HIPS @BBL H2DP.json index 00f330d6ab..a534eca8c3 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL H2DP.json @@ -1,127 +1,50 @@ { - "type": "filament", - "name": "Generic HIPS @BBL H2DP", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_10", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL H2DP", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_10", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic HIPS @BBL H2S 0.2 nozzle.json index 75df44fcfe..4f7a78c954 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL H2S 0.2 nozzle.json @@ -1,119 +1,54 @@ { - "type": "filament", - "name": "Generic HIPS @BBL H2S 0.2 nozzle", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_21", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL H2S 0.2 nozzle", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_21", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic HIPS @BBL H2S 0.4 nozzle.json index 0701193a90..c290b8755f 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL H2S 0.4 nozzle.json @@ -1,121 +1,61 @@ { - "type": "filament", - "name": "Generic HIPS @BBL H2S 0.4 nozzle", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_20", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL H2S 0.4 nozzle", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_20", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic HIPS @BBL P2S 0.2 nozzle.json index 2dc6447076..7ce3c7c1cc 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL P2S 0.2 nozzle.json @@ -1,165 +1,60 @@ { - "type": "filament", - "name": "Generic HIPS @BBL P2S 0.2 nozzle", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_09", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL P2S 0.2 nozzle", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_09", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL P2S.json b/resources/profiles/BBL/filament/Generic HIPS @BBL P2S.json index d1e020aa46..86e6d953b3 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL P2S.json @@ -1,167 +1,67 @@ { - "type": "filament", - "name": "Generic HIPS @BBL P2S", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_08", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL P2S", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_08", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic HIPS @BBL X1C 0.2 nozzle.json index 7810d59b2e..47de7f95d7 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL X1C 0.2 nozzle.json @@ -1,123 +1,50 @@ { - "type": "filament", - "name": "Generic HIPS @BBL X1C 0.2 nozzle", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1P 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL X1C 0.2 nozzle", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_01", + "instantiation": "true", + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1P 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL X1C.json b/resources/profiles/BBL/filament/Generic HIPS @BBL X1C.json index 842f64c74e..d69f4ca1e2 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL X1C.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL X1C.json @@ -1,133 +1,60 @@ { - "type": "filament", - "name": "Generic HIPS @BBL X1C", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 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 X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL X1C", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_00", + "instantiation": "true", + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 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 X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic HIPS @BBL X2D 0.2 nozzle.json index 16d3e96621..4c8a2cb705 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL X2D 0.2 nozzle.json @@ -1,266 +1,77 @@ { - "type": "filament", - "name": "Generic HIPS @BBL X2D 0.2 nozzle", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_14", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5", - "0.5", - "0.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "240" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "240", - "240", - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240", - "240", - "240" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL X2D 0.2 nozzle", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_14", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic HIPS @BBL X2D 0.4 nozzle.json index bd1986896c..2b340b6ac0 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL X2D 0.4 nozzle.json @@ -1,266 +1,87 @@ { - "type": "filament", - "name": "Generic HIPS @BBL X2D 0.4 nozzle", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_12", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "240" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "240", - "240", - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240", - "240", - "240" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL X2D 0.4 nozzle", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_12", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @BBL X2D.json b/resources/profiles/BBL/filament/Generic HIPS @BBL X2D.json index 940072f4a5..8bea0ce705 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic HIPS @BBL X2D.json @@ -1,267 +1,88 @@ { - "type": "filament", - "name": "Generic HIPS @BBL X2D", - "inherits": "Generic HIPS @base", - "from": "system", - "setting_id": "GFSS98_13", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "240" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "240", - "240", - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240", - "240", - "240" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic HIPS @BBL X2D", + "inherits": "Generic HIPS @base", + "from": "system", + "setting_id": "GFSS98_13", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic HIPS @base.json b/resources/profiles/BBL/filament/Generic HIPS @base.json index a0df005ecc..5ec83e7881 100644 --- a/resources/profiles/BBL/filament/Generic HIPS @base.json +++ b/resources/profiles/BBL/filament/Generic HIPS @base.json @@ -1,11 +1,11 @@ { - "type": "filament", - "name": "Generic HIPS @base", - "inherits": "fdm_filament_hips", - "from": "system", - "filament_id": "OFsFon5l", - "instantiation": "false", - "filament_is_support": [ - "1" - ] -} + "type": "filament", + "name": "Generic HIPS @base", + "inherits": "fdm_filament_hips", + "from": "system", + "filament_id": "OFsFon5l", + "instantiation": "false", + "filament_is_support": [ + "1" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA @BBL A1.json b/resources/profiles/BBL/filament/Generic PA @BBL A1.json index 93a713df83..a995a42b31 100644 --- a/resources/profiles/BBL/filament/Generic PA @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PA @BBL A1.json @@ -1,16 +1,16 @@ { - "type": "filament", - "name": "Generic PA @BBL A1", - "inherits": "Generic PA", - "from": "system", - "setting_id": "GFSN99_00", - "instantiation": "true", - "chamber_temperatures": [ - "0" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PA @BBL A1", + "inherits": "Generic PA", + "from": "system", + "setting_id": "GFSN99_00", + "instantiation": "true", + "chamber_temperatures": [ + "0" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PA @BBL H2C 0.4 nozzle.json index eeb46a95ff..267b5c24bf 100644 --- a/resources/profiles/BBL/filament/Generic PA @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PA @BBL H2C 0.4 nozzle.json @@ -1,171 +1,88 @@ { - "type": "filament", - "name": "Generic PA @BBL H2C 0.4 nozzle", - "inherits": "Generic PA @base", - "from": "system", - "setting_id": "GFSN99_06", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "220", - "220" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "4", - "4" - ], - "temperature_vitrification": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PA @BBL H2C 0.4 nozzle", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GFSN99_06", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "220", + "220", + "220" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "4", + "4", + "4" + ], + "temperature_vitrification": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA @BBL H2C.json b/resources/profiles/BBL/filament/Generic PA @BBL H2C.json index 65615430e6..211a60ca2c 100644 --- a/resources/profiles/BBL/filament/Generic PA @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PA @BBL H2C.json @@ -1,172 +1,89 @@ { - "type": "filament", - "name": "Generic PA @BBL H2C", - "inherits": "Generic PA @base", - "from": "system", - "setting_id": "GFSN99_07", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "220", - "220" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "4", - "4" - ], - "temperature_vitrification": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PA @BBL H2C", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GFSN99_07", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "220", + "220", + "220" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "4", + "4", + "4" + ], + "temperature_vitrification": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA @BBL H2D.json b/resources/profiles/BBL/filament/Generic PA @BBL H2D.json index 9e594ddb90..5d2382b5e1 100644 --- a/resources/profiles/BBL/filament/Generic PA @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PA @BBL H2D.json @@ -1,127 +1,57 @@ { - "type": "filament", - "name": "Generic PA @BBL H2D", - "inherits": "Generic PA @base", - "from": "system", - "setting_id": "GFSN99_01", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "4", - "4" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PA @BBL H2D", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GFSN99_01", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "4", + "4", + "4" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PA @BBL H2DP.json index 62287a716e..dbaee5f823 100644 --- a/resources/profiles/BBL/filament/Generic PA @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PA @BBL H2DP.json @@ -1,127 +1,50 @@ { - "type": "filament", - "name": "Generic PA @BBL H2DP", - "inherits": "Generic PA @base", - "from": "system", - "setting_id": "GFSN99_03", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "4", - "4" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PA @BBL H2DP", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GFSN99_03", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "4", + "4" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PA @BBL H2S 0.4 nozzle.json index 7fee81fd11..17d650e3d9 100644 --- a/resources/profiles/BBL/filament/Generic PA @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PA @BBL H2S 0.4 nozzle.json @@ -1,130 +1,65 @@ { - "type": "filament", - "name": "Generic PA @BBL H2S 0.4 nozzle", - "inherits": "Generic PA @base", - "from": "system", - "setting_id": "GFSN99_12", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "temperature_vitrification": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PA @BBL H2S 0.4 nozzle", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GFSN99_12", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "temperature_vitrification": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA @BBL P2S.json b/resources/profiles/BBL/filament/Generic PA @BBL P2S.json index fea73f2950..46e2fe4c59 100644 --- a/resources/profiles/BBL/filament/Generic PA @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PA @BBL P2S.json @@ -1,164 +1,59 @@ { - "type": "filament", - "name": "Generic PA @BBL P2S", - "inherits": "Generic PA @base", - "from": "system", - "setting_id": "GFSN99_02", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PA @BBL P2S", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GFSN99_02", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PA @BBL X2D 0.4 nozzle.json index f8703664fe..06005616ac 100644 --- a/resources/profiles/BBL/filament/Generic PA @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PA @BBL X2D 0.4 nozzle.json @@ -1,263 +1,76 @@ { - "type": "filament", - "name": "Generic PA @BBL X2D 0.4 nozzle", - "inherits": "Generic PA @base", - "from": "system", - "setting_id": "GFSN99_04", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "260" - ], - "nozzle_temperature": [ - "260", - "260", - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260", - "260", - "260" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PA @BBL X2D 0.4 nozzle", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GFSN99_04", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "260" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA @BBL X2D.json b/resources/profiles/BBL/filament/Generic PA @BBL X2D.json index 081a982513..fb5410d411 100644 --- a/resources/profiles/BBL/filament/Generic PA @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PA @BBL X2D.json @@ -1,264 +1,77 @@ { - "type": "filament", - "name": "Generic PA @BBL X2D", - "inherits": "Generic PA @base", - "from": "system", - "setting_id": "GFSN99_05", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "260" - ], - "nozzle_temperature": [ - "260", - "260", - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260", - "260", - "260" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PA @BBL X2D", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GFSN99_05", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "260" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "260", + "260", + "260", + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260", + "260", + "260", + "260" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA @base.json b/resources/profiles/BBL/filament/Generic PA @base.json index e6dad20449..bba2bff54b 100644 --- a/resources/profiles/BBL/filament/Generic PA @base.json +++ b/resources/profiles/BBL/filament/Generic PA @base.json @@ -1,26 +1,26 @@ { - "type": "filament", - "name": "Generic PA @base", - "inherits": "fdm_filament_pa", - "from": "system", - "filament_id": "OFg8ndtj", - "instantiation": "false", - "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.", - "chamber_temperatures": [ - "60" - ], - "fan_cooling_layer_time": [ - "65" - ], - "fan_max_speed": [ - "85" - ], - "fan_min_speed": [ - "40" - ], - "filament_max_volumetric_speed": [ - "12" - ], + "type": "filament", + "name": "Generic PA @base", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "OFg8ndtj", + "instantiation": "false", + "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.", + "chamber_temperatures": [ + "60" + ], + "fan_cooling_layer_time": [ + "65" + ], + "fan_max_speed": [ + "85" + ], + "fan_min_speed": [ + "40" + ], + "filament_max_volumetric_speed": [ + "12" + ], "filament_dev_ams_drying_temperature": [ "65", "80", @@ -36,31 +36,31 @@ "filament_dev_drying_softening_temperature": [ "85" ], - "nozzle_temperature": [ - "260" - ], - "nozzle_temperature_initial_layer": [ - "260" - ], - "nozzle_temperature_range_high": [ - "280" - ], - "nozzle_temperature_range_low": [ - "240" - ], - "overhang_fan_speed": [ - "95" - ], - "overhang_fan_threshold": [ - "10%" - ], - "required_nozzle_HRC": [ - "3" - ], - "slow_down_layer_time": [ - "8" - ], - "slow_down_min_speed": [ - "10" - ] -} + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "95" + ], + "overhang_fan_threshold": [ + "10%" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "10" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA-CF @BBL A1.json b/resources/profiles/BBL/filament/Generic PA-CF @BBL A1.json index 1950571c28..d35160d2be 100644 --- a/resources/profiles/BBL/filament/Generic PA-CF @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PA-CF @BBL A1.json @@ -1,16 +1,16 @@ { - "type": "filament", - "name": "Generic PA-CF @BBL A1", - "inherits": "Generic PA-CF", - "from": "system", - "setting_id": "GFSN98_01", - "instantiation": "true", - "temperature_vitrification": [ - "108" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PA-CF @BBL A1", + "inherits": "Generic PA-CF", + "from": "system", + "setting_id": "GFSN98_01", + "instantiation": "true", + "temperature_vitrification": [ + "108" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA-CF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PA-CF @BBL H2C 0.4 nozzle.json index 830430cea4..05d7a22c85 100644 --- a/resources/profiles/BBL/filament/Generic PA-CF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PA-CF @BBL H2C 0.4 nozzle.json @@ -1,174 +1,91 @@ { - "type": "filament", - "name": "Generic PA-CF @BBL H2C 0.4 nozzle", - "inherits": "Generic PA-CF", - "from": "system", - "setting_id": "GFSN98_07", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "250", - "250" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "130" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PA-CF @BBL H2C 0.4 nozzle", + "inherits": "Generic PA-CF", + "from": "system", + "setting_id": "GFSN98_07", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "250", + "250", + "250" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "130" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA-CF @BBL H2C.json b/resources/profiles/BBL/filament/Generic PA-CF @BBL H2C.json index aa932ea447..c33ae0a90c 100644 --- a/resources/profiles/BBL/filament/Generic PA-CF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PA-CF @BBL H2C.json @@ -1,175 +1,92 @@ { - "type": "filament", - "name": "Generic PA-CF @BBL H2C", - "inherits": "Generic PA-CF", - "from": "system", - "setting_id": "GFSN98_08", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "250", - "250" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "130" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PA-CF @BBL H2C", + "inherits": "Generic PA-CF", + "from": "system", + "setting_id": "GFSN98_08", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "250", + "250", + "250" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "130" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA-CF @BBL H2D.json b/resources/profiles/BBL/filament/Generic PA-CF @BBL H2D.json index 9c295df735..47b846b4a8 100644 --- a/resources/profiles/BBL/filament/Generic PA-CF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PA-CF @BBL H2D.json @@ -1,130 +1,60 @@ { - "type": "filament", - "name": "Generic PA-CF @BBL H2D", - "inherits": "Generic PA-CF", - "from": "system", - "setting_id": "GFSN98_02", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PA-CF @BBL H2D", + "inherits": "Generic PA-CF", + "from": "system", + "setting_id": "GFSN98_02", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA-CF @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PA-CF @BBL H2DP.json index 125b577d1a..c4a8fbb2c8 100644 --- a/resources/profiles/BBL/filament/Generic PA-CF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PA-CF @BBL H2DP.json @@ -1,130 +1,53 @@ { - "type": "filament", - "name": "Generic PA-CF @BBL H2DP", - "inherits": "Generic PA-CF", - "from": "system", - "setting_id": "GFSN98_04", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PA-CF @BBL H2DP", + "inherits": "Generic PA-CF", + "from": "system", + "setting_id": "GFSN98_04", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA-CF @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PA-CF @BBL H2S 0.4 nozzle.json index 7af66ea34f..a6797dac4b 100644 --- a/resources/profiles/BBL/filament/Generic PA-CF @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PA-CF @BBL H2S 0.4 nozzle.json @@ -1,133 +1,73 @@ { - "type": "filament", - "name": "Generic PA-CF @BBL H2S 0.4 nozzle", - "inherits": "Generic PA-CF @base", - "from": "system", - "setting_id": "GFSN98_12", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "temperature_vitrification": [ - "130" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PA-CF @BBL H2S 0.4 nozzle", + "inherits": "Generic PA-CF @base", + "from": "system", + "setting_id": "GFSN98_12", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "130" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA-CF @BBL P2S.json b/resources/profiles/BBL/filament/Generic PA-CF @BBL P2S.json index f675bb6803..e6a74c5ef4 100644 --- a/resources/profiles/BBL/filament/Generic PA-CF @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PA-CF @BBL P2S.json @@ -1,167 +1,67 @@ { - "type": "filament", - "name": "Generic PA-CF @BBL P2S", - "inherits": "Generic PA-CF @base", - "from": "system", - "setting_id": "GFSN98_03", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PA-CF @BBL P2S", + "inherits": "Generic PA-CF @base", + "from": "system", + "setting_id": "GFSN98_03", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA-CF @BBL X1E.json b/resources/profiles/BBL/filament/Generic PA-CF @BBL X1E.json index fbac5ee6d3..4f8e4e863b 100644 --- a/resources/profiles/BBL/filament/Generic PA-CF @BBL X1E.json +++ b/resources/profiles/BBL/filament/Generic PA-CF @BBL X1E.json @@ -1,124 +1,51 @@ { - "type": "filament", - "name": "Generic PA-CF @BBL X1E", - "inherits": "Generic PA-CF", - "from": "system", - "setting_id": "GFSN98_00", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PA-CF @BBL X1E", + "inherits": "Generic PA-CF", + "from": "system", + "setting_id": "GFSN98_00", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PA-CF @BBL X2D 0.4 nozzle.json index e799f4bee8..8b70453f51 100644 --- a/resources/profiles/BBL/filament/Generic PA-CF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PA-CF @BBL X2D 0.4 nozzle.json @@ -1,266 +1,87 @@ { - "type": "filament", - "name": "Generic PA-CF @BBL X2D 0.4 nozzle", - "inherits": "Generic PA-CF @base", - "from": "system", - "setting_id": "GFSN98_05", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "290" - ], - "nozzle_temperature": [ - "290", - "290", - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290", - "290", - "290" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PA-CF @BBL X2D 0.4 nozzle", + "inherits": "Generic PA-CF @base", + "from": "system", + "setting_id": "GFSN98_05", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290", + "290", + "290" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA-CF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PA-CF @BBL X2D.json index 55a9e5601f..67f2112489 100644 --- a/resources/profiles/BBL/filament/Generic PA-CF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PA-CF @BBL X2D.json @@ -1,267 +1,88 @@ { - "type": "filament", - "name": "Generic PA-CF @BBL X2D", - "inherits": "Generic PA-CF @base", - "from": "system", - "setting_id": "GFSN98_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "290" - ], - "nozzle_temperature": [ - "290", - "290", - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290", - "290", - "290" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PA-CF @BBL X2D", + "inherits": "Generic PA-CF @base", + "from": "system", + "setting_id": "GFSN98_06", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290", + "290", + "290" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA-CF @base.json b/resources/profiles/BBL/filament/Generic PA-CF @base.json index 7c77ffe482..756d98b928 100644 --- a/resources/profiles/BBL/filament/Generic PA-CF @base.json +++ b/resources/profiles/BBL/filament/Generic PA-CF @base.json @@ -1,33 +1,36 @@ { - "type": "filament", - "name": "Generic PA-CF @base", - "inherits": "fdm_filament_pa", - "from": "system", - "filament_id": "OFQLcbps", - "instantiation": "false", - "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", - "fan_cooling_layer_time": [ - "5" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "10" - ], - "filament_type": [ - "PA-CF" - ], - "full_fan_speed_layer": [ - "2" - ], - "overhang_fan_speed": [ - "40" - ], - "overhang_fan_threshold": [ - "0%" - ], - "temperature_vitrification": [ - "170" - ] -} + "type": "filament", + "name": "Generic PA-CF @base", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "OFQLcbps", + "instantiation": "false", + "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_type": [ + "PA-CF" + ], + "full_fan_speed_layer": [ + "2" + ], + "additional_fan_full_speed_layer": [ + "2" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "temperature_vitrification": [ + "170" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA-CF.json b/resources/profiles/BBL/filament/Generic PA-CF.json index eaef22a467..d316826ea5 100644 --- a/resources/profiles/BBL/filament/Generic PA-CF.json +++ b/resources/profiles/BBL/filament/Generic PA-CF.json @@ -1,19 +1,19 @@ { - "type": "filament", - "name": "Generic PA-CF", - "inherits": "Generic PA-CF @base", - "from": "system", - "setting_id": "GFSN99", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PA-CF", + "inherits": "Generic PA-CF @base", + "from": "system", + "setting_id": "GFSN99", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PA.json b/resources/profiles/BBL/filament/Generic PA.json index c543dfb5d2..ef3aa6526b 100644 --- a/resources/profiles/BBL/filament/Generic PA.json +++ b/resources/profiles/BBL/filament/Generic PA.json @@ -1,22 +1,22 @@ { - "type": "filament", - "name": "Generic PA", - "inherits": "Generic PA @base", - "from": "system", - "setting_id": "GFSN98", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PA", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GFSN98", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PC @0.2 nozzle.json index 1f91e7819b..2aaddc1d97 100644 --- a/resources/profiles/BBL/filament/Generic PC @0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PC @0.2 nozzle.json @@ -1,15 +1,15 @@ { - "type": "filament", - "name": "Generic PC @0.2 nozzle", - "inherits": "Generic PC @base", - "from": "system", - "setting_id": "GFSC99_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PC @0.2 nozzle", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PC @BBL A1 0.2 nozzle.json index 9c086ee516..12484bcf7f 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL A1 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "Generic PC @BBL A1 0.2 nozzle", - "inherits": "Generic PC @base", - "from": "system", - "setting_id": "GFSC99_08", - "instantiation": "true", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "20" - ], - "filament_max_volumetric_speed": [ - "1" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PC @BBL A1 0.2 nozzle", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_08", + "instantiation": "true", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "20" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL A1.json b/resources/profiles/BBL/filament/Generic PC @BBL A1.json index d27d005aa7..8da1f25885 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL A1.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "Generic PC @BBL A1", - "inherits": "Generic PC @base", - "from": "system", - "setting_id": "GFSC99_07", - "instantiation": "true", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "20" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PC @BBL A1", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_07", + "instantiation": "true", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "20" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PC @BBL H2C 0.2 nozzle.json index a3aad0310b..a8ed1fae09 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL H2C 0.2 nozzle.json @@ -1,174 +1,81 @@ { - "type": "filament", - "name": "Generic PC @BBL H2C 0.2 nozzle", - "inherits": "Generic PC @base", - "from": "system", - "setting_id": "GFSC99_20", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "240", - "240" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "slow_down_layer_time": [ - "12" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PC @BBL H2C 0.2 nozzle", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_20", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "240", + "240" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PC @BBL H2C 0.4 nozzle.json index 96341294ac..3cbc4d7d04 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL H2C 0.4 nozzle.json @@ -1,174 +1,111 @@ { - "type": "filament", - "name": "Generic PC @BBL H2C 0.4 nozzle", - "inherits": "Generic PC @base", - "from": "system", - "setting_id": "GFSC99_21", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "240", - "240" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "slow_down_layer_time": [ - "12" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PC @BBL H2C 0.4 nozzle", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_21", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "240", + "240", + "240" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL H2C.json b/resources/profiles/BBL/filament/Generic PC @BBL H2C.json index df406fff54..3f41a55f11 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL H2C.json @@ -1,175 +1,112 @@ { - "type": "filament", - "name": "Generic PC @BBL H2C", - "inherits": "Generic PC @base", - "from": "system", - "setting_id": "GFSC99_22", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "240", - "240" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "slow_down_layer_time": [ - "12" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PC @BBL H2C", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_22", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "240", + "240", + "240" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PC @BBL H2D 0.2 nozzle.json index f8364ea552..c999776cf7 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL H2D 0.2 nozzle.json @@ -1,128 +1,51 @@ { - "type": "filament", - "name": "Generic PC @BBL H2D 0.2 nozzle", - "inherits": "Generic PC @base", - "from": "system", - "setting_id": "GFSC99_09", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PC @BBL H2D 0.2 nozzle", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_09", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL H2D.json b/resources/profiles/BBL/filament/Generic PC @BBL H2D.json index b896cb1d8e..47fb014f54 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL H2D.json @@ -1,130 +1,60 @@ { - "type": "filament", - "name": "Generic PC @BBL H2D", - "inherits": "Generic PC @base", - "from": "system", - "setting_id": "GFSC99_10", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PC @BBL H2D", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_10", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PC @BBL H2DP 0.2 nozzle.json index 30fefeea16..68becb1906 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL H2DP 0.2 nozzle.json @@ -1,128 +1,51 @@ { - "type": "filament", - "name": "Generic PC @BBL H2DP 0.2 nozzle", - "inherits": "Generic PC @0.2 nozzle", - "from": "system", - "setting_id": "GFSC99_15", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PC @BBL H2DP 0.2 nozzle", + "inherits": "Generic PC @0.2 nozzle", + "from": "system", + "setting_id": "GFSC99_15", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PC @BBL H2DP.json index 3909e3f0af..8b75dc13d4 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL H2DP.json @@ -1,130 +1,53 @@ { - "type": "filament", - "name": "Generic PC @BBL H2DP", - "inherits": "Generic PC", - "from": "system", - "setting_id": "GFSC99_16", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PC @BBL H2DP", + "inherits": "Generic PC", + "from": "system", + "setting_id": "GFSC99_16", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PC @BBL H2S 0.2 nozzle.json index 68bce60e54..c50fc3489b 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL H2S 0.2 nozzle.json @@ -1,131 +1,66 @@ { - "type": "filament", - "name": "Generic PC @BBL H2S 0.2 nozzle", - "inherits": "Generic PC @base", - "from": "system", - "setting_id": "GFSC99_12", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "12" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PC @BBL H2S 0.2 nozzle", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_12", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL H2S.json b/resources/profiles/BBL/filament/Generic PC @BBL H2S.json index 86d8644b6e..b425c60f05 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL H2S.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL H2S.json @@ -1,133 +1,93 @@ { - "type": "filament", - "name": "Generic PC @BBL H2S", - "inherits": "Generic PC @base", - "from": "system", - "setting_id": "GFSC99_11", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "12" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PC @BBL H2S", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_11", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL P1S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PC @BBL P1S 0.2 nozzle.json index 1cb8865544..1a384446d0 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL P1S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL P1S 0.2 nozzle.json @@ -1,137 +1,64 @@ { - "type": "filament", - "name": "Generic PC @BBL P1S 0.2 nozzle", - "inherits": "Generic PC @0.2 nozzle", - "from": "system", - "setting_id": "GFSC99_03", - "instantiation": "true", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1S 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PC @BBL P1S 0.2 nozzle", + "inherits": "Generic PC @0.2 nozzle", + "from": "system", + "setting_id": "GFSC99_03", + "instantiation": "true", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL P1S.json b/resources/profiles/BBL/filament/Generic PC @BBL P1S.json index eddd0f3b07..19b146fcb8 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL P1S.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL P1S.json @@ -1,139 +1,66 @@ { - "type": "filament", - "name": "Generic PC @BBL P1S", - "inherits": "Generic PC", - "from": "system", - "setting_id": "GFSC99_04", - "instantiation": "true", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PC @BBL P1S", + "inherits": "Generic PC", + "from": "system", + "setting_id": "GFSC99_04", + "instantiation": "true", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PC @BBL P2S 0.2 nozzle.json index 9462fe110a..7a9760120a 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL P2S 0.2 nozzle.json @@ -1,183 +1,78 @@ { - "type": "filament", - "name": "Generic PC @BBL P2S 0.2 nozzle", - "inherits": "Generic PC @0.2 nozzle", - "from": "system", - "setting_id": "GFSC99_13", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PC @BBL P2S 0.2 nozzle", + "inherits": "Generic PC @0.2 nozzle", + "from": "system", + "setting_id": "GFSC99_13", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL P2S.json b/resources/profiles/BBL/filament/Generic PC @BBL P2S.json index 2ebfebc7d8..54960ffdb6 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL P2S.json @@ -1,185 +1,85 @@ { - "type": "filament", - "name": "Generic PC @BBL P2S", - "inherits": "Generic PC", - "from": "system", - "setting_id": "GFSC99_14", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PC @BBL P2S", + "inherits": "Generic PC", + "from": "system", + "setting_id": "GFSC99_14", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL X1E 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PC @BBL X1E 0.2 nozzle.json index ab5cb290e1..931d3b1495 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL X1E 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL X1E 0.2 nozzle.json @@ -1,122 +1,49 @@ { - "type": "filament", - "name": "Generic PC @BBL X1E 0.2 nozzle", - "inherits": "Generic PC @0.2 nozzle", - "from": "system", - "setting_id": "GFSC99_05", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PC @BBL X1E 0.2 nozzle", + "inherits": "Generic PC @0.2 nozzle", + "from": "system", + "setting_id": "GFSC99_05", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL X1E.json b/resources/profiles/BBL/filament/Generic PC @BBL X1E.json index 98787f054e..80e9a6c901 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL X1E.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL X1E.json @@ -1,124 +1,51 @@ { - "type": "filament", - "name": "Generic PC @BBL X1E", - "inherits": "Generic PC", - "from": "system", - "setting_id": "GFSC99_06", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PC @BBL X1E", + "inherits": "Generic PC", + "from": "system", + "setting_id": "GFSC99_06", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PC @BBL X2D 0.2 nozzle.json index a78168d21c..758091daa3 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL X2D 0.2 nozzle.json @@ -1,266 +1,77 @@ { - "type": "filament", - "name": "Generic PC @BBL X2D 0.2 nozzle", - "inherits": "Generic PC @base", - "from": "system", - "setting_id": "GFSC99_17", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "0.94", - "0.94", - "0.94", - "0.94" - ], - "filament_max_volumetric_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "280" - ], - "nozzle_temperature": [ - "280", - "280", - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270", - "270", - "270" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PC @BBL X2D 0.2 nozzle", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_17", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94", + "0.94" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "280" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "280", + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PC @BBL X2D 0.4 nozzle.json index f0af348f0e..2b9331cbe1 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL X2D 0.4 nozzle.json @@ -1,266 +1,87 @@ { - "type": "filament", - "name": "Generic PC @BBL X2D 0.4 nozzle", - "inherits": "Generic PC @base", - "from": "system", - "setting_id": "GFSC99_18", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "0.94", - "0.94", - "0.94", - "0.94" - ], - "filament_max_volumetric_speed": [ - "16", - "16", - "16", - "16" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "280" - ], - "nozzle_temperature": [ - "280", - "280", - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270", - "270", - "270" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PC @BBL X2D 0.4 nozzle", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_18", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94", + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "280" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "280", + "280", + "280", + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270", + "270", + "270" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @BBL X2D.json b/resources/profiles/BBL/filament/Generic PC @BBL X2D.json index dcc901e61d..934e618447 100644 --- a/resources/profiles/BBL/filament/Generic PC @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PC @BBL X2D.json @@ -1,267 +1,88 @@ { - "type": "filament", - "name": "Generic PC @BBL X2D", - "inherits": "Generic PC @base", - "from": "system", - "setting_id": "GFSC99_19", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "0.94", - "0.94", - "0.94", - "0.94" - ], - "filament_max_volumetric_speed": [ - "16", - "16", - "16", - "16" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "280" - ], - "nozzle_temperature": [ - "280", - "280", - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270", - "270", - "270" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PC @BBL X2D", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_19", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.94", + "0.94", + "0.94", + "0.94", + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "280" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "280", + "280", + "280", + "280", + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270", + "270", + "270", + "270", + "270" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC @base.json b/resources/profiles/BBL/filament/Generic PC @base.json index b61c2296b5..4226a49f5d 100644 --- a/resources/profiles/BBL/filament/Generic PC @base.json +++ b/resources/profiles/BBL/filament/Generic PC @base.json @@ -1,15 +1,15 @@ { - "type": "filament", - "name": "Generic PC @base", - "inherits": "fdm_filament_pc", - "from": "system", - "filament_id": "OFLakOUI", - "instantiation": "false", - "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.", - "filament_flow_ratio": [ - "0.94" - ], - "filament_max_volumetric_speed": [ - "16" - ] -} + "type": "filament", + "name": "Generic PC @base", + "inherits": "fdm_filament_pc", + "from": "system", + "filament_id": "OFLakOUI", + "instantiation": "false", + "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.", + "filament_flow_ratio": [ + "0.94" + ], + "filament_max_volumetric_speed": [ + "16" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PC.json b/resources/profiles/BBL/filament/Generic PC.json index 5c31679456..6e8cbc2c6e 100644 --- a/resources/profiles/BBL/filament/Generic PC.json +++ b/resources/profiles/BBL/filament/Generic PC.json @@ -1,16 +1,16 @@ { - "type": "filament", - "name": "Generic PC", - "inherits": "Generic PC @base", - "from": "system", - "setting_id": "GFSC99", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PC", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PCTG @BBL A1.json b/resources/profiles/BBL/filament/Generic PCTG @BBL A1.json index 0d50315158..0d7ddda1cb 100644 --- a/resources/profiles/BBL/filament/Generic PCTG @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PCTG @BBL A1.json @@ -1,13 +1,13 @@ { - "type": "filament", - "name": "Generic PCTG @BBL A1", - "inherits": "Generic PCTG @base", - "from": "system", - "setting_id": "GFSG97_01", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PCTG @BBL A1", + "inherits": "Generic PCTG @base", + "from": "system", + "setting_id": "GFSG97_01", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PCTG @BBL A1M.json b/resources/profiles/BBL/filament/Generic PCTG @BBL A1M.json index 1009d7e522..3f02a3a3e8 100644 --- a/resources/profiles/BBL/filament/Generic PCTG @BBL A1M.json +++ b/resources/profiles/BBL/filament/Generic PCTG @BBL A1M.json @@ -1,13 +1,13 @@ { - "type": "filament", - "name": "Generic PCTG @BBL A1M", - "inherits": "Generic PCTG @base", - "from": "system", - "setting_id": "GFSG97_02", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PCTG @BBL A1M", + "inherits": "Generic PCTG @base", + "from": "system", + "setting_id": "GFSG97_02", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PCTG @BBL A2L.json b/resources/profiles/BBL/filament/Generic PCTG @BBL A2L.json index 4908632fd1..0188b6396f 100644 --- a/resources/profiles/BBL/filament/Generic PCTG @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic PCTG @BBL A2L.json @@ -1,19 +1,19 @@ { - "type": "filament", - "name": "Generic PCTG @BBL A2L", - "inherits": "Generic PCTG @base", - "from": "system", - "setting_id": "GFSG97_10", - "instantiation": "true", - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PCTG @BBL A2L", + "inherits": "Generic PCTG @base", + "from": "system", + "setting_id": "GFSG97_10", + "instantiation": "true", + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PCTG @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PCTG @BBL H2C 0.4 nozzle.json index 8c4b384ba1..cc4ccc4df7 100644 --- a/resources/profiles/BBL/filament/Generic PCTG @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PCTG @BBL H2C 0.4 nozzle.json @@ -1,171 +1,78 @@ { - "type": "filament", - "name": "Generic PCTG @BBL H2C 0.4 nozzle", - "inherits": "Generic PCTG @base", - "from": "system", - "setting_id": "GFSG97_08", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "215", - "215" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "temperature_vitrification": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PCTG @BBL H2C 0.4 nozzle", + "inherits": "Generic PCTG @base", + "from": "system", + "setting_id": "GFSG97_08", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "215", + "215", + "215" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "temperature_vitrification": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PCTG @BBL H2C.json b/resources/profiles/BBL/filament/Generic PCTG @BBL H2C.json index 1111bf79dd..a6d2f7b961 100644 --- a/resources/profiles/BBL/filament/Generic PCTG @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PCTG @BBL H2C.json @@ -1,172 +1,79 @@ { - "type": "filament", - "name": "Generic PCTG @BBL H2C", - "inherits": "Generic PCTG @base", - "from": "system", - "setting_id": "GFSG97_09", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "215", - "215" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "temperature_vitrification": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PCTG @BBL H2C", + "inherits": "Generic PCTG @base", + "from": "system", + "setting_id": "GFSG97_09", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "215", + "215", + "215" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "temperature_vitrification": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PCTG @BBL H2D.json b/resources/profiles/BBL/filament/Generic PCTG @BBL H2D.json index 6b12183d0d..6c4652cdd7 100644 --- a/resources/profiles/BBL/filament/Generic PCTG @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PCTG @BBL H2D.json @@ -1,127 +1,47 @@ { - "type": "filament", - "name": "Generic PCTG @BBL H2D", - "inherits": "Generic PCTG @base", - "from": "system", - "setting_id": "GFSG97_03", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PCTG @BBL H2D", + "inherits": "Generic PCTG @base", + "from": "system", + "setting_id": "GFSG97_03", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PCTG @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PCTG @BBL H2DP.json index 76b8c3a828..2fba98ad14 100644 --- a/resources/profiles/BBL/filament/Generic PCTG @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PCTG @BBL H2DP.json @@ -1,127 +1,42 @@ { - "type": "filament", - "name": "Generic PCTG @BBL H2DP", - "inherits": "Generic PCTG @base", - "from": "system", - "setting_id": "GFSG97_05", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PCTG @BBL H2DP", + "inherits": "Generic PCTG @base", + "from": "system", + "setting_id": "GFSG97_05", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PCTG @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PCTG @BBL H2S 0.4 nozzle.json index 4d93a98047..7ba47da8ea 100644 --- a/resources/profiles/BBL/filament/Generic PCTG @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PCTG @BBL H2S 0.4 nozzle.json @@ -1,130 +1,60 @@ { - "type": "filament", - "name": "Generic PCTG @BBL H2S 0.4 nozzle", - "inherits": "Generic PCTG @base", - "from": "system", - "setting_id": "GFSG97_11", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "temperature_vitrification": [ - "60" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PCTG @BBL H2S 0.4 nozzle", + "inherits": "Generic PCTG @base", + "from": "system", + "setting_id": "GFSG97_11", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "temperature_vitrification": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PCTG @BBL P2S.json b/resources/profiles/BBL/filament/Generic PCTG @BBL P2S.json index 0931564b87..dc6f419172 100644 --- a/resources/profiles/BBL/filament/Generic PCTG @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PCTG @BBL P2S.json @@ -1,167 +1,57 @@ { - "type": "filament", - "name": "Generic PCTG @BBL P2S", - "inherits": "Generic PCTG @base", - "from": "system", - "setting_id": "GFSG97_04", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PCTG @BBL P2S", + "inherits": "Generic PCTG @base", + "from": "system", + "setting_id": "GFSG97_04", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PCTG @BBL X1C.json b/resources/profiles/BBL/filament/Generic PCTG @BBL X1C.json index 1380331a77..38af07cac9 100644 --- a/resources/profiles/BBL/filament/Generic PCTG @BBL X1C.json +++ b/resources/profiles/BBL/filament/Generic PCTG @BBL X1C.json @@ -1,133 +1,52 @@ { - "type": "filament", - "name": "Generic PCTG @BBL X1C", - "inherits": "Generic PCTG @base", - "from": "system", - "setting_id": "GFSG97_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "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" - ] -} + "type": "filament", + "name": "Generic PCTG @BBL X1C", + "inherits": "Generic PCTG @base", + "from": "system", + "setting_id": "GFSG97_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "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" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PCTG @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PCTG @BBL X2D 0.4 nozzle.json index df0ea56d94..9468465fc3 100644 --- a/resources/profiles/BBL/filament/Generic PCTG @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PCTG @BBL X2D 0.4 nozzle.json @@ -1,266 +1,79 @@ { - "type": "filament", - "name": "Generic PCTG @BBL X2D 0.4 nozzle", - "inherits": "Generic PCTG @base", - "from": "system", - "setting_id": "GFSG97_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "255" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "255", - "255", - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255", - "255", - "255" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PCTG @BBL X2D 0.4 nozzle", + "inherits": "Generic PCTG @base", + "from": "system", + "setting_id": "GFSG97_06", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255", + "255", + "255" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PCTG @BBL X2D.json b/resources/profiles/BBL/filament/Generic PCTG @BBL X2D.json index df1601a0d1..f27677f209 100644 --- a/resources/profiles/BBL/filament/Generic PCTG @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PCTG @BBL X2D.json @@ -1,267 +1,80 @@ { - "type": "filament", - "name": "Generic PCTG @BBL X2D", - "inherits": "Generic PCTG @base", - "from": "system", - "setting_id": "GFSG97_07", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "255" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "255", - "255", - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255", - "255", - "255" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PCTG @BBL X2D", + "inherits": "Generic PCTG @base", + "from": "system", + "setting_id": "GFSG97_07", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255", + "255", + "255" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PCTG @base.json b/resources/profiles/BBL/filament/Generic PCTG @base.json index 2eea3496a3..f4b8444275 100644 --- a/resources/profiles/BBL/filament/Generic PCTG @base.json +++ b/resources/profiles/BBL/filament/Generic PCTG @base.json @@ -1,43 +1,43 @@ { - "type": "filament", - "name": "Generic PCTG @base", - "inherits": "fdm_filament_pctg", - "from": "system", - "filament_id": "OFu1evlr", - "instantiation": "false", - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "10" - ], - "filament_cost": [ - "28.99" - ], - "filament_density": [ - "1.29" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "6" - ], + "type": "filament", + "name": "Generic PCTG @base", + "inherits": "fdm_filament_pctg", + "from": "system", + "filament_id": "OFu1evlr", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "28.99" + ], + "filament_density": [ + "1.29" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "6" + ], "filament_dev_chamber_drying_bed_temperature": [ "80" ], @@ -66,37 +66,37 @@ "filament_dev_drying_softening_temperature": [ "60" ], - "hot_plate_temp": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "nozzle_temperature_range_low": [ - "240" - ], - "overhang_fan_speed": [ - "90" - ], - "overhang_fan_threshold": [ - "10%" - ], - "slow_down_layer_time": [ - "12" - ], - "temperature_vitrification": [ - "90" - ], - "textured_plate_temp": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], - "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}" - ] -} + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "temperature_vitrification": [ + "90" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE @BBL A1.json b/resources/profiles/BBL/filament/Generic PE @BBL A1.json index 570275aa34..39e2445109 100644 --- a/resources/profiles/BBL/filament/Generic PE @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PE @BBL A1.json @@ -1,14 +1,14 @@ { - "type": "filament", - "name": "Generic PE @BBL A1", - "inherits": "Generic PE @base", - "from": "system", - "setting_id": "GFSP99_01", - "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": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PE @BBL A1", + "inherits": "Generic PE @base", + "from": "system", + "setting_id": "GFSP99_01", + "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": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE @BBL A1M.json b/resources/profiles/BBL/filament/Generic PE @BBL A1M.json index a8ce6f5860..c1127d4123 100644 --- a/resources/profiles/BBL/filament/Generic PE @BBL A1M.json +++ b/resources/profiles/BBL/filament/Generic PE @BBL A1M.json @@ -1,14 +1,14 @@ { - "type": "filament", - "name": "Generic PE @BBL A1M", - "inherits": "Generic PE @base", - "from": "system", - "setting_id": "GFSP99_02", - "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": [ - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PE @BBL A1M", + "inherits": "Generic PE @base", + "from": "system", + "setting_id": "GFSP99_02", + "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": [ + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE @BBL A2L.json b/resources/profiles/BBL/filament/Generic PE @BBL A2L.json index 010887c67a..831832b034 100644 --- a/resources/profiles/BBL/filament/Generic PE @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic PE @BBL A2L.json @@ -1,20 +1,20 @@ { - "type": "filament", - "name": "Generic PE @BBL A2L", - "inherits": "Generic PE @base", - "from": "system", - "setting_id": "GFSP99_10", - "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.", - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PE @BBL A2L", + "inherits": "Generic PE @base", + "from": "system", + "setting_id": "GFSP99_10", + "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.", + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PE @BBL H2C 0.4 nozzle.json index 2fdd6dfb3b..0620cbf5c5 100644 --- a/resources/profiles/BBL/filament/Generic PE @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PE @BBL H2C 0.4 nozzle.json @@ -1,178 +1,95 @@ { - "type": "filament", - "name": "Generic PE @BBL H2C 0.4 nozzle", - "inherits": "Generic PE @base", - "from": "system", - "setting_id": "GFSP99_08", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "170", - "170" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "50" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PE @BBL H2C 0.4 nozzle", + "inherits": "Generic PE @base", + "from": "system", + "setting_id": "GFSP99_08", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "170", + "170", + "170" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE @BBL H2C.json b/resources/profiles/BBL/filament/Generic PE @BBL H2C.json index 84601671d0..9f8d92f68d 100644 --- a/resources/profiles/BBL/filament/Generic PE @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PE @BBL H2C.json @@ -1,179 +1,96 @@ { - "type": "filament", - "name": "Generic PE @BBL H2C", - "inherits": "Generic PE @base", - "from": "system", - "setting_id": "GFSP99_09", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "170", - "170" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "50" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PE @BBL H2C", + "inherits": "Generic PE @base", + "from": "system", + "setting_id": "GFSP99_09", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "170", + "170", + "170" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE @BBL H2D.json b/resources/profiles/BBL/filament/Generic PE @BBL H2D.json index d3ab2a6d47..4488fc82b9 100644 --- a/resources/profiles/BBL/filament/Generic PE @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PE @BBL H2D.json @@ -1,134 +1,64 @@ { - "type": "filament", - "name": "Generic PE @BBL H2D", - "inherits": "Generic PE @base", - "from": "system", - "setting_id": "GFSP99_03", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PE @BBL H2D", + "inherits": "Generic PE @base", + "from": "system", + "setting_id": "GFSP99_03", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PE @BBL H2DP.json index 204e484f6c..0764a31a50 100644 --- a/resources/profiles/BBL/filament/Generic PE @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PE @BBL H2DP.json @@ -1,134 +1,57 @@ { - "type": "filament", - "name": "Generic PE @BBL H2DP", - "inherits": "Generic PE @base", - "from": "system", - "setting_id": "GFSP99_05", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PE @BBL H2DP", + "inherits": "Generic PE @base", + "from": "system", + "setting_id": "GFSP99_05", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PE @BBL H2S 0.4 nozzle.json index 5abcc9fb83..63fa707cc9 100644 --- a/resources/profiles/BBL/filament/Generic PE @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PE @BBL H2S 0.4 nozzle.json @@ -1,137 +1,77 @@ { - "type": "filament", - "name": "Generic PE @BBL H2S 0.4 nozzle", - "inherits": "Generic PE @base", - "from": "system", - "setting_id": "GFSP99_11", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "temperature_vitrification": [ - "50" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PE @BBL H2S 0.4 nozzle", + "inherits": "Generic PE @base", + "from": "system", + "setting_id": "GFSP99_11", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE @BBL P2S.json b/resources/profiles/BBL/filament/Generic PE @BBL P2S.json index 8527b90373..beda73d06f 100644 --- a/resources/profiles/BBL/filament/Generic PE @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PE @BBL P2S.json @@ -1,174 +1,74 @@ { - "type": "filament", - "name": "Generic PE @BBL P2S", - "inherits": "Generic PE @base", - "from": "system", - "setting_id": "GFSP99_04", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PE @BBL P2S", + "inherits": "Generic PE @base", + "from": "system", + "setting_id": "GFSP99_04", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE @BBL X1C.json b/resources/profiles/BBL/filament/Generic PE @BBL X1C.json index 4875f9950a..b6c33141eb 100644 --- a/resources/profiles/BBL/filament/Generic PE @BBL X1C.json +++ b/resources/profiles/BBL/filament/Generic PE @BBL X1C.json @@ -1,134 +1,61 @@ { - "type": "filament", - "name": "Generic PE @BBL X1C", - "inherits": "Generic PE @base", - "from": "system", - "setting_id": "GFSP99_00", - "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_max_volumetric_speed": [ - "8", - "8" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "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" - ] -} + "type": "filament", + "name": "Generic PE @BBL X1C", + "inherits": "Generic PE @base", + "from": "system", + "setting_id": "GFSP99_00", + "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_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "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" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PE @BBL X2D 0.4 nozzle.json index 5db7dad391..639d0db200 100644 --- a/resources/profiles/BBL/filament/Generic PE @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PE @BBL X2D 0.4 nozzle.json @@ -1,273 +1,94 @@ { - "type": "filament", - "name": "Generic PE @BBL X2D 0.4 nozzle", - "inherits": "Generic PE @base", - "from": "system", - "setting_id": "GFSP99_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "210" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "210", - "210", - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210", - "210", - "210" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PE @BBL X2D 0.4 nozzle", + "inherits": "Generic PE @base", + "from": "system", + "setting_id": "GFSP99_06", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE @BBL X2D.json b/resources/profiles/BBL/filament/Generic PE @BBL X2D.json index 1d33204d49..57d7b3f760 100644 --- a/resources/profiles/BBL/filament/Generic PE @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PE @BBL X2D.json @@ -1,274 +1,95 @@ { - "type": "filament", - "name": "Generic PE @BBL X2D", - "inherits": "Generic PE @base", - "from": "system", - "setting_id": "GFSP99_07", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8", - "8", - "8" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "210" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "210", - "210", - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210", - "210", - "210" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PE @BBL X2D", + "inherits": "Generic PE @base", + "from": "system", + "setting_id": "GFSP99_07", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8", + "8", + "8", + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE @base.json b/resources/profiles/BBL/filament/Generic PE @base.json index d9bdfc84a5..f286dabbd4 100644 --- a/resources/profiles/BBL/filament/Generic PE @base.json +++ b/resources/profiles/BBL/filament/Generic PE @base.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "Generic PE @base", - "inherits": "fdm_filament_pe", - "from": "system", - "filament_id": "OFPklMI1", - "instantiation": "false", - "filament_cost": [ - "40.99" - ], - "filament_density": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "8" - ], - "filament_adhesiveness_category": [ - "901" - ], - "nozzle_temperature": [ - "210" - ], - "nozzle_temperature_initial_layer": [ - "210" - ], - "nozzle_temperature_range_high": [ - "220" - ], - "nozzle_temperature_range_low": [ - "175" - ], - "temperature_vitrification": [ - "70" - ], - "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}" - ] -} + "type": "filament", + "name": "Generic PE @base", + "inherits": "fdm_filament_pe", + "from": "system", + "filament_id": "OFPklMI1", + "instantiation": "false", + "filament_cost": [ + "40.99" + ], + "filament_density": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_adhesiveness_category": [ + "901" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "220" + ], + "nozzle_temperature_range_low": [ + "175" + ], + "temperature_vitrification": [ + "70" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE-CF @BBL A1.json b/resources/profiles/BBL/filament/Generic PE-CF @BBL A1.json index 8fb197041f..50584fff90 100644 --- a/resources/profiles/BBL/filament/Generic PE-CF @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PE-CF @BBL A1.json @@ -1,14 +1,14 @@ { - "type": "filament", - "name": "Generic PE-CF @BBL A1", - "inherits": "Generic PE-CF @base", - "from": "system", - "setting_id": "GFSP98_01", - "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": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PE-CF @BBL A1", + "inherits": "Generic PE-CF @base", + "from": "system", + "setting_id": "GFSP98_01", + "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": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE-CF @BBL A1M.json b/resources/profiles/BBL/filament/Generic PE-CF @BBL A1M.json index f01619fe37..2e3b4b4bf4 100644 --- a/resources/profiles/BBL/filament/Generic PE-CF @BBL A1M.json +++ b/resources/profiles/BBL/filament/Generic PE-CF @BBL A1M.json @@ -1,14 +1,14 @@ { - "type": "filament", - "name": "Generic PE-CF @BBL A1M", - "inherits": "Generic PE-CF @base", - "from": "system", - "setting_id": "GFSP98_02", - "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": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PE-CF @BBL A1M", + "inherits": "Generic PE-CF @base", + "from": "system", + "setting_id": "GFSP98_02", + "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": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE-CF @BBL A2L.json b/resources/profiles/BBL/filament/Generic PE-CF @BBL A2L.json index 49e57d939f..163a86dbc6 100644 --- a/resources/profiles/BBL/filament/Generic PE-CF @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic PE-CF @BBL A2L.json @@ -1,20 +1,20 @@ { - "type": "filament", - "name": "Generic PE-CF @BBL A2L", - "inherits": "Generic PE-CF @base", - "from": "system", - "setting_id": "GFSP98_10", - "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.", - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PE-CF @BBL A2L", + "inherits": "Generic PE-CF @base", + "from": "system", + "setting_id": "GFSP98_10", + "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.", + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE-CF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PE-CF @BBL H2C 0.4 nozzle.json index 5e444e7926..76b9551c6d 100644 --- a/resources/profiles/BBL/filament/Generic PE-CF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PE-CF @BBL H2C 0.4 nozzle.json @@ -1,177 +1,94 @@ { - "type": "filament", - "name": "Generic PE-CF @BBL H2C 0.4 nozzle", - "inherits": "Generic PE-CF @base", - "from": "system", - "setting_id": "GFSP98_08", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "170", - "170" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "50" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PE-CF @BBL H2C 0.4 nozzle", + "inherits": "Generic PE-CF @base", + "from": "system", + "setting_id": "GFSP98_08", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "170", + "170", + "170" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE-CF @BBL H2C.json b/resources/profiles/BBL/filament/Generic PE-CF @BBL H2C.json index 47ec6b69cf..4d48c0d584 100644 --- a/resources/profiles/BBL/filament/Generic PE-CF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PE-CF @BBL H2C.json @@ -1,178 +1,95 @@ { - "type": "filament", - "name": "Generic PE-CF @BBL H2C", - "inherits": "Generic PE-CF @base", - "from": "system", - "setting_id": "GFSP98_09", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "170", - "170" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "50" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PE-CF @BBL H2C", + "inherits": "Generic PE-CF @base", + "from": "system", + "setting_id": "GFSP98_09", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "170", + "170", + "170" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE-CF @BBL H2D.json b/resources/profiles/BBL/filament/Generic PE-CF @BBL H2D.json index e9e7db6446..3af5c5c3d2 100644 --- a/resources/profiles/BBL/filament/Generic PE-CF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PE-CF @BBL H2D.json @@ -1,133 +1,63 @@ { - "type": "filament", - "name": "Generic PE-CF @BBL H2D", - "inherits": "Generic PE-CF @base", - "from": "system", - "setting_id": "GFSP98_03", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PE-CF @BBL H2D", + "inherits": "Generic PE-CF @base", + "from": "system", + "setting_id": "GFSP98_03", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE-CF @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PE-CF @BBL H2DP.json index e545f0fac7..455af49506 100644 --- a/resources/profiles/BBL/filament/Generic PE-CF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PE-CF @BBL H2DP.json @@ -1,133 +1,56 @@ { - "type": "filament", - "name": "Generic PE-CF @BBL H2DP", - "inherits": "Generic PE-CF @base", - "from": "system", - "setting_id": "GFSP98_05", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PE-CF @BBL H2DP", + "inherits": "Generic PE-CF @base", + "from": "system", + "setting_id": "GFSP98_05", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE-CF @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PE-CF @BBL H2S 0.4 nozzle.json index 01f3d21dc3..2e65986a1f 100644 --- a/resources/profiles/BBL/filament/Generic PE-CF @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PE-CF @BBL H2S 0.4 nozzle.json @@ -1,136 +1,76 @@ { - "type": "filament", - "name": "Generic PE-CF @BBL H2S 0.4 nozzle", - "inherits": "Generic PE-CF @base", - "from": "system", - "setting_id": "GFSP98_11", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "temperature_vitrification": [ - "50" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PE-CF @BBL H2S 0.4 nozzle", + "inherits": "Generic PE-CF @base", + "from": "system", + "setting_id": "GFSP98_11", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE-CF @BBL P2S.json b/resources/profiles/BBL/filament/Generic PE-CF @BBL P2S.json index b713f1a3ec..9b7a6166db 100644 --- a/resources/profiles/BBL/filament/Generic PE-CF @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PE-CF @BBL P2S.json @@ -1,173 +1,73 @@ { - "type": "filament", - "name": "Generic PE-CF @BBL P2S", - "inherits": "Generic PE-CF @base", - "from": "system", - "setting_id": "GFSP98_04", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PE-CF @BBL P2S", + "inherits": "Generic PE-CF @base", + "from": "system", + "setting_id": "GFSP98_04", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE-CF @BBL X1C.json b/resources/profiles/BBL/filament/Generic PE-CF @BBL X1C.json index 6413db2fdb..a8ba7158f4 100644 --- a/resources/profiles/BBL/filament/Generic PE-CF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Generic PE-CF @BBL X1C.json @@ -1,133 +1,60 @@ { - "type": "filament", - "name": "Generic PE-CF @BBL X1C", - "inherits": "Generic PE-CF @base", - "from": "system", - "setting_id": "GFSP98_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "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" - ] -} + "type": "filament", + "name": "Generic PE-CF @BBL X1C", + "inherits": "Generic PE-CF @base", + "from": "system", + "setting_id": "GFSP98_00", + "instantiation": "true", + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "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" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PE-CF @BBL X2D 0.4 nozzle.json index a4d7d0aa2a..92a476c117 100644 --- a/resources/profiles/BBL/filament/Generic PE-CF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PE-CF @BBL X2D 0.4 nozzle.json @@ -1,272 +1,93 @@ { - "type": "filament", - "name": "Generic PE-CF @BBL X2D 0.4 nozzle", - "inherits": "Generic PE-CF @base", - "from": "system", - "setting_id": "GFSP98_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "210" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "210", - "210", - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210", - "210", - "210" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PE-CF @BBL X2D 0.4 nozzle", + "inherits": "Generic PE-CF @base", + "from": "system", + "setting_id": "GFSP98_06", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE-CF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PE-CF @BBL X2D.json index 630ad14c1e..01a9694628 100644 --- a/resources/profiles/BBL/filament/Generic PE-CF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PE-CF @BBL X2D.json @@ -1,273 +1,94 @@ { - "type": "filament", - "name": "Generic PE-CF @BBL X2D", - "inherits": "Generic PE-CF @base", - "from": "system", - "setting_id": "GFSP98_07", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "210" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "210", - "210", - "210", - "210" - ], - "nozzle_temperature_initial_layer": [ - "210", - "210", - "210", - "210" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PE-CF @BBL X2D", + "inherits": "Generic PE-CF @base", + "from": "system", + "setting_id": "GFSP98_07", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "210" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "210", + "210", + "210", + "210", + "210", + "210" + ], + "nozzle_temperature_initial_layer": [ + "210", + "210", + "210", + "210", + "210", + "210" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PE-CF @base.json b/resources/profiles/BBL/filament/Generic PE-CF @base.json index 655a30e41e..d638297441 100644 --- a/resources/profiles/BBL/filament/Generic PE-CF @base.json +++ b/resources/profiles/BBL/filament/Generic PE-CF @base.json @@ -1,41 +1,41 @@ { - "type": "filament", - "name": "Generic PE-CF @base", - "inherits": "fdm_filament_pe", - "from": "system", - "filament_id": "OFd0Fv0k", - "instantiation": "false", - "filament_cost": [ - "65.99" - ], - "filament_density": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "6" - ], - "filament_type": [ - "PE-CF" - ], - "filament_adhesiveness_category": [ - "901" - ], - "nozzle_temperature": [ - "210" - ], - "nozzle_temperature_initial_layer": [ - "210" - ], - "nozzle_temperature_range_high": [ - "220" - ], - "nozzle_temperature_range_low": [ - "175" - ], - "temperature_vitrification": [ - "70" - ], - "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}" - ] -} + "type": "filament", + "name": "Generic PE-CF @base", + "inherits": "fdm_filament_pe", + "from": "system", + "filament_id": "OFd0Fv0k", + "instantiation": "false", + "filament_cost": [ + "65.99" + ], + "filament_density": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_type": [ + "PE-CF" + ], + "filament_adhesiveness_category": [ + "901" + ], + "nozzle_temperature": [ + "210" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature_range_high": [ + "220" + ], + "nozzle_temperature_range_low": [ + "175" + ], + "temperature_vitrification": [ + "70" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG @0.2 nozzle.json index d308ac9d7e..0c415d9844 100644 --- a/resources/profiles/BBL/filament/Generic PETG @0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG @0.2 nozzle.json @@ -1,17 +1,17 @@ { - "type": "filament", - "name": "Generic PETG @0.2 nozzle", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG @0.2 nozzle", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG @BBL A1 0.2 nozzle.json index 2e371d99f9..8be927cabe 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL A1 0.2 nozzle.json @@ -1,26 +1,26 @@ { - "type": "filament", - "name": "Generic PETG @BBL A1 0.2 nozzle", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_04", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1" - ], - "hot_plate_temp": [ - "80" - ], - "hot_plate_temp_initial_layer": [ - "80" - ], - "textured_plate_temp": [ - "80" - ], - "textured_plate_temp_initial_layer": [ - "80" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG @BBL A1 0.2 nozzle", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_04", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL A1.json b/resources/profiles/BBL/filament/Generic PETG @BBL A1.json index 00a50550fe..ef9cc612fb 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL A1.json @@ -1,28 +1,28 @@ { - "type": "filament", - "name": "Generic PETG @BBL A1", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_03", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "8" - ], - "hot_plate_temp": [ - "80" - ], - "hot_plate_temp_initial_layer": [ - "80" - ], - "textured_plate_temp": [ - "80" - ], - "textured_plate_temp_initial_layer": [ - "80" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG @BBL A1", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_03", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "8" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG @BBL A1M 0.2 nozzle.json index 462dfb4049..7abc1a0652 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL A1M 0.2 nozzle.json @@ -1,14 +1,14 @@ { - "type": "filament", - "name": "Generic PETG @BBL A1M 0.2 nozzle", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_02", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG @BBL A1M 0.2 nozzle", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_02", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL A1M.json b/resources/profiles/BBL/filament/Generic PETG @BBL A1M.json index 5c31f2eacb..83ce33ee7b 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL A1M.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL A1M.json @@ -1,16 +1,16 @@ { - "type": "filament", - "name": "Generic PETG @BBL A1M", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG @BBL A1M", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG @BBL A2L 0.2 nozzle.json index bfce104d88..84808dd0d7 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL A2L 0.2 nozzle.json @@ -1,26 +1,26 @@ { - "type": "filament", - "name": "Generic PETG @BBL A2L 0.2 nozzle", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_21", - "instantiation": "true", - "filament_flush_temp_fast": [ - "255" - ], - "filament_max_volumetric_speed": [ - "1" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PETG @BBL A2L 0.2 nozzle", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_21", + "instantiation": "true", + "filament_flush_temp_fast": [ + "255" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL A2L.json b/resources/profiles/BBL/filament/Generic PETG @BBL A2L.json index 62f2c876b5..64d95945d1 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL A2L.json @@ -1,25 +1,25 @@ { - "type": "filament", - "name": "Generic PETG @BBL A2L", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_22", - "instantiation": "true", - "filament_flush_temp_fast": [ - "255" - ], - "filament_max_volumetric_speed": [ - "8" - ], - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PETG @BBL A2L", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_22", + "instantiation": "true", + "filament_flush_temp_fast": [ + "255" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG @BBL H2C 0.2 nozzle.json index e252904409..fb92858690 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL H2C 0.2 nozzle.json @@ -1,174 +1,81 @@ { - "type": "filament", - "name": "Generic PETG @BBL H2C 0.2 nozzle", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_20", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "215", - "215" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG @BBL H2C 0.2 nozzle", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_20", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "215", + "215" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "temperature_vitrification": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PETG @BBL H2C 0.4 nozzle.json index 2d726beb14..45204a656a 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL H2C 0.4 nozzle.json @@ -1,174 +1,116 @@ { - "type": "filament", - "name": "Generic PETG @BBL H2C 0.4 nozzle", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_18", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "215", - "215" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG @BBL H2C 0.4 nozzle", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_18", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "215", + "215", + "215" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL H2C.json b/resources/profiles/BBL/filament/Generic PETG @BBL H2C.json index e853d20f76..e73b442d97 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL H2C.json @@ -1,175 +1,117 @@ { - "type": "filament", - "name": "Generic PETG @BBL H2C", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_19", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "215", - "215" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG @BBL H2C", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_19", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "215", + "215", + "215" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG @BBL H2D 0.2 nozzle.json index f52322b556..f15490d650 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL H2D 0.2 nozzle.json @@ -1,125 +1,44 @@ { - "type": "filament", - "name": "Generic PETG @BBL H2D 0.2 nozzle", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_06", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG @BBL H2D 0.2 nozzle", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_06", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL H2D.json b/resources/profiles/BBL/filament/Generic PETG @BBL H2D.json index f71227f3f4..f69e5c6ad3 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL H2D.json @@ -1,127 +1,52 @@ { - "type": "filament", - "name": "Generic PETG @BBL H2D", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_05", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG @BBL H2D", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_05", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG @BBL H2DP 0.2 nozzle.json index 3b4d4fda65..9b3db34823 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL H2DP 0.2 nozzle.json @@ -1,125 +1,44 @@ { - "type": "filament", - "name": "Generic PETG @BBL H2DP 0.2 nozzle", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_14", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG @BBL H2DP 0.2 nozzle", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_14", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PETG @BBL H2DP.json index e4b22419c3..6cbef8f4ce 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL H2DP.json @@ -1,127 +1,46 @@ { - "type": "filament", - "name": "Generic PETG @BBL H2DP", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_13", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG @BBL H2DP", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_13", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG @BBL H2S 0.2 nozzle.json index 79ef05bdd0..94c8446116 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL H2S 0.2 nozzle.json @@ -1,125 +1,56 @@ { - "type": "filament", - "name": "Generic PETG @BBL H2S 0.2 nozzle", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_08", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG @BBL H2S 0.2 nozzle", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_08", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL H2S.json b/resources/profiles/BBL/filament/Generic PETG @BBL H2S.json index a761a4afb3..154c1094d8 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL H2S.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL H2S.json @@ -1,127 +1,82 @@ { - "type": "filament", - "name": "Generic PETG @BBL H2S", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_07", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG @BBL H2S", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_07", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG @BBL P2S 0.2 nozzle.json index 033a2aaf0d..ca225ca3ac 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL P2S 0.2 nozzle.json @@ -1,165 +1,56 @@ { - "type": "filament", - "name": "Generic PETG @BBL P2S 0.2 nozzle", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_12", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PETG @BBL P2S 0.2 nozzle", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_12", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL P2S.json b/resources/profiles/BBL/filament/Generic PETG @BBL P2S.json index d676dda67a..f3138a608d 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL P2S.json @@ -1,167 +1,62 @@ { - "type": "filament", - "name": "Generic PETG @BBL P2S", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_09", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PETG @BBL P2S", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_09", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG @BBL X2D 0.2 nozzle.json index 952532b483..82240ccef4 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL X2D 0.2 nozzle.json @@ -1,266 +1,77 @@ { - "type": "filament", - "name": "Generic PETG @BBL X2D 0.2 nozzle", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_17", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "255" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "255", - "255", - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255", - "255", - "255" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PETG @BBL X2D 0.2 nozzle", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_17", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PETG @BBL X2D 0.4 nozzle.json index 44ea0d462b..82f9a99de7 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL X2D 0.4 nozzle.json @@ -1,266 +1,87 @@ { - "type": "filament", - "name": "Generic PETG @BBL X2D 0.4 nozzle", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_15", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "255" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "255", - "255", - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255", - "255", - "255" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PETG @BBL X2D 0.4 nozzle", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_15", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255", + "255", + "255" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @BBL X2D.json b/resources/profiles/BBL/filament/Generic PETG @BBL X2D.json index 0ffb3c2ec0..a304ef6972 100644 --- a/resources/profiles/BBL/filament/Generic PETG @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PETG @BBL X2D.json @@ -1,267 +1,88 @@ { - "type": "filament", - "name": "Generic PETG @BBL X2D", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_16", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "255" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "255", - "255", - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255", - "255", - "255" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PETG @BBL X2D", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_16", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255", + "255", + "255" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG @base.json b/resources/profiles/BBL/filament/Generic PETG @base.json index 9fce0893ce..8d7b2da4fa 100644 --- a/resources/profiles/BBL/filament/Generic PETG @base.json +++ b/resources/profiles/BBL/filament/Generic PETG @base.json @@ -1,65 +1,65 @@ { - "type": "filament", - "name": "Generic PETG @base", - "inherits": "fdm_filament_pet", - "from": "system", - "filament_id": "OFYPdQJh", - "instantiation": "false", - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "90" - ], - "fan_min_speed": [ - "40" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "12" - ], - "hot_plate_temp": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "overhang_fan_speed": [ - "90" - ], - "overhang_fan_threshold": [ - "10%" - ], - "slow_down_layer_time": [ - "12" - ], - "slow_down_min_speed": [ - "20" - ], - "textured_plate_temp": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], - "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}" - ] -} + "type": "filament", + "name": "Generic PETG @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "OFYPdQJh", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL A1 0.2 nozzle.json index 3dcc9b8fb4..099dfcc30a 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL A1 0.2 nozzle.json @@ -1,14 +1,14 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL A1 0.2 nozzle", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_05", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL A1 0.2 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_05", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL A1.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL A1.json index 14bfa688a6..5f7c2112c0 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL A1.json @@ -1,16 +1,16 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL A1", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_04", - "instantiation": "true", - "filament_retraction_length": [ - "0.4" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL A1", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_04", + "instantiation": "true", + "filament_retraction_length": [ + "0.4" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL A1M 0.2 nozzle.json index 84972c2cd7..0b499781ae 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL A1M 0.2 nozzle.json @@ -1,11 +1,11 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL A1M 0.2 nozzle", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_07", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL A1M 0.2 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_07", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL A1M.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL A1M.json index 26a86d9d36..233d6f0d96 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL A1M.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL A1M.json @@ -1,16 +1,16 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL A1M", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_06", - "instantiation": "true", - "filament_retraction_length": [ - "0.4" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL A1M", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_06", + "instantiation": "true", + "filament_retraction_length": [ + "0.4" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL A2L 0.2 nozzle.json index 2599094d1e..10770bd12e 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL A2L 0.2 nozzle.json @@ -1,23 +1,23 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL A2L 0.2 nozzle", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_20", - "instantiation": "true", - "filament_flush_temp_fast": [ - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL A2L 0.2 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_20", + "instantiation": "true", + "filament_flush_temp_fast": [ + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL A2L.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL A2L.json index 6c1582d465..dcaedaf69c 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL A2L.json @@ -1,25 +1,25 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL A2L", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_21", - "instantiation": "true", - "filament_flush_temp_fast": [ - "220" - ], - "filament_retraction_length": [ - "0.4" - ], - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL A2L", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_21", + "instantiation": "true", + "filament_flush_temp_fast": [ + "220" + ], + "filament_retraction_length": [ + "0.4" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2C 0.2 nozzle.json index d4b72d6747..bd018277f2 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2C 0.2 nozzle.json @@ -1,174 +1,77 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL H2C 0.2 nozzle", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_19", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "205", - "205" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "pre_start_fan_time": [ - "2" - ], - "temperature_vitrification": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL H2C 0.2 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_19", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "205", + "205" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "pre_start_fan_time": [ + "2" + ], + "temperature_vitrification": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2C 0.4 nozzle.json index 450f208606..62636d5e82 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2C 0.4 nozzle.json @@ -1,174 +1,111 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL H2C 0.4 nozzle", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_17", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "temperature_vitrification": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL H2C 0.4 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_17", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "temperature_vitrification": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2C.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2C.json index e603865aff..da1017048e 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2C.json @@ -1,175 +1,112 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL H2C", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_18", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.97", - "0.97" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "temperature_vitrification": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL H2C", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_18", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.97", + "0.97", + "0.97" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "temperature_vitrification": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2D 0.2 nozzle.json index 1cea9673b0..600d96f045 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2D 0.2 nozzle.json @@ -1,125 +1,40 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL H2D 0.2 nozzle", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_09", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL H2D 0.2 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_09", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2D.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2D.json index be2f636abe..2818415ba3 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2D.json @@ -1,127 +1,52 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL H2D", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_08", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL H2D", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_08", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2DP 0.2 nozzle.json index 24db4dfdcb..fd48dad992 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2DP 0.2 nozzle.json @@ -1,125 +1,40 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL H2DP 0.2 nozzle", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_13", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL H2DP 0.2 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_13", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2DP.json index 60f9c5b472..00943fdd36 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2DP.json @@ -1,127 +1,46 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL H2DP", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_12", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL H2DP", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_12", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2S 0.2 nozzle.json index e3da519133..30bf4eb540 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2S 0.2 nozzle.json @@ -1,119 +1,46 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL H2S 0.2 nozzle", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_23", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL H2S 0.2 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_23", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2S 0.4 nozzle.json index ef0e4c2484..510a7cf7f0 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL H2S 0.4 nozzle.json @@ -1,121 +1,71 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL H2S 0.4 nozzle", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_22", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL H2S 0.4 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_22", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL P1P 0.2 nozzle.json index 4c4f4a6473..f1c4f5ed06 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL P1P 0.2 nozzle.json @@ -1,119 +1,38 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL P1P 0.2 nozzle", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_03", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL P1P 0.2 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_03", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL P1P.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL P1P.json index 8c6ad70b29..77b10307b9 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL P1P.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL P1P.json @@ -1,121 +1,44 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL P1P", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_02", - "instantiation": "true", - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL P1P", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_02", + "instantiation": "true", + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL P1S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL P1S 0.4 nozzle.json new file mode 100644 index 0000000000..1b95667681 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL P1S 0.4 nozzle.json @@ -0,0 +1,42 @@ +{ + "type": "filament", + "name": "Generic PETG HF @BBL P1S 0.4 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_26", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL P1S 0.6 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL P1S 0.6 nozzle.json new file mode 100644 index 0000000000..e001db1b67 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL P1S 0.6 nozzle.json @@ -0,0 +1,42 @@ +{ + "type": "filament", + "name": "Generic PETG HF @BBL P1S 0.6 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_25", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL P2S 0.2 nozzle.json index 7b4ee0feb9..e2bc00bfb5 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL P2S 0.2 nozzle.json @@ -1,165 +1,52 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL P2S 0.2 nozzle", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_11", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL P2S 0.2 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_11", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL P2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL P2S 0.4 nozzle.json index ae267ccb31..8dcec1db76 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL P2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL P2S 0.4 nozzle.json @@ -1,165 +1,66 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL P2S 0.4 nozzle", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_24", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "240", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL P2S 0.4 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_24", + "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.", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flush_temp": [ + "240", + "0", + "240" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL P2S.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL P2S.json index 7e2184289b..cbe50861cd 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL P2S.json @@ -1,166 +1,61 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL P2S", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_10", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL P2S", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_10", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL X1 0.6 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL X1 0.6 nozzle.json new file mode 100644 index 0000000000..b91dcf6873 --- /dev/null +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL X1 0.6 nozzle.json @@ -0,0 +1,44 @@ +{ + "type": "filament", + "name": "Generic PETG HF @BBL X1 0.6 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_27", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL X1C 0.2 nozzle.json index d15b26a5ec..afb1f036d1 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL X1C 0.2 nozzle.json @@ -1,122 +1,41 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL X1C 0.2 nozzle", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL X1C 0.2 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL X1C.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL X1C.json index 1232d758ef..c667488f82 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL X1C.json @@ -1,130 +1,48 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL X1C", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_00", - "instantiation": "true", - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "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 X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.4 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL X1C", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_00", + "instantiation": "true", + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "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 P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D 0.2 nozzle.json index fab213e03d..0131943783 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D 0.2 nozzle.json @@ -1,266 +1,71 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL X2D 0.2 nozzle", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_16", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL X2D 0.2 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_16", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D 0.4 nozzle.json index 0aa0826fcd..d4cfdc9fc9 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D 0.4 nozzle.json @@ -1,266 +1,87 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL X2D 0.4 nozzle", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_14", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "16", - "16", - "16", - "16" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL X2D 0.4 nozzle", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_14", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4", + "0.4", + "0.4" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D.json index 0e9381abae..3ff655ec13 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @BBL X2D.json @@ -1,267 +1,88 @@ { - "type": "filament", - "name": "Generic PETG HF @BBL X2D", - "inherits": "Generic PETG HF @base", - "from": "system", - "setting_id": "GFSG96_15", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "16", - "16", - "16", - "16" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PETG HF @BBL X2D", + "inherits": "Generic PETG HF @base", + "from": "system", + "setting_id": "GFSG96_15", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4", + "0.4", + "0.4" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG HF @base.json b/resources/profiles/BBL/filament/Generic PETG HF @base.json index c756285013..1212ab9f41 100644 --- a/resources/profiles/BBL/filament/Generic PETG HF @base.json +++ b/resources/profiles/BBL/filament/Generic PETG HF @base.json @@ -1,71 +1,71 @@ { - "type": "filament", - "name": "Generic PETG HF @base", - "inherits": "fdm_filament_pet", - "from": "system", - "filament_id": "OF7lOgYF", - "instantiation": "false", - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.28" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "hot_plate_temp": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "overhang_fan_speed": [ - "90" - ], - "overhang_fan_threshold": [ - "10%" - ], - "slow_down_layer_time": [ - "25" - ], - "textured_plate_temp": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], - "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}" - ] -} + "type": "filament", + "name": "Generic PETG HF @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "OF7lOgYF", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "filament_cost": [ + "24.99" + ], + "filament_density": [ + "1.28" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "25" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG-CF @BBL A1.json b/resources/profiles/BBL/filament/Generic PETG-CF @BBL A1.json index d15b2594ca..ce31f210d3 100644 --- a/resources/profiles/BBL/filament/Generic PETG-CF @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PETG-CF @BBL A1.json @@ -1,28 +1,28 @@ { - "type": "filament", - "name": "Generic PETG-CF @BBL A1", - "inherits": "Generic PETG-CF @base", - "from": "system", - "setting_id": "GFSG98_01", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_max_volumetric_speed": [ - "8" - ], - "overhang_fan_speed": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG-CF @BBL A1", + "inherits": "Generic PETG-CF @base", + "from": "system", + "setting_id": "GFSG98_01", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "overhang_fan_speed": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG-CF @BBL A2L.json b/resources/profiles/BBL/filament/Generic PETG-CF @BBL A2L.json index 3936c4b090..3ea13e1da8 100644 --- a/resources/profiles/BBL/filament/Generic PETG-CF @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic PETG-CF @BBL A2L.json @@ -1,25 +1,25 @@ { - "type": "filament", - "name": "Generic PETG-CF @BBL A2L", - "inherits": "Generic PETG-CF @base", - "from": "system", - "setting_id": "GFSG98_11", - "instantiation": "true", - "filament_flush_temp_fast": [ - "255" - ], - "filament_max_volumetric_speed": [ - "8" - ], - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PETG-CF @BBL A2L", + "inherits": "Generic PETG-CF @base", + "from": "system", + "setting_id": "GFSG98_11", + "instantiation": "true", + "filament_flush_temp_fast": [ + "255" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2C 0.4 nozzle.json index 50e41672f4..e2dc6c43da 100644 --- a/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2C 0.4 nozzle.json @@ -1,183 +1,90 @@ { - "type": "filament", - "name": "Generic PETG-CF @BBL H2C 0.4 nozzle", - "inherits": "Generic PETG-CF @base", - "from": "system", - "setting_id": "GFSG98_08", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "215", - "215" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "temperature_vitrification": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG-CF @BBL H2C 0.4 nozzle", + "inherits": "Generic PETG-CF @base", + "from": "system", + "setting_id": "GFSG98_08", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "215", + "215", + "215" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2C.json b/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2C.json index 26119cd309..fffb6a6e49 100644 --- a/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2C.json @@ -1,184 +1,91 @@ { - "type": "filament", - "name": "Generic PETG-CF @BBL H2C", - "inherits": "Generic PETG-CF @base", - "from": "system", - "setting_id": "GFSG98_09", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "215", - "215" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "temperature_vitrification": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG-CF @BBL H2C", + "inherits": "Generic PETG-CF @base", + "from": "system", + "setting_id": "GFSG98_09", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "215", + "215", + "215" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "temperature_vitrification": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2D.json b/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2D.json index 293180b9cd..063d30a279 100644 --- a/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2D.json @@ -1,139 +1,59 @@ { - "type": "filament", - "name": "Generic PETG-CF @BBL H2D", - "inherits": "Generic PETG-CF @base", - "from": "system", - "setting_id": "GFSG98_02", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG-CF @BBL H2D", + "inherits": "Generic PETG-CF @base", + "from": "system", + "setting_id": "GFSG98_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2DP.json index 2d551d5f46..d0e4ff8752 100644 --- a/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2DP.json @@ -1,139 +1,54 @@ { - "type": "filament", - "name": "Generic PETG-CF @BBL H2DP", - "inherits": "Generic PETG-CF @base", - "from": "system", - "setting_id": "GFSG98_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG-CF @BBL H2DP", + "inherits": "Generic PETG-CF @base", + "from": "system", + "setting_id": "GFSG98_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2S.json b/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2S.json index f5c0d4fdff..585f656ab1 100644 --- a/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2S.json +++ b/resources/profiles/BBL/filament/Generic PETG-CF @BBL H2S.json @@ -1,139 +1,74 @@ { - "type": "filament", - "name": "Generic PETG-CF @BBL H2S", - "inherits": "Generic PETG-CF @base", - "from": "system", - "setting_id": "GFSG98_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "0" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PETG-CF @BBL H2S", + "inherits": "Generic PETG-CF @base", + "from": "system", + "setting_id": "GFSG98_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_long_retractions_when_cut": [ + "nil", + "0", + "nil" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG-CF @BBL P2S.json b/resources/profiles/BBL/filament/Generic PETG-CF @BBL P2S.json index 077f1e0c8c..e1944cca5d 100644 --- a/resources/profiles/BBL/filament/Generic PETG-CF @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PETG-CF @BBL P2S.json @@ -1,179 +1,69 @@ { - "type": "filament", - "name": "Generic PETG-CF @BBL P2S", - "inherits": "Generic PETG-CF @base", - "from": "system", - "setting_id": "GFSG98_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PETG-CF @BBL P2S", + "inherits": "Generic PETG-CF @base", + "from": "system", + "setting_id": "GFSG98_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG-CF @BBL X1C.json b/resources/profiles/BBL/filament/Generic PETG-CF @BBL X1C.json index 3fca9e53f9..46dda5c26d 100644 --- a/resources/profiles/BBL/filament/Generic PETG-CF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Generic PETG-CF @BBL X1C.json @@ -1,142 +1,61 @@ { - "type": "filament", - "name": "Generic PETG-CF @BBL X1C", - "inherits": "Generic PETG-CF @base", - "from": "system", - "setting_id": "GFSG50", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG-CF @BBL X1C", + "inherits": "Generic PETG-CF @base", + "from": "system", + "setting_id": "GFSG50", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PETG-CF @BBL X2D 0.4 nozzle.json index 8d09db5733..73db99b2ce 100644 --- a/resources/profiles/BBL/filament/Generic PETG-CF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PETG-CF @BBL X2D 0.4 nozzle.json @@ -1,278 +1,91 @@ { - "type": "filament", - "name": "Generic PETG-CF @BBL X2D 0.4 nozzle", - "inherits": "Generic PETG-CF @base", - "from": "system", - "setting_id": "GFSG98_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5", - "11.5", - "11.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "255" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "255", - "255", - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255", - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PETG-CF @BBL X2D 0.4 nozzle", + "inherits": "Generic PETG-CF @base", + "from": "system", + "setting_id": "GFSG98_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5", + "11.5", + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG-CF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PETG-CF @BBL X2D.json index 63ecfe6fa5..2309a91389 100644 --- a/resources/profiles/BBL/filament/Generic PETG-CF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PETG-CF @BBL X2D.json @@ -1,279 +1,92 @@ { - "type": "filament", - "name": "Generic PETG-CF @BBL X2D", - "inherits": "Generic PETG-CF @base", - "from": "system", - "setting_id": "GFSG98_07", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5", - "11.5", - "11.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "255" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "255", - "255", - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255", - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PETG-CF @BBL X2D", + "inherits": "Generic PETG-CF @base", + "from": "system", + "setting_id": "GFSG98_07", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5", + "11.5", + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "255" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "255", + "255", + "255", + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255", + "255", + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG-CF @base.json b/resources/profiles/BBL/filament/Generic PETG-CF @base.json index 4f2f6ed3f9..0cf0faa3c9 100644 --- a/resources/profiles/BBL/filament/Generic PETG-CF @base.json +++ b/resources/profiles/BBL/filament/Generic PETG-CF @base.json @@ -1,74 +1,74 @@ { - "type": "filament", - "name": "Generic PETG-CF @base", - "inherits": "fdm_filament_pet", - "from": "system", - "filament_id": "OFoYSJKi", - "instantiation": "false", - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "0" - ], - "filament_cost": [ - "34.99" - ], - "filament_density": [ - "1.25" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "12" - ], - "filament_type": [ - "PETG-CF" - ], - "hot_plate_temp": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "nozzle_temperature_range_low": [ - "240" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "overhang_fan_speed": [ - "90" - ], - "overhang_fan_threshold": [ - "10%" - ], - "required_nozzle_HRC": [ - "40" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], - "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}" - ] -} + "type": "filament", + "name": "Generic PETG-CF @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "OFoYSJKi", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "34.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_type": [ + "PETG-CF" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PETG.json b/resources/profiles/BBL/filament/Generic PETG.json index 3f04b02a3f..4052484a56 100644 --- a/resources/profiles/BBL/filament/Generic PETG.json +++ b/resources/profiles/BBL/filament/Generic PETG.json @@ -1,22 +1,22 @@ { - "type": "filament", - "name": "Generic PETG", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PHA @BBL A1.json b/resources/profiles/BBL/filament/Generic PHA @BBL A1.json index 41cd622c87..32f3fd84a9 100644 --- a/resources/profiles/BBL/filament/Generic PHA @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PHA @BBL A1.json @@ -1,14 +1,14 @@ { - "type": "filament", - "name": "Generic PHA @BBL A1", - "inherits": "Generic PHA @base", - "from": "system", - "setting_id": "GFSR98_02", - "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": [ - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "filament", + "name": "Generic PHA @BBL A1", + "inherits": "Generic PHA @base", + "from": "system", + "setting_id": "GFSR98_02", + "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": [ + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PHA @BBL A1M.json b/resources/profiles/BBL/filament/Generic PHA @BBL A1M.json index 881d4cd47b..a3c6158000 100644 --- a/resources/profiles/BBL/filament/Generic PHA @BBL A1M.json +++ b/resources/profiles/BBL/filament/Generic PHA @BBL A1M.json @@ -1,14 +1,14 @@ { - "type": "filament", - "name": "Generic PHA @BBL A1M", - "inherits": "Generic PHA @base", - "from": "system", - "setting_id": "GFSR98_01", - "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": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PHA @BBL A1M", + "inherits": "Generic PHA @base", + "from": "system", + "setting_id": "GFSR98_01", + "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": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PHA @BBL A2L.json b/resources/profiles/BBL/filament/Generic PHA @BBL A2L.json index 6fa1b48bde..55c1640f2a 100644 --- a/resources/profiles/BBL/filament/Generic PHA @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic PHA @BBL A2L.json @@ -1,20 +1,20 @@ { - "type": "filament", - "name": "Generic PHA @BBL A2L", - "inherits": "Generic PHA @base", - "from": "system", - "setting_id": "GFSR98_10", - "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.", - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle", - "Bambu Lab A2L 0.4 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PHA @BBL A2L", + "inherits": "Generic PHA @base", + "from": "system", + "setting_id": "GFSR98_10", + "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.", + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle", + "Bambu Lab A2L 0.4 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PHA @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PHA @BBL H2C 0.4 nozzle.json index f2217f38f2..df3bf156db 100644 --- a/resources/profiles/BBL/filament/Generic PHA @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PHA @BBL H2C 0.4 nozzle.json @@ -1,178 +1,95 @@ { - "type": "filament", - "name": "Generic PHA @BBL H2C 0.4 nozzle", - "inherits": "Generic PHA @base", - "from": "system", - "setting_id": "GFSR98_08", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "45" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PHA @BBL H2C 0.4 nozzle", + "inherits": "Generic PHA @base", + "from": "system", + "setting_id": "GFSR98_08", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "45" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PHA @BBL H2C.json b/resources/profiles/BBL/filament/Generic PHA @BBL H2C.json index ba9d4b46ce..1bcacd3c03 100644 --- a/resources/profiles/BBL/filament/Generic PHA @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PHA @BBL H2C.json @@ -1,179 +1,96 @@ { - "type": "filament", - "name": "Generic PHA @BBL H2C", - "inherits": "Generic PHA @base", - "from": "system", - "setting_id": "GFSR98_09", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "45" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PHA @BBL H2C", + "inherits": "Generic PHA @base", + "from": "system", + "setting_id": "GFSR98_09", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "45" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PHA @BBL H2D.json b/resources/profiles/BBL/filament/Generic PHA @BBL H2D.json index af8836c575..43fd6c61be 100644 --- a/resources/profiles/BBL/filament/Generic PHA @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PHA @BBL H2D.json @@ -1,134 +1,64 @@ { - "type": "filament", - "name": "Generic PHA @BBL H2D", - "inherits": "Generic PHA @base", - "from": "system", - "setting_id": "GFSR98_03", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PHA @BBL H2D", + "inherits": "Generic PHA @base", + "from": "system", + "setting_id": "GFSR98_03", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PHA @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PHA @BBL H2DP.json index 21574e4ee1..373ff783a0 100644 --- a/resources/profiles/BBL/filament/Generic PHA @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PHA @BBL H2DP.json @@ -1,134 +1,57 @@ { - "type": "filament", - "name": "Generic PHA @BBL H2DP", - "inherits": "Generic PHA @base", - "from": "system", - "setting_id": "GFSR98_05", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PHA @BBL H2DP", + "inherits": "Generic PHA @base", + "from": "system", + "setting_id": "GFSR98_05", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PHA @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PHA @BBL H2S 0.4 nozzle.json index b9ab3740c2..3e46256165 100644 --- a/resources/profiles/BBL/filament/Generic PHA @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PHA @BBL H2S 0.4 nozzle.json @@ -1,137 +1,77 @@ { - "type": "filament", - "name": "Generic PHA @BBL H2S 0.4 nozzle", - "inherits": "Generic PHA @base", - "from": "system", - "setting_id": "GFSR98_11", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "temperature_vitrification": [ - "45" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PHA @BBL H2S 0.4 nozzle", + "inherits": "Generic PHA @base", + "from": "system", + "setting_id": "GFSR98_11", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "45" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PHA @BBL P2S.json b/resources/profiles/BBL/filament/Generic PHA @BBL P2S.json index 9b156885d0..8d85a309e6 100644 --- a/resources/profiles/BBL/filament/Generic PHA @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PHA @BBL P2S.json @@ -1,174 +1,74 @@ { - "type": "filament", - "name": "Generic PHA @BBL P2S", - "inherits": "Generic PHA @base", - "from": "system", - "setting_id": "GFSR98_04", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PHA @BBL P2S", + "inherits": "Generic PHA @base", + "from": "system", + "setting_id": "GFSR98_04", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PHA @BBL X1C.json b/resources/profiles/BBL/filament/Generic PHA @BBL X1C.json index e5cb995ec6..2a7fd6891d 100644 --- a/resources/profiles/BBL/filament/Generic PHA @BBL X1C.json +++ b/resources/profiles/BBL/filament/Generic PHA @BBL X1C.json @@ -1,134 +1,61 @@ { - "type": "filament", - "name": "Generic PHA @BBL X1C", - "inherits": "Generic PHA @base", - "from": "system", - "setting_id": "GFSR98_00", - "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_max_volumetric_speed": [ - "6", - "6" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "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 X1 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle", - "Bambu Lab P1P 0.4 nozzle" - ] -} + "type": "filament", + "name": "Generic PHA @BBL X1C", + "inherits": "Generic PHA @base", + "from": "system", + "setting_id": "GFSR98_00", + "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_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "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 X1 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PHA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PHA @BBL X2D 0.4 nozzle.json index d385da7295..aee19ed325 100644 --- a/resources/profiles/BBL/filament/Generic PHA @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PHA @BBL X2D 0.4 nozzle.json @@ -1,273 +1,94 @@ { - "type": "filament", - "name": "Generic PHA @BBL X2D 0.4 nozzle", - "inherits": "Generic PHA @base", - "from": "system", - "setting_id": "GFSR98_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PHA @BBL X2D 0.4 nozzle", + "inherits": "Generic PHA @base", + "from": "system", + "setting_id": "GFSR98_06", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PHA @BBL X2D.json b/resources/profiles/BBL/filament/Generic PHA @BBL X2D.json index e46a4dde77..a9a9b06986 100644 --- a/resources/profiles/BBL/filament/Generic PHA @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PHA @BBL X2D.json @@ -1,274 +1,95 @@ { - "type": "filament", - "name": "Generic PHA @BBL X2D", - "inherits": "Generic PHA @base", - "from": "system", - "setting_id": "GFSR98_07", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PHA @BBL X2D", + "inherits": "Generic PHA @base", + "from": "system", + "setting_id": "GFSR98_07", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PHA @base.json b/resources/profiles/BBL/filament/Generic PHA @base.json index fe2373ff7c..c78cbd9a6e 100644 --- a/resources/profiles/BBL/filament/Generic PHA @base.json +++ b/resources/profiles/BBL/filament/Generic PHA @base.json @@ -1,8 +1,8 @@ { - "type": "filament", - "name": "Generic PHA @base", - "inherits": "fdm_filament_pha", - "from": "system", - "filament_id": "OF74KeQR", - "instantiation": "false" -} + "type": "filament", + "name": "Generic PHA @base", + "inherits": "fdm_filament_pha", + "from": "system", + "filament_id": "OF74KeQR", + "instantiation": "false" +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA @0.2 nozzle.json index aa26520b18..deefbc71d4 100644 --- a/resources/profiles/BBL/filament/Generic PLA @0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA @0.2 nozzle.json @@ -1,23 +1,23 @@ { - "type": "filament", - "name": "Generic PLA @0.2 nozzle", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1.6" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ], - "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_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "type": "filament", + "name": "Generic PLA @0.2 nozzle", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1.6" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ], + "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_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA @BBL A1 0.2 nozzle.json index 150e05abb7..b8a5916bc3 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL A1 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "Generic PLA @BBL A1 0.2 nozzle", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "1.6" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Generic PLA @BBL A1 0.2 nozzle", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1.6" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL A1.json b/resources/profiles/BBL/filament/Generic PLA @BBL A1.json index a921481845..864344b169 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL A1.json @@ -1,34 +1,34 @@ { - "type": "filament", - "name": "Generic PLA @BBL A1", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PLA @BBL A1", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA @BBL A1M 0.2 nozzle.json index 30a5984880..5d3c65d906 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL A1M 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "Generic PLA @BBL A1M 0.2 nozzle", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "1.6" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Generic PLA @BBL A1M 0.2 nozzle", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1.6" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL A1M.json b/resources/profiles/BBL/filament/Generic PLA @BBL A1M.json index 7592e4d054..783863506c 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL A1M.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL A1M.json @@ -1,34 +1,34 @@ { - "type": "filament", - "name": "Generic PLA @BBL A1M", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_02", - "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" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PLA @BBL A1M", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_02", + "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" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA @BBL A2L 0.2 nozzle.json index f5207ee1d0..a39086e72a 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL A2L 0.2 nozzle.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "Generic PLA @BBL A2L 0.2 nozzle", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_23", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "1.6" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PLA @BBL A2L 0.2 nozzle", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_23", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "1.6" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL A2L.json b/resources/profiles/BBL/filament/Generic PLA @BBL A2L.json index d5c951a78f..30427dea0c 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL A2L.json @@ -1,40 +1,40 @@ { - "type": "filament", - "name": "Generic PLA @BBL A2L", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_24", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PLA @BBL A2L", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_24", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA @BBL H2C 0.2 nozzle.json index 02dd3a5f48..634dc781c4 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL H2C 0.2 nozzle.json @@ -1,180 +1,91 @@ { - "type": "filament", - "name": "Generic PLA @BBL H2C 0.2 nozzle", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_22", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA @BBL H2C 0.2 nozzle", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_22", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PLA @BBL H2C 0.4 nozzle.json index 468699489e..9489ef729a 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL H2C 0.4 nozzle.json @@ -1,180 +1,122 @@ { - "type": "filament", - "name": "Generic PLA @BBL H2C 0.4 nozzle", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_20", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA @BBL H2C 0.4 nozzle", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_20", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL H2C.json b/resources/profiles/BBL/filament/Generic PLA @BBL H2C.json index 5e0433e39a..334c18e36c 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL H2C.json @@ -1,181 +1,123 @@ { - "type": "filament", - "name": "Generic PLA @BBL H2C", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_21", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA @BBL H2C", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_21", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA @BBL H2D 0.2 nozzle.json index 23d0426d92..1b21eb75be 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL H2D 0.2 nozzle.json @@ -1,131 +1,54 @@ { - "type": "filament", - "name": "Generic PLA @BBL H2D 0.2 nozzle", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_07", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA @BBL H2D 0.2 nozzle", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_07", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL H2D.json b/resources/profiles/BBL/filament/Generic PLA @BBL H2D.json index 02ae1c7228..92d1d6d5c7 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL H2D.json @@ -1,133 +1,63 @@ { - "type": "filament", - "name": "Generic PLA @BBL H2D", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_06", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA @BBL H2D", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_06", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA @BBL H2DP 0.2 nozzle.json index 7b9e9d498b..7fec3e7924 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL H2DP 0.2 nozzle.json @@ -1,131 +1,54 @@ { - "type": "filament", - "name": "Generic PLA @BBL H2DP 0.2 nozzle", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_16", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA @BBL H2DP 0.2 nozzle", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_16", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PLA @BBL H2DP.json index a82e91dff2..86f0e63424 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL H2DP.json @@ -1,133 +1,56 @@ { - "type": "filament", - "name": "Generic PLA @BBL H2DP", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_15", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA @BBL H2DP", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_15", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA @BBL H2S 0.2 nozzle.json index 06e2434064..c04a5a7f1d 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL H2S 0.2 nozzle.json @@ -1,134 +1,69 @@ { - "type": "filament", - "name": "Generic PLA @BBL H2S 0.2 nozzle", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_09", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA @BBL H2S 0.2 nozzle", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL H2S.json b/resources/profiles/BBL/filament/Generic PLA @BBL H2S.json index 440384f4e7..d43e487d30 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL H2S.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL H2S.json @@ -1,136 +1,96 @@ { - "type": "filament", - "name": "Generic PLA @BBL H2S", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_08", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA @BBL H2S", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_08", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA @BBL P2S 0.2 nozzle.json index e74986f789..2fdaa256f9 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL P2S 0.2 nozzle.json @@ -1,171 +1,66 @@ { - "type": "filament", - "name": "Generic PLA @BBL P2S 0.2 nozzle", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_14", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PLA @BBL P2S 0.2 nozzle", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_14", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL P2S.json b/resources/profiles/BBL/filament/Generic PLA @BBL P2S.json index 2272e1b769..1590ded45a 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL P2S.json @@ -1,173 +1,73 @@ { - "type": "filament", - "name": "Generic PLA @BBL P2S", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_13", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PLA @BBL P2S", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_13", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA @BBL X2D 0.2 nozzle.json index e4869e8bdd..0c2606bf20 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL X2D 0.2 nozzle.json @@ -1,272 +1,83 @@ { - "type": "filament", - "name": "Generic PLA @BBL X2D 0.2 nozzle", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_19", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6", - "1.6", - "1.6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PLA @BBL X2D 0.2 nozzle", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_19", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6", + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PLA @BBL X2D 0.4 nozzle.json index 0459c3fd56..d24b8e890c 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL X2D 0.4 nozzle.json @@ -1,272 +1,93 @@ { - "type": "filament", - "name": "Generic PLA @BBL X2D 0.4 nozzle", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_17", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PLA @BBL X2D 0.4 nozzle", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_17", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @BBL X2D.json b/resources/profiles/BBL/filament/Generic PLA @BBL X2D.json index 5504d3dd84..1faa70bed2 100644 --- a/resources/profiles/BBL/filament/Generic PLA @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PLA @BBL X2D.json @@ -1,273 +1,94 @@ { - "type": "filament", - "name": "Generic PLA @BBL X2D", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_18", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PLA @BBL X2D", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_18", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA @base.json b/resources/profiles/BBL/filament/Generic PLA @base.json index 8e166fe212..285c3aa9eb 100644 --- a/resources/profiles/BBL/filament/Generic PLA @base.json +++ b/resources/profiles/BBL/filament/Generic PLA @base.json @@ -1,18 +1,18 @@ { - "type": "filament", - "name": "Generic PLA @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFDSrzZ8", - "instantiation": "false", - "description": "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.", - "filament_flow_ratio": [ - "0.98" - ], - "slow_down_layer_time": [ - "8" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Generic PLA @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFDSrzZ8", + "instantiation": "false", + "description": "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.", + "filament_flow_ratio": [ + "0.98" + ], + "slow_down_layer_time": [ + "8" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A1 0.2 nozzle.json index fbfb00551d..5e696d1ef1 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A1 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL A1 0.2 nozzle", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL A1 0.2 nozzle", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A1.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A1.json index 2f4b1e6e3d..08abf18047 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A1.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL A1", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL A1", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A1M 0.2 nozzle.json index 74a56574b5..b043e52658 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A1M 0.2 nozzle.json @@ -1,14 +1,14 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL A1M 0.2 nozzle", - "inherits": "Generic PLA High Speed @BBL A1M", - "from": "system", - "setting_id": "GFSL95_07", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL A1M 0.2 nozzle", + "inherits": "Generic PLA High Speed @BBL A1M", + "from": "system", + "setting_id": "GFSL95_07", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A1M.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A1M.json index cab5fbbedc..a052820c45 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A1M.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A1M.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL A1M", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_06", - "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": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle", - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL A1M", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_06", + "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": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A2L 0.2 nozzle.json index a10f03de18..868cae23cf 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A2L 0.2 nozzle.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL A2L 0.2 nozzle", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_22", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "slow_down_min_speed": [ - "40" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL A2L 0.2 nozzle", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_22", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "40" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A2L.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A2L.json index d3bf1ac5b8..88ff48657c 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL A2L.json @@ -1,43 +1,43 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL A2L", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_23", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "6" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL A2L", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_23", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2C 0.2 nozzle.json index 5a8a52641a..736f9d5b73 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2C 0.2 nozzle.json @@ -1,180 +1,91 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL H2C 0.2 nozzle", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_21", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL H2C 0.2 nozzle", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_21", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2C 0.4 nozzle.json index e3114fb4a5..1978b96cf3 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2C 0.4 nozzle.json @@ -1,183 +1,125 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL H2C 0.4 nozzle", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_19", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "4" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL H2C 0.4 nozzle", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_19", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2C.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2C.json index bdb8905b0d..e7083107ef 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2C.json @@ -1,184 +1,126 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL H2C", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_20", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "4" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL H2C", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_20", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2D 0.2 nozzle.json index d9f2031f98..81eb3070fb 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2D 0.2 nozzle.json @@ -1,131 +1,54 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL H2D 0.2 nozzle", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_09", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL H2D 0.2 nozzle", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_09", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2D.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2D.json index 2b61d46727..98e43fec75 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2D.json @@ -1,136 +1,66 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL H2D", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_08", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "4" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL H2D", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_08", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2DP 0.2 nozzle.json index ec808a7446..6420060c97 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2DP 0.2 nozzle.json @@ -1,131 +1,54 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL H2DP 0.2 nozzle", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_15", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL H2DP 0.2 nozzle", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_15", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2DP.json index 8191d93f7f..04df3f4e6f 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2DP.json @@ -1,136 +1,59 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL H2DP", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_14", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "4" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL H2DP", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_14", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2S 0.2 nozzle.json index 745a286152..23633f4ce4 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2S 0.2 nozzle.json @@ -1,137 +1,72 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL H2S 0.2 nozzle", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_11", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "4" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL H2S 0.2 nozzle", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_11", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2S.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2S.json index 79b0dead71..97706a18ab 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2S.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL H2S.json @@ -1,139 +1,99 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL H2S", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_10", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "4" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL H2S", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_10", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL P1P 0.2 nozzle.json index 8b71e5209b..ae9b7cd6e4 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL P1P 0.2 nozzle.json @@ -1,15 +1,15 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL P1P 0.2 nozzle", - "inherits": "Generic PLA High Speed @BBL P1P", - "from": "system", - "setting_id": "GFSL95_03", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL P1P 0.2 nozzle", + "inherits": "Generic PLA High Speed @BBL P1P", + "from": "system", + "setting_id": "GFSL95_03", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL P1P.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL P1P.json index a4ac9709ae..9c36600779 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL P1P.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL P1P.json @@ -1,139 +1,66 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL P1P", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_02", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL P1P", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL P2S 0.2 nozzle.json index 1f5f5644ab..ae545f8d76 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL P2S 0.2 nozzle.json @@ -1,174 +1,69 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL P2S 0.2 nozzle", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_13", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "4" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL P2S 0.2 nozzle", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_13", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL P2S.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL P2S.json index 546e65ce27..9e45a0db6d 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL P2S.json @@ -1,176 +1,76 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL P2S", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_12", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "4" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL P2S", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_12", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X1C 0.2 nozzle.json index 9694ec5bbb..4d1639b736 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X1C 0.2 nozzle.json @@ -1,18 +1,18 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL X1C 0.2 nozzle", - "inherits": "Generic PLA High Speed @BBL X1C", - "from": "system", - "setting_id": "GFSL95_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL X1C 0.2 nozzle", + "inherits": "Generic PLA High Speed @BBL X1C", + "from": "system", + "setting_id": "GFSL95_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X1C.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X1C.json index 0248772693..0ceae719e0 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X1C.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X1C.json @@ -1,136 +1,63 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL X1C", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "4" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL X1C", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D 0.2 nozzle.json index df1a884f06..f963772aac 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D 0.2 nozzle.json @@ -1,42 +1,42 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL X2D 0.2 nozzle", - "inherits": "Generic PLA High Speed @BBL X1C", - "from": "system", - "setting_id": "GFSL95_18", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "retraction_distances_when_ec": [ - "3", - "3" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL X2D 0.2 nozzle", + "inherits": "Generic PLA High Speed @BBL X1C", + "from": "system", + "setting_id": "GFSL95_18", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "retraction_distances_when_ec": [ + "3", + "3" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D 0.4 nozzle.json index a094687796..198ad36a8d 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D 0.4 nozzle.json @@ -1,275 +1,96 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL X2D 0.4 nozzle", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_16", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "18", - "18", - "18", - "18" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "slow_down_layer_time": [ - "4" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL X2D 0.4 nozzle", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_16", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D.json b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D.json index 180ace5a9f..1115381a50 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @BBL X2D.json @@ -1,276 +1,97 @@ { - "type": "filament", - "name": "Generic PLA High Speed @BBL X2D", - "inherits": "Generic PLA High Speed @base", - "from": "system", - "setting_id": "GFSL95_17", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "18", - "18", - "18", - "18" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "slow_down_layer_time": [ - "4" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @BBL X2D", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GFSL95_17", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "18", + "18", + "18", + "18", + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA High Speed @base.json b/resources/profiles/BBL/filament/Generic PLA High Speed @base.json index 9fd751ae44..fc6c29c211 100644 --- a/resources/profiles/BBL/filament/Generic PLA High Speed @base.json +++ b/resources/profiles/BBL/filament/Generic PLA High Speed @base.json @@ -1,17 +1,17 @@ { - "type": "filament", - "name": "Generic PLA High Speed @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFmpMwxS", - "instantiation": "false", - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "slow_down_layer_time": [ - "8" - ] -} + "type": "filament", + "name": "Generic PLA High Speed @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFmpMwxS", + "instantiation": "false", + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "slow_down_layer_time": [ + "8" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA Silk @BBL A1.json b/resources/profiles/BBL/filament/Generic PLA Silk @BBL A1.json index e57cb22e16..0e6eb66ffc 100644 --- a/resources/profiles/BBL/filament/Generic PLA Silk @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PLA Silk @BBL A1.json @@ -1,28 +1,28 @@ { - "type": "filament", - "name": "Generic PLA Silk @BBL A1", - "inherits": "Generic PLA Silk @base", - "from": "system", - "setting_id": "GFSL96_01", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "7.5" - ], - "filament_retraction_length": [ - "0.5" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PLA Silk @BBL A1", + "inherits": "Generic PLA Silk @base", + "from": "system", + "setting_id": "GFSL96_01", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "7.5" + ], + "filament_retraction_length": [ + "0.5" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA Silk @BBL A1M.json b/resources/profiles/BBL/filament/Generic PLA Silk @BBL A1M.json index d2e5d12bb5..ba7582a9e1 100644 --- a/resources/profiles/BBL/filament/Generic PLA Silk @BBL A1M.json +++ b/resources/profiles/BBL/filament/Generic PLA Silk @BBL A1M.json @@ -1,40 +1,40 @@ { - "type": "filament", - "name": "Generic PLA Silk @BBL A1M", - "inherits": "Generic PLA Silk @base", - "from": "system", - "setting_id": "GFSL96_00", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "7.5" - ], - "filament_retraction_length": [ - "0.5" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PLA Silk @BBL A1M", + "inherits": "Generic PLA Silk @base", + "from": "system", + "setting_id": "GFSL96_00", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "7.5" + ], + "filament_retraction_length": [ + "0.5" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA Silk @BBL A2L.json b/resources/profiles/BBL/filament/Generic PLA Silk @BBL A2L.json index e8db9edc9a..9a5a78e075 100644 --- a/resources/profiles/BBL/filament/Generic PLA Silk @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic PLA Silk @BBL A2L.json @@ -1,46 +1,46 @@ { - "type": "filament", - "name": "Generic PLA Silk @BBL A2L", - "inherits": "Generic PLA Silk @base", - "from": "system", - "setting_id": "GFSL96_10", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "filament_max_volumetric_speed": [ - "7.5" - ], - "filament_retraction_length": [ - "0.5" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PLA Silk @BBL A2L", + "inherits": "Generic PLA Silk @base", + "from": "system", + "setting_id": "GFSL96_10", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "filament_max_volumetric_speed": [ + "7.5" + ], + "filament_retraction_length": [ + "0.5" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2C 0.4 nozzle.json index 730b5e0f02..c48a46337c 100644 --- a/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2C 0.4 nozzle.json @@ -1,180 +1,122 @@ { - "type": "filament", - "name": "Generic PLA Silk @BBL H2C 0.4 nozzle", - "inherits": "Generic PLA Silk @base", - "from": "system", - "setting_id": "GFSL96_08", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "7.5", - "7.5" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA Silk @BBL H2C 0.4 nozzle", + "inherits": "Generic PLA Silk @base", + "from": "system", + "setting_id": "GFSL96_08", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "7.5", + "7.5", + "7.5" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2C.json b/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2C.json index 1d75400976..61201273f0 100644 --- a/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2C.json @@ -1,181 +1,123 @@ { - "type": "filament", - "name": "Generic PLA Silk @BBL H2C", - "inherits": "Generic PLA Silk @base", - "from": "system", - "setting_id": "GFSL96_09", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.99", - "0.99" - ], - "filament_max_volumetric_speed": [ - "7.5", - "7.5" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA Silk @BBL H2C", + "inherits": "Generic PLA Silk @base", + "from": "system", + "setting_id": "GFSL96_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.99", + "0.99", + "0.99" + ], + "filament_max_volumetric_speed": [ + "7.5", + "7.5", + "7.5" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2D.json b/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2D.json index 5d8001bda9..284b27ee8d 100644 --- a/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2D.json @@ -1,133 +1,63 @@ { - "type": "filament", - "name": "Generic PLA Silk @BBL H2D", - "inherits": "Generic PLA Silk @base", - "from": "system", - "setting_id": "GFSL96_02", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "7.5", - "7.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA Silk @BBL H2D", + "inherits": "Generic PLA Silk @base", + "from": "system", + "setting_id": "GFSL96_02", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "7.5", + "7.5", + "7.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2DP.json index d27582671e..dbbc13a500 100644 --- a/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2DP.json @@ -1,133 +1,56 @@ { - "type": "filament", - "name": "Generic PLA Silk @BBL H2DP", - "inherits": "Generic PLA Silk @base", - "from": "system", - "setting_id": "GFSL96_05", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "7.5", - "7.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA Silk @BBL H2DP", + "inherits": "Generic PLA Silk @base", + "from": "system", + "setting_id": "GFSL96_05", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "7.5", + "7.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2S.json b/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2S.json index 987ad0b4c0..100e03b3c9 100644 --- a/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2S.json +++ b/resources/profiles/BBL/filament/Generic PLA Silk @BBL H2S.json @@ -1,139 +1,99 @@ { - "type": "filament", - "name": "Generic PLA Silk @BBL H2S", - "inherits": "Generic PLA Silk @base", - "from": "system", - "setting_id": "GFSL96_04", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "7.5", - "7.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "1", - "1" - ], - "filament_wipe_distance": [ - "1", - "1" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "Spiral Lift", - "Spiral Lift" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA Silk @BBL H2S", + "inherits": "Generic PLA Silk @base", + "from": "system", + "setting_id": "GFSL96_04", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "7.5", + "7.5", + "7.5" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "filament_wipe": [ + "1", + "1", + "1" + ], + "filament_wipe_distance": [ + "1", + "1", + "1" + ], + "filament_z_hop_types": [ + "Spiral Lift", + "Spiral Lift", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA Silk @BBL P2S.json b/resources/profiles/BBL/filament/Generic PLA Silk @BBL P2S.json index 6aa7e0cc4b..28597851fb 100644 --- a/resources/profiles/BBL/filament/Generic PLA Silk @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PLA Silk @BBL P2S.json @@ -1,173 +1,78 @@ { - "type": "filament", - "name": "Generic PLA Silk @BBL P2S", - "inherits": "Generic PLA Silk @base", - "from": "system", - "setting_id": "GFSL96_03", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "7.5", - "7.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.5", - "0.5" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PLA Silk @BBL P2S", + "inherits": "Generic PLA Silk @base", + "from": "system", + "setting_id": "GFSL96_03", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "7.5", + "7.5", + "7.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.5", + "0.5", + "0.5" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA Silk @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PLA Silk @BBL X2D 0.4 nozzle.json index 22ac6a6d7a..bf5faa157c 100644 --- a/resources/profiles/BBL/filament/Generic PLA Silk @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA Silk @BBL X2D 0.4 nozzle.json @@ -1,272 +1,101 @@ { - "type": "filament", - "name": "Generic PLA Silk @BBL X2D 0.4 nozzle", - "inherits": "Generic PLA Silk @base", - "from": "system", - "setting_id": "GFSL96_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.5", - "0.5", - "0.5", - "0.5" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "7.5", - "7.5", - "7.5", - "7.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PLA Silk @BBL X2D 0.4 nozzle", + "inherits": "Generic PLA Silk @base", + "from": "system", + "setting_id": "GFSL96_06", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "7.5", + "7.5", + "7.5", + "7.5", + "7.5", + "7.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.5", + "0.5", + "0.5", + "0.5", + "0.5", + "0.5" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA Silk @BBL X2D.json b/resources/profiles/BBL/filament/Generic PLA Silk @BBL X2D.json index 05fa8b0263..5e82201ebf 100644 --- a/resources/profiles/BBL/filament/Generic PLA Silk @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PLA Silk @BBL X2D.json @@ -1,273 +1,102 @@ { - "type": "filament", - "name": "Generic PLA Silk @BBL X2D", - "inherits": "Generic PLA Silk @base", - "from": "system", - "setting_id": "GFSL96_07", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.5", - "0.5", - "0.5", - "0.5" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.98", - "0.98", - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "7.5", - "7.5", - "7.5", - "7.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PLA Silk @BBL X2D", + "inherits": "Generic PLA Silk @base", + "from": "system", + "setting_id": "GFSL96_07", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98", + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "7.5", + "7.5", + "7.5", + "7.5", + "7.5", + "7.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.5", + "0.5", + "0.5", + "0.5", + "0.5", + "0.5" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA Silk @base.json b/resources/profiles/BBL/filament/Generic PLA Silk @base.json index 41bc486e88..d287b098a4 100644 --- a/resources/profiles/BBL/filament/Generic PLA Silk @base.json +++ b/resources/profiles/BBL/filament/Generic PLA Silk @base.json @@ -1,24 +1,24 @@ { - "type": "filament", - "name": "Generic PLA Silk @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFesA6rF", - "instantiation": "false", - "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.", - "filament_flow_ratio": [ - "0.98" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "slow_down_layer_time": [ - "8" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Generic PLA Silk @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFesA6rF", + "instantiation": "false", + "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.", + "filament_flow_ratio": [ + "0.98" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "slow_down_layer_time": [ + "8" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA Silk.json b/resources/profiles/BBL/filament/Generic PLA Silk.json index 9758fd1517..b9dce32b37 100644 --- a/resources/profiles/BBL/filament/Generic PLA Silk.json +++ b/resources/profiles/BBL/filament/Generic PLA Silk.json @@ -1,34 +1,34 @@ { - "type": "filament", - "name": "Generic PLA Silk", - "inherits": "Generic PLA Silk @base", - "from": "system", - "setting_id": "GFSL99_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "7.5" - ], - "filament_retraction_length": [ - "0.5" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "type": "filament", + "name": "Generic PLA Silk", + "inherits": "Generic PLA Silk @base", + "from": "system", + "setting_id": "GFSL99_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "7.5" + ], + "filament_retraction_length": [ + "0.5" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA-CF @BBL A1.json b/resources/profiles/BBL/filament/Generic PLA-CF @BBL A1.json index 540e54edd4..e53f2d35c1 100644 --- a/resources/profiles/BBL/filament/Generic PLA-CF @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PLA-CF @BBL A1.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "Generic PLA-CF @BBL A1", - "inherits": "Generic PLA-CF @base", - "from": "system", - "setting_id": "GFSL98_01", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PLA-CF @BBL A1", + "inherits": "Generic PLA-CF @base", + "from": "system", + "setting_id": "GFSL98_01", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA-CF @BBL A1M.json b/resources/profiles/BBL/filament/Generic PLA-CF @BBL A1M.json index 8483f075f8..b5b005424c 100644 --- a/resources/profiles/BBL/filament/Generic PLA-CF @BBL A1M.json +++ b/resources/profiles/BBL/filament/Generic PLA-CF @BBL A1M.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "Generic PLA-CF @BBL A1M", - "inherits": "Generic PLA-CF @base", - "from": "system", - "setting_id": "GFSL98_00", - "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" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PLA-CF @BBL A1M", + "inherits": "Generic PLA-CF @base", + "from": "system", + "setting_id": "GFSL98_00", + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA-CF @BBL A2L.json b/resources/profiles/BBL/filament/Generic PLA-CF @BBL A2L.json index 9a94369480..ea16b27319 100644 --- a/resources/profiles/BBL/filament/Generic PLA-CF @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic PLA-CF @BBL A2L.json @@ -1,43 +1,43 @@ { - "type": "filament", - "name": "Generic PLA-CF @BBL A2L", - "inherits": "Generic PLA-CF @base", - "from": "system", - "setting_id": "GFSL98_11", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_flush_temp_fast": [ - "220" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PLA-CF @BBL A2L", + "inherits": "Generic PLA-CF @base", + "from": "system", + "setting_id": "GFSL98_11", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_flush_temp_fast": [ + "220" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2C 0.4 nozzle.json index 98e1f99a5b..f2aeb5d559 100644 --- a/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2C 0.4 nozzle.json @@ -1,174 +1,91 @@ { - "type": "filament", - "name": "Generic PLA-CF @BBL H2C 0.4 nozzle", - "inherits": "Generic PLA-CF @base", - "from": "system", - "setting_id": "GFSL98_08", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA-CF @BBL H2C 0.4 nozzle", + "inherits": "Generic PLA-CF @base", + "from": "system", + "setting_id": "GFSL98_08", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2C.json b/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2C.json index 29befe21c2..f203c1b94d 100644 --- a/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2C.json @@ -1,175 +1,92 @@ { - "type": "filament", - "name": "Generic PLA-CF @BBL H2C", - "inherits": "Generic PLA-CF @base", - "from": "system", - "setting_id": "GFSL98_09", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_retract_length_nc": [ - "18", - "18" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA-CF @BBL H2C", + "inherits": "Generic PLA-CF @base", + "from": "system", + "setting_id": "GFSL98_09", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_retract_length_nc": [ + "18", + "18", + "18" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2D.json b/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2D.json index 40f7ee140d..9629844415 100644 --- a/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2D.json @@ -1,133 +1,58 @@ { - "type": "filament", - "name": "Generic PLA-CF @BBL H2D", - "inherits": "Generic PLA-CF @base", - "from": "system", - "setting_id": "GFSL98_02", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA-CF @BBL H2D", + "inherits": "Generic PLA-CF @base", + "from": "system", + "setting_id": "GFSL98_02", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2DP.json index ab44a93115..25176e2b10 100644 --- a/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2DP.json @@ -1,133 +1,52 @@ { - "type": "filament", - "name": "Generic PLA-CF @BBL H2DP", - "inherits": "Generic PLA-CF @base", - "from": "system", - "setting_id": "GFSL98_05", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA-CF @BBL H2DP", + "inherits": "Generic PLA-CF @base", + "from": "system", + "setting_id": "GFSL98_05", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2S.json b/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2S.json index 4ba41919e5..7bdd82a338 100644 --- a/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2S.json +++ b/resources/profiles/BBL/filament/Generic PLA-CF @BBL H2S.json @@ -1,133 +1,73 @@ { - "type": "filament", - "name": "Generic PLA-CF @BBL H2S", - "inherits": "Generic PLA-CF @base", - "from": "system", - "setting_id": "GFSL98_04", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "0" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PLA-CF @BBL H2S", + "inherits": "Generic PLA-CF @base", + "from": "system", + "setting_id": "GFSL98_04", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_long_retractions_when_cut": [ + "nil", + "0", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA-CF @BBL P2S.json b/resources/profiles/BBL/filament/Generic PLA-CF @BBL P2S.json index 3d56a89a63..adef1f79ab 100644 --- a/resources/profiles/BBL/filament/Generic PLA-CF @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PLA-CF @BBL P2S.json @@ -1,173 +1,68 @@ { - "type": "filament", - "name": "Generic PLA-CF @BBL P2S", - "inherits": "Generic PLA-CF @base", - "from": "system", - "setting_id": "GFSL98_03", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PLA-CF @BBL P2S", + "inherits": "Generic PLA-CF @base", + "from": "system", + "setting_id": "GFSL98_03", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PLA-CF @BBL X2D 0.4 nozzle.json index 89b2b2c72e..07f760089c 100644 --- a/resources/profiles/BBL/filament/Generic PLA-CF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PLA-CF @BBL X2D 0.4 nozzle.json @@ -1,272 +1,93 @@ { - "type": "filament", - "name": "Generic PLA-CF @BBL X2D 0.4 nozzle", - "inherits": "Generic PLA-CF @base", - "from": "system", - "setting_id": "GFSL98_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PLA-CF @BBL X2D 0.4 nozzle", + "inherits": "Generic PLA-CF @base", + "from": "system", + "setting_id": "GFSL98_06", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA-CF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PLA-CF @BBL X2D.json index 823f303441..32f7c7edc2 100644 --- a/resources/profiles/BBL/filament/Generic PLA-CF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PLA-CF @BBL X2D.json @@ -1,273 +1,94 @@ { - "type": "filament", - "name": "Generic PLA-CF @BBL X2D", - "inherits": "Generic PLA-CF @base", - "from": "system", - "setting_id": "GFSL98_07", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PLA-CF @BBL X2D", + "inherits": "Generic PLA-CF @base", + "from": "system", + "setting_id": "GFSL98_07", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA-CF @base.json b/resources/profiles/BBL/filament/Generic PLA-CF @base.json index ffbcaad864..c9194ad76b 100644 --- a/resources/profiles/BBL/filament/Generic PLA-CF @base.json +++ b/resources/profiles/BBL/filament/Generic PLA-CF @base.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "Generic PLA-CF @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFWbdGsC", - "instantiation": "false", - "additional_cooling_fan_speed": [ - "0" - ], - "cool_plate_temp": [ - "45" - ], - "cool_plate_temp_initial_layer": [ - "45" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_type": [ - "PLA-CF" - ], - "required_nozzle_HRC": [ - "40" - ], - "supertack_plate_temp": [ - "50" - ], - "supertack_plate_temp_initial_layer": [ - "50" - ], - "slow_down_layer_time": [ - "7" - ], - "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}" - ] -} + "type": "filament", + "name": "Generic PLA-CF @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFWbdGsC", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "0" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_type": [ + "PLA-CF" + ], + "required_nozzle_HRC": [ + "40" + ], + "supertack_plate_temp": [ + "50" + ], + "supertack_plate_temp_initial_layer": [ + "50" + ], + "slow_down_layer_time": [ + "7" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA-CF.json b/resources/profiles/BBL/filament/Generic PLA-CF.json index 0ad045f0f9..198072a86d 100644 --- a/resources/profiles/BBL/filament/Generic PLA-CF.json +++ b/resources/profiles/BBL/filament/Generic PLA-CF.json @@ -1,25 +1,25 @@ { - "type": "filament", - "name": "Generic PLA-CF", - "inherits": "Generic PLA-CF @base", - "from": "system", - "setting_id": "GFSL98", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "type": "filament", + "name": "Generic PLA-CF", + "inherits": "Generic PLA-CF @base", + "from": "system", + "setting_id": "GFSL98", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PLA.json b/resources/profiles/BBL/filament/Generic PLA.json index 4b99799313..ed6d69aa8e 100644 --- a/resources/profiles/BBL/filament/Generic PLA.json +++ b/resources/profiles/BBL/filament/Generic PLA.json @@ -1,28 +1,28 @@ { - "type": "filament", - "name": "Generic PLA", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "type": "filament", + "name": "Generic PLA", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP @BBL A1.json b/resources/profiles/BBL/filament/Generic PP @BBL A1.json index 9d9aba8e63..4c4b6c1710 100644 --- a/resources/profiles/BBL/filament/Generic PP @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PP @BBL A1.json @@ -1,14 +1,14 @@ { - "type": "filament", - "name": "Generic PP @BBL A1", - "inherits": "Generic PP @base", - "from": "system", - "setting_id": "GFSP97_01", - "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": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PP @BBL A1", + "inherits": "Generic PP @base", + "from": "system", + "setting_id": "GFSP97_01", + "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": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP @BBL A1M.json b/resources/profiles/BBL/filament/Generic PP @BBL A1M.json index db378f2fb1..3c4907f8c9 100644 --- a/resources/profiles/BBL/filament/Generic PP @BBL A1M.json +++ b/resources/profiles/BBL/filament/Generic PP @BBL A1M.json @@ -1,14 +1,14 @@ { - "type": "filament", - "name": "Generic PP @BBL A1M", - "inherits": "Generic PP @base", - "from": "system", - "setting_id": "GFSP97_02", - "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": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PP @BBL A1M", + "inherits": "Generic PP @base", + "from": "system", + "setting_id": "GFSP97_02", + "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": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP @BBL A2L.json b/resources/profiles/BBL/filament/Generic PP @BBL A2L.json index e8ea2d9f54..11bf9a7c04 100644 --- a/resources/profiles/BBL/filament/Generic PP @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic PP @BBL A2L.json @@ -1,20 +1,20 @@ { - "type": "filament", - "name": "Generic PP @BBL A2L", - "inherits": "Generic PP @base", - "from": "system", - "setting_id": "GFSP97_11", - "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.", - "pre_start_fan_time": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PP @BBL A2L", + "inherits": "Generic PP @base", + "from": "system", + "setting_id": "GFSP97_11", + "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.", + "pre_start_fan_time": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PP @BBL H2C 0.4 nozzle.json index f82945ba5d..c26dae20e7 100644 --- a/resources/profiles/BBL/filament/Generic PP @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PP @BBL H2C 0.4 nozzle.json @@ -1,178 +1,95 @@ { - "type": "filament", - "name": "Generic PP @BBL H2C 0.4 nozzle", - "inherits": "Generic PP @base", - "from": "system", - "setting_id": "GFSP97_09", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "195", - "195" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "50" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PP @BBL H2C 0.4 nozzle", + "inherits": "Generic PP @base", + "from": "system", + "setting_id": "GFSP97_09", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "195", + "195", + "195" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP @BBL H2C.json b/resources/profiles/BBL/filament/Generic PP @BBL H2C.json index 7904a38119..0c440b4df4 100644 --- a/resources/profiles/BBL/filament/Generic PP @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PP @BBL H2C.json @@ -1,179 +1,96 @@ { - "type": "filament", - "name": "Generic PP @BBL H2C", - "inherits": "Generic PP @base", - "from": "system", - "setting_id": "GFSP97_10", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "195", - "195" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "50" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PP @BBL H2C", + "inherits": "Generic PP @base", + "from": "system", + "setting_id": "GFSP97_10", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "195", + "195", + "195" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP @BBL H2D.json b/resources/profiles/BBL/filament/Generic PP @BBL H2D.json index 9f9f1a90af..2410ce3cc9 100644 --- a/resources/profiles/BBL/filament/Generic PP @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PP @BBL H2D.json @@ -1,134 +1,64 @@ { - "type": "filament", - "name": "Generic PP @BBL H2D", - "inherits": "Generic PP @base", - "from": "system", - "setting_id": "GFSP97_04", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PP @BBL H2D", + "inherits": "Generic PP @base", + "from": "system", + "setting_id": "GFSP97_04", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PP @BBL H2DP.json index a50d682f44..b88298b5eb 100644 --- a/resources/profiles/BBL/filament/Generic PP @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PP @BBL H2DP.json @@ -1,134 +1,57 @@ { - "type": "filament", - "name": "Generic PP @BBL H2DP", - "inherits": "Generic PP @base", - "from": "system", - "setting_id": "GFSP97_06", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PP @BBL H2DP", + "inherits": "Generic PP @base", + "from": "system", + "setting_id": "GFSP97_06", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PP @BBL H2S 0.4 nozzle.json index 5ba388e5ae..7bf4a1d6b4 100644 --- a/resources/profiles/BBL/filament/Generic PP @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PP @BBL H2S 0.4 nozzle.json @@ -1,137 +1,77 @@ { - "type": "filament", - "name": "Generic PP @BBL H2S 0.4 nozzle", - "inherits": "Generic PP @base", - "from": "system", - "setting_id": "GFSP97_12", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "temperature_vitrification": [ - "50" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PP @BBL H2S 0.4 nozzle", + "inherits": "Generic PP @base", + "from": "system", + "setting_id": "GFSP97_12", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP @BBL P2S.json b/resources/profiles/BBL/filament/Generic PP @BBL P2S.json index 502e2baee2..0a37f15e29 100644 --- a/resources/profiles/BBL/filament/Generic PP @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PP @BBL P2S.json @@ -1,174 +1,74 @@ { - "type": "filament", - "name": "Generic PP @BBL P2S", - "inherits": "Generic PP @base", - "from": "system", - "setting_id": "GFSP97_05", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PP @BBL P2S", + "inherits": "Generic PP @base", + "from": "system", + "setting_id": "GFSP97_05", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP @BBL X1C.json b/resources/profiles/BBL/filament/Generic PP @BBL X1C.json index 41d0a02f28..9c452c18e3 100644 --- a/resources/profiles/BBL/filament/Generic PP @BBL X1C.json +++ b/resources/profiles/BBL/filament/Generic PP @BBL X1C.json @@ -1,134 +1,61 @@ { - "type": "filament", - "name": "Generic PP @BBL X1C", - "inherits": "Generic PP @base", - "from": "system", - "setting_id": "GFSP97_00", - "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_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "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" - ] -} + "type": "filament", + "name": "Generic PP @BBL X1C", + "inherits": "Generic PP @base", + "from": "system", + "setting_id": "GFSP97_00", + "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_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "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" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PP @BBL X2D 0.4 nozzle.json index 1dc84c927b..8f46f07f1d 100644 --- a/resources/profiles/BBL/filament/Generic PP @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PP @BBL X2D 0.4 nozzle.json @@ -1,273 +1,94 @@ { - "type": "filament", - "name": "Generic PP @BBL X2D 0.4 nozzle", - "inherits": "Generic PP @base", - "from": "system", - "setting_id": "GFSP97_07", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "235" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "235", - "235", - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235", - "235", - "235" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PP @BBL X2D 0.4 nozzle", + "inherits": "Generic PP @base", + "from": "system", + "setting_id": "GFSP97_07", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "235" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "235", + "235", + "235", + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235", + "235", + "235", + "235" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP @BBL X2D.json b/resources/profiles/BBL/filament/Generic PP @BBL X2D.json index 27a96daa13..61590c5403 100644 --- a/resources/profiles/BBL/filament/Generic PP @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PP @BBL X2D.json @@ -1,274 +1,95 @@ { - "type": "filament", - "name": "Generic PP @BBL X2D", - "inherits": "Generic PP @base", - "from": "system", - "setting_id": "GFSP97_08", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12", - "12", - "12" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "235" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "235", - "235", - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235", - "235", - "235" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PP @BBL X2D", + "inherits": "Generic PP @base", + "from": "system", + "setting_id": "GFSP97_08", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12", + "12", + "12", + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "235" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "235", + "235", + "235", + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235", + "235", + "235", + "235" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP @base.json b/resources/profiles/BBL/filament/Generic PP @base.json index 94847d67e9..218bc35093 100644 --- a/resources/profiles/BBL/filament/Generic PP @base.json +++ b/resources/profiles/BBL/filament/Generic PP @base.json @@ -1,8 +1,8 @@ { - "type": "filament", - "name": "Generic PP @base", - "inherits": "fdm_filament_pp", - "from": "system", - "filament_id": "OF1UNk9P", - "instantiation": "false" -} + "type": "filament", + "name": "Generic PP @base", + "inherits": "fdm_filament_pp", + "from": "system", + "filament_id": "OF1UNk9P", + "instantiation": "false" +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-CF @BBL A1.json b/resources/profiles/BBL/filament/Generic PP-CF @BBL A1.json index b74a4ce593..3c3ad6cfd1 100644 --- a/resources/profiles/BBL/filament/Generic PP-CF @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PP-CF @BBL A1.json @@ -1,14 +1,14 @@ { - "type": "filament", - "name": "Generic PP-CF @BBL A1", - "inherits": "Generic PP-CF @base", - "from": "system", - "setting_id": "GFSP96_01", - "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": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PP-CF @BBL A1", + "inherits": "Generic PP-CF @base", + "from": "system", + "setting_id": "GFSP96_01", + "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": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-CF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PP-CF @BBL H2C 0.4 nozzle.json index 31dba2afa7..8b357127db 100644 --- a/resources/profiles/BBL/filament/Generic PP-CF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PP-CF @BBL H2C 0.4 nozzle.json @@ -1,178 +1,95 @@ { - "type": "filament", - "name": "Generic PP-CF @BBL H2C 0.4 nozzle", - "inherits": "Generic PP-CF @base", - "from": "system", - "setting_id": "GFSP96_07", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "195", - "195" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "50" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PP-CF @BBL H2C 0.4 nozzle", + "inherits": "Generic PP-CF @base", + "from": "system", + "setting_id": "GFSP96_07", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "195", + "195", + "195" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-CF @BBL H2C.json b/resources/profiles/BBL/filament/Generic PP-CF @BBL H2C.json index 1a34b1491c..777889fdd3 100644 --- a/resources/profiles/BBL/filament/Generic PP-CF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PP-CF @BBL H2C.json @@ -1,179 +1,96 @@ { - "type": "filament", - "name": "Generic PP-CF @BBL H2C", - "inherits": "Generic PP-CF @base", - "from": "system", - "setting_id": "GFSP96_08", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "195", - "195" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "50" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PP-CF @BBL H2C", + "inherits": "Generic PP-CF @base", + "from": "system", + "setting_id": "GFSP96_08", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "195", + "195", + "195" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-CF @BBL H2D.json b/resources/profiles/BBL/filament/Generic PP-CF @BBL H2D.json index 8065f9ce90..80e603bd6d 100644 --- a/resources/profiles/BBL/filament/Generic PP-CF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PP-CF @BBL H2D.json @@ -1,134 +1,64 @@ { - "type": "filament", - "name": "Generic PP-CF @BBL H2D", - "inherits": "Generic PP-CF @base", - "from": "system", - "setting_id": "GFSP96_02", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PP-CF @BBL H2D", + "inherits": "Generic PP-CF @base", + "from": "system", + "setting_id": "GFSP96_02", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-CF @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PP-CF @BBL H2DP.json index 96aa86e940..c34bcd9070 100644 --- a/resources/profiles/BBL/filament/Generic PP-CF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PP-CF @BBL H2DP.json @@ -1,134 +1,57 @@ { - "type": "filament", - "name": "Generic PP-CF @BBL H2DP", - "inherits": "Generic PP-CF @base", - "from": "system", - "setting_id": "GFSP96_04", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PP-CF @BBL H2DP", + "inherits": "Generic PP-CF @base", + "from": "system", + "setting_id": "GFSP96_04", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-CF @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PP-CF @BBL H2S 0.4 nozzle.json index de8f2b55e5..d4cd1841ef 100644 --- a/resources/profiles/BBL/filament/Generic PP-CF @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PP-CF @BBL H2S 0.4 nozzle.json @@ -1,137 +1,77 @@ { - "type": "filament", - "name": "Generic PP-CF @BBL H2S 0.4 nozzle", - "inherits": "Generic PP-CF @base", - "from": "system", - "setting_id": "GFSP96_10", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "temperature_vitrification": [ - "50" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PP-CF @BBL H2S 0.4 nozzle", + "inherits": "Generic PP-CF @base", + "from": "system", + "setting_id": "GFSP96_10", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-CF @BBL P2S.json b/resources/profiles/BBL/filament/Generic PP-CF @BBL P2S.json index 4fae174f0f..5c071468df 100644 --- a/resources/profiles/BBL/filament/Generic PP-CF @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PP-CF @BBL P2S.json @@ -1,174 +1,74 @@ { - "type": "filament", - "name": "Generic PP-CF @BBL P2S", - "inherits": "Generic PP-CF @base", - "from": "system", - "setting_id": "GFSP96_03", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PP-CF @BBL P2S", + "inherits": "Generic PP-CF @base", + "from": "system", + "setting_id": "GFSP96_03", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-CF @BBL X1C.json b/resources/profiles/BBL/filament/Generic PP-CF @BBL X1C.json index 3daa064fb8..3f7b641a99 100644 --- a/resources/profiles/BBL/filament/Generic PP-CF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Generic PP-CF @BBL X1C.json @@ -1,134 +1,61 @@ { - "type": "filament", - "name": "Generic PP-CF @BBL X1C", - "inherits": "Generic PP-CF @base", - "from": "system", - "setting_id": "GFSP96_00", - "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_max_volumetric_speed": [ - "6", - "6" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "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" - ] -} + "type": "filament", + "name": "Generic PP-CF @BBL X1C", + "inherits": "Generic PP-CF @base", + "from": "system", + "setting_id": "GFSP96_00", + "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_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "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" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PP-CF @BBL X2D 0.4 nozzle.json index 04b944dac3..b3dc273d46 100644 --- a/resources/profiles/BBL/filament/Generic PP-CF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PP-CF @BBL X2D 0.4 nozzle.json @@ -1,273 +1,94 @@ { - "type": "filament", - "name": "Generic PP-CF @BBL X2D 0.4 nozzle", - "inherits": "Generic PP-CF @base", - "from": "system", - "setting_id": "GFSP96_05", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "235" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "235", - "235", - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235", - "235", - "235" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PP-CF @BBL X2D 0.4 nozzle", + "inherits": "Generic PP-CF @base", + "from": "system", + "setting_id": "GFSP96_05", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "235" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "235", + "235", + "235", + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235", + "235", + "235", + "235" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-CF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PP-CF @BBL X2D.json index 592172649d..ce02b609b1 100644 --- a/resources/profiles/BBL/filament/Generic PP-CF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PP-CF @BBL X2D.json @@ -1,274 +1,95 @@ { - "type": "filament", - "name": "Generic PP-CF @BBL X2D", - "inherits": "Generic PP-CF @base", - "from": "system", - "setting_id": "GFSP96_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "235" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "235", - "235", - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235", - "235", - "235" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PP-CF @BBL X2D", + "inherits": "Generic PP-CF @base", + "from": "system", + "setting_id": "GFSP96_06", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "235" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "235", + "235", + "235", + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235", + "235", + "235", + "235" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-CF @base.json b/resources/profiles/BBL/filament/Generic PP-CF @base.json index e04ee56b6d..c6c61c735b 100644 --- a/resources/profiles/BBL/filament/Generic PP-CF @base.json +++ b/resources/profiles/BBL/filament/Generic PP-CF @base.json @@ -1,20 +1,20 @@ { - "type": "filament", - "name": "Generic PP-CF @base", - "inherits": "fdm_filament_pp", - "from": "system", - "filament_id": "OFXkm8q1", - "instantiation": "false", - "filament_cost": [ - "77.99" - ], - "filament_density": [ - "1.01" - ], - "filament_max_volumetric_speed": [ - "6" - ], - "filament_type": [ - "PP-CF" - ] -} + "type": "filament", + "name": "Generic PP-CF @base", + "inherits": "fdm_filament_pp", + "from": "system", + "filament_id": "OFXkm8q1", + "instantiation": "false", + "filament_cost": [ + "77.99" + ], + "filament_density": [ + "1.01" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_type": [ + "PP-CF" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-GF @BBL A1.json b/resources/profiles/BBL/filament/Generic PP-GF @BBL A1.json index 9b1e043775..b8d3231f45 100644 --- a/resources/profiles/BBL/filament/Generic PP-GF @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PP-GF @BBL A1.json @@ -1,14 +1,14 @@ { - "type": "filament", - "name": "Generic PP-GF @BBL A1", - "inherits": "Generic PP-GF @base", - "from": "system", - "setting_id": "GFSP95_00", - "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": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PP-GF @BBL A1", + "inherits": "Generic PP-GF @base", + "from": "system", + "setting_id": "GFSP95_00", + "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": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-GF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PP-GF @BBL H2C 0.4 nozzle.json index 2c96691c1e..70a93a056d 100644 --- a/resources/profiles/BBL/filament/Generic PP-GF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PP-GF @BBL H2C 0.4 nozzle.json @@ -1,178 +1,95 @@ { - "type": "filament", - "name": "Generic PP-GF @BBL H2C 0.4 nozzle", - "inherits": "Generic PP-GF @base", - "from": "system", - "setting_id": "GFSP95_06", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "195", - "195" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "50" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PP-GF @BBL H2C 0.4 nozzle", + "inherits": "Generic PP-GF @base", + "from": "system", + "setting_id": "GFSP95_06", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "195", + "195", + "195" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-GF @BBL H2C.json b/resources/profiles/BBL/filament/Generic PP-GF @BBL H2C.json index 1622a69a3d..39ca551932 100644 --- a/resources/profiles/BBL/filament/Generic PP-GF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PP-GF @BBL H2C.json @@ -1,179 +1,96 @@ { - "type": "filament", - "name": "Generic PP-GF @BBL H2C", - "inherits": "Generic PP-GF @base", - "from": "system", - "setting_id": "GFSP95_07", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "195", - "195" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "50" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PP-GF @BBL H2C", + "inherits": "Generic PP-GF @base", + "from": "system", + "setting_id": "GFSP95_07", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "195", + "195", + "195" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-GF @BBL H2D.json b/resources/profiles/BBL/filament/Generic PP-GF @BBL H2D.json index ad2153589d..8c55e39dc0 100644 --- a/resources/profiles/BBL/filament/Generic PP-GF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PP-GF @BBL H2D.json @@ -1,134 +1,64 @@ { - "type": "filament", - "name": "Generic PP-GF @BBL H2D", - "inherits": "Generic PP-GF @base", - "from": "system", - "setting_id": "GFSP95_01", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PP-GF @BBL H2D", + "inherits": "Generic PP-GF @base", + "from": "system", + "setting_id": "GFSP95_01", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-GF @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PP-GF @BBL H2DP.json index 33f9777169..e82993c8d3 100644 --- a/resources/profiles/BBL/filament/Generic PP-GF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PP-GF @BBL H2DP.json @@ -1,134 +1,57 @@ { - "type": "filament", - "name": "Generic PP-GF @BBL H2DP", - "inherits": "Generic PP-GF @base", - "from": "system", - "setting_id": "GFSP95_03", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PP-GF @BBL H2DP", + "inherits": "Generic PP-GF @base", + "from": "system", + "setting_id": "GFSP95_03", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-GF @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PP-GF @BBL H2S 0.4 nozzle.json index b4b27abbad..b9710fb002 100644 --- a/resources/profiles/BBL/filament/Generic PP-GF @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PP-GF @BBL H2S 0.4 nozzle.json @@ -1,137 +1,77 @@ { - "type": "filament", - "name": "Generic PP-GF @BBL H2S 0.4 nozzle", - "inherits": "Generic PP-GF @base", - "from": "system", - "setting_id": "GFSP95_9", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "temperature_vitrification": [ - "50" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PP-GF @BBL H2S 0.4 nozzle", + "inherits": "Generic PP-GF @base", + "from": "system", + "setting_id": "GFSP95_9", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "50" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-GF @BBL P2S.json b/resources/profiles/BBL/filament/Generic PP-GF @BBL P2S.json index 0ee1c076ae..c1a588fc91 100644 --- a/resources/profiles/BBL/filament/Generic PP-GF @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PP-GF @BBL P2S.json @@ -1,174 +1,74 @@ { - "type": "filament", - "name": "Generic PP-GF @BBL P2S", - "inherits": "Generic PP-GF @base", - "from": "system", - "setting_id": "GFSP95_02", - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PP-GF @BBL P2S", + "inherits": "Generic PP-GF @base", + "from": "system", + "setting_id": "GFSP95_02", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-GF @BBL X1C.json b/resources/profiles/BBL/filament/Generic PP-GF @BBL X1C.json index 7bdaadab6b..852b2b5434 100644 --- a/resources/profiles/BBL/filament/Generic PP-GF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Generic PP-GF @BBL X1C.json @@ -1,134 +1,61 @@ { - "type": "filament", - "name": "Generic PP-GF @BBL X1C", - "inherits": "Generic PP-GF @base", - "from": "system", - "setting_id": "GFSP97_03", - "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_max_volumetric_speed": [ - "6", - "6" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "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" - ] -} + "type": "filament", + "name": "Generic PP-GF @BBL X1C", + "inherits": "Generic PP-GF @base", + "from": "system", + "setting_id": "GFSP97_03", + "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_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "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" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-GF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PP-GF @BBL X2D 0.4 nozzle.json index d6291e8f70..c2810237dd 100644 --- a/resources/profiles/BBL/filament/Generic PP-GF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PP-GF @BBL X2D 0.4 nozzle.json @@ -1,273 +1,94 @@ { - "type": "filament", - "name": "Generic PP-GF @BBL X2D 0.4 nozzle", - "inherits": "Generic PP-GF @base", - "from": "system", - "setting_id": "GFSP95_04", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "235" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "235", - "235", - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235", - "235", - "235" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PP-GF @BBL X2D 0.4 nozzle", + "inherits": "Generic PP-GF @base", + "from": "system", + "setting_id": "GFSP95_04", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "235" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "235", + "235", + "235", + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235", + "235", + "235", + "235" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-GF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PP-GF @BBL X2D.json index 23f2e79eba..bd2d1c3ed7 100644 --- a/resources/profiles/BBL/filament/Generic PP-GF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PP-GF @BBL X2D.json @@ -1,274 +1,95 @@ { - "type": "filament", - "name": "Generic PP-GF @BBL X2D", - "inherits": "Generic PP-GF @base", - "from": "system", - "setting_id": "GFSP95_05", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "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.", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "235" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "235", - "235", - "235", - "235" - ], - "nozzle_temperature_initial_layer": [ - "235", - "235", - "235", - "235" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PP-GF @BBL X2D", + "inherits": "Generic PP-GF @base", + "from": "system", + "setting_id": "GFSP95_05", + "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.", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "235" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "235", + "235", + "235", + "235", + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235", + "235", + "235", + "235", + "235" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PP-GF @base.json b/resources/profiles/BBL/filament/Generic PP-GF @base.json index 5d82e8223a..8602b343b1 100644 --- a/resources/profiles/BBL/filament/Generic PP-GF @base.json +++ b/resources/profiles/BBL/filament/Generic PP-GF @base.json @@ -1,20 +1,20 @@ { - "type": "filament", - "name": "Generic PP-GF @base", - "inherits": "fdm_filament_pp", - "from": "system", - "filament_id": "OFsijjtH", - "instantiation": "false", - "filament_cost": [ - "59.99" - ], - "filament_density": [ - "1.05" - ], - "filament_max_volumetric_speed": [ - "6" - ], - "filament_type": [ - "PP-GF" - ] -} + "type": "filament", + "name": "Generic PP-GF @base", + "inherits": "fdm_filament_pp", + "from": "system", + "filament_id": "OFsijjtH", + "instantiation": "false", + "filament_cost": [ + "59.99" + ], + "filament_density": [ + "1.05" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_type": [ + "PP-GF" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2C 0.4 nozzle.json index f5a311d686..6307ce8fd1 100644 --- a/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2C 0.4 nozzle.json @@ -1,180 +1,97 @@ { - "type": "filament", - "name": "Generic PPA-CF @BBL H2C 0.4 nozzle", - "inherits": "Generic PPA-CF @base", - "from": "system", - "setting_id": "GFSN97_07", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "35" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "6.5", - "6.5" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "250", - "250" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "overhang_fan_threshold": [ - "25%" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "70" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PPA-CF @BBL H2C 0.4 nozzle", + "inherits": "Generic PPA-CF @base", + "from": "system", + "setting_id": "GFSN97_07", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6.5", + "6.5", + "6.5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "250", + "250", + "250" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "70" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2C.json b/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2C.json index 70355a7fd4..99fbafe181 100644 --- a/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2C.json @@ -1,184 +1,101 @@ { - "type": "filament", - "name": "Generic PPA-CF @BBL H2C", - "inherits": "Generic PPA-CF @base", - "from": "system", - "setting_id": "GFSN97_08", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "35" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "6.5", - "6.5" - ], - "filament_printable": [ - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "250", - "250" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "overhang_fan_threshold": [ - "25%" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "70" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PPA-CF @BBL H2C", + "inherits": "Generic PPA-CF @base", + "from": "system", + "setting_id": "GFSN97_08", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6.5", + "6.5", + "6.5" + ], + "filament_printable": [ + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "250", + "250", + "250" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "70" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2D.json b/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2D.json index 42fda3ee7f..5798bede95 100644 --- a/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2D.json @@ -1,139 +1,69 @@ { - "type": "filament", - "name": "Generic PPA-CF @BBL H2D", - "inherits": "Generic PPA-CF @base", - "from": "system", - "setting_id": "GFSN97_02", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "35" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6.5", - "6.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_printable": [ - "1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "overhang_fan_threshold": [ - "25%" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PPA-CF @BBL H2D", + "inherits": "Generic PPA-CF @base", + "from": "system", + "setting_id": "GFSN97_02", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6.5", + "6.5", + "6.5" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2DP.json index a5291800ef..ab2c95d6ec 100644 --- a/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2DP.json @@ -1,139 +1,62 @@ { - "type": "filament", - "name": "Generic PPA-CF @BBL H2DP", - "inherits": "Generic PPA-CF @base", - "from": "system", - "setting_id": "GFSN97_04", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "35" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6.5", - "6.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_printable": [ - "1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "overhang_fan_threshold": [ - "25%" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PPA-CF @BBL H2DP", + "inherits": "Generic PPA-CF @base", + "from": "system", + "setting_id": "GFSN97_04", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6.5", + "6.5" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2S 0.4 nozzle.json index 78939aa32b..1424641376 100644 --- a/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PPA-CF @BBL H2S 0.4 nozzle.json @@ -1,136 +1,76 @@ { - "type": "filament", - "name": "Generic PPA-CF @BBL H2S 0.4 nozzle", - "inherits": "Generic PPA-CF @base", - "from": "system", - "setting_id": "GFSN97_9", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "35" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6.5", - "6.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "overhang_fan_threshold": [ - "25%" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "temperature_vitrification": [ - "70" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PPA-CF @BBL H2S 0.4 nozzle", + "inherits": "Generic PPA-CF @base", + "from": "system", + "setting_id": "GFSN97_9", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6.5", + "6.5", + "6.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "overhang_fan_threshold": [ + "25%" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "70" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-CF @BBL P2S.json b/resources/profiles/BBL/filament/Generic PPA-CF @BBL P2S.json index 89143e04cc..77b17fb0d8 100644 --- a/resources/profiles/BBL/filament/Generic PPA-CF @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PPA-CF @BBL P2S.json @@ -1,173 +1,73 @@ { - "type": "filament", - "name": "Generic PPA-CF @BBL P2S", - "inherits": "Generic PPA-CF @base", - "from": "system", - "setting_id": "GFSN97_03", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "35" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6.5", - "6.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "overhang_fan_threshold": [ - "25%" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PPA-CF @BBL P2S", + "inherits": "Generic PPA-CF @base", + "from": "system", + "setting_id": "GFSN97_03", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6.5", + "6.5", + "6.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "overhang_fan_threshold": [ + "25%" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-CF @BBL X1C.json b/resources/profiles/BBL/filament/Generic PPA-CF @BBL X1C.json index 75e3c21a5b..6b543ecd14 100644 --- a/resources/profiles/BBL/filament/Generic PPA-CF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Generic PPA-CF @BBL X1C.json @@ -1,136 +1,63 @@ { - "type": "filament", - "name": "Generic PPA-CF @BBL X1C", - "inherits": "Generic PPA-CF @base", - "from": "system", - "setting_id": "GFSN97_00", - "instantiation": "true", - "fan_max_speed": [ - "35" - ], - "filament_max_volumetric_speed": [ - "6.5", - "6.5" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "overhang_fan_threshold": [ - "25%" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.4 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" - ] -} + "type": "filament", + "name": "Generic PPA-CF @BBL X1C", + "inherits": "Generic PPA-CF @base", + "from": "system", + "setting_id": "GFSN97_00", + "instantiation": "true", + "fan_max_speed": [ + "35" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6.5", + "6.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "overhang_fan_threshold": [ + "25%" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.4 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" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-CF @BBL X1E.json b/resources/profiles/BBL/filament/Generic PPA-CF @BBL X1E.json index 5570916551..636204070f 100644 --- a/resources/profiles/BBL/filament/Generic PPA-CF @BBL X1E.json +++ b/resources/profiles/BBL/filament/Generic PPA-CF @BBL X1E.json @@ -1,130 +1,57 @@ { - "type": "filament", - "name": "Generic PPA-CF @BBL X1E", - "inherits": "Generic PPA-CF @base", - "from": "system", - "setting_id": "GFSN97_01", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "35" - ], - "filament_max_volumetric_speed": [ - "6.5", - "6.5" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "overhang_fan_threshold": [ - "25%" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PPA-CF @BBL X1E", + "inherits": "Generic PPA-CF @base", + "from": "system", + "setting_id": "GFSN97_01", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "35" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6.5", + "6.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "overhang_fan_threshold": [ + "25%" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-CF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PPA-CF @BBL X2D 0.4 nozzle.json index 483b8a1400..c171b03fe9 100644 --- a/resources/profiles/BBL/filament/Generic PPA-CF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PPA-CF @BBL X2D 0.4 nozzle.json @@ -1,275 +1,96 @@ { - "type": "filament", - "name": "Generic PPA-CF @BBL X2D 0.4 nozzle", - "inherits": "Generic PPA-CF @base", - "from": "system", - "setting_id": "GFSN97_05", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "35" - ], - "filament_flow_ratio": [ - "0.96", - "0.96", - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "6.5", - "6.5", - "6.5", - "6.5" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "290" - ], - "nozzle_temperature": [ - "290", - "290", - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290", - "290", - "290" - ], - "overhang_fan_threshold": [ - "25%" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PPA-CF @BBL X2D 0.4 nozzle", + "inherits": "Generic PPA-CF @base", + "from": "system", + "setting_id": "GFSN97_05", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6.5", + "6.5", + "6.5", + "6.5", + "6.5", + "6.5" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290", + "290", + "290" + ], + "overhang_fan_threshold": [ + "25%" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-CF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PPA-CF @BBL X2D.json index 077782b7cf..97b164c7a4 100644 --- a/resources/profiles/BBL/filament/Generic PPA-CF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PPA-CF @BBL X2D.json @@ -1,276 +1,97 @@ { - "type": "filament", - "name": "Generic PPA-CF @BBL X2D", - "inherits": "Generic PPA-CF @base", - "from": "system", - "setting_id": "GFSN97_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "fan_max_speed": [ - "35" - ], - "filament_flow_ratio": [ - "0.96", - "0.96", - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "6.5", - "6.5", - "6.5", - "6.5" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "290" - ], - "nozzle_temperature": [ - "290", - "290", - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290", - "290", - "290" - ], - "overhang_fan_threshold": [ - "25%" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PPA-CF @BBL X2D", + "inherits": "Generic PPA-CF @base", + "from": "system", + "setting_id": "GFSN97_06", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "fan_max_speed": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6.5", + "6.5", + "6.5", + "6.5", + "6.5", + "6.5" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290", + "290", + "290" + ], + "overhang_fan_threshold": [ + "25%" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-CF @base.json b/resources/profiles/BBL/filament/Generic PPA-CF @base.json index 78ad9bca5e..03fd113b86 100644 --- a/resources/profiles/BBL/filament/Generic PPA-CF @base.json +++ b/resources/profiles/BBL/filament/Generic PPA-CF @base.json @@ -1,15 +1,15 @@ { - "type": "filament", - "name": "Generic PPA-CF @base", - "inherits": "fdm_filament_ppa", - "from": "system", - "filament_id": "OF8tPByX", - "instantiation": "false", - "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", - "filament_max_volumetric_speed": [ - "6" - ], - "filament_vendor": [ - "Generic" - ] -} + "type": "filament", + "name": "Generic PPA-CF @base", + "inherits": "fdm_filament_ppa", + "from": "system", + "filament_id": "OF8tPByX", + "instantiation": "false", + "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", + "filament_max_volumetric_speed": [ + "6" + ], + "filament_vendor": [ + "Generic" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2C 0.4 nozzle.json index 1b85c2abc9..9e5993d821 100644 --- a/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2C 0.4 nozzle.json @@ -1,174 +1,91 @@ { - "type": "filament", - "name": "Generic PPA-GF @BBL H2C 0.4 nozzle", - "inherits": "Generic PPA-GF @base", - "from": "system", - "setting_id": "GFSN96_07", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "250", - "250" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PPA-GF @BBL H2C 0.4 nozzle", + "inherits": "Generic PPA-GF @base", + "from": "system", + "setting_id": "GFSN96_07", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "250", + "250", + "250" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2C.json b/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2C.json index f9d47164c5..d1c1aca5fb 100644 --- a/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2C.json @@ -1,175 +1,92 @@ { - "type": "filament", - "name": "Generic PPA-GF @BBL H2C", - "inherits": "Generic PPA-GF @base", - "from": "system", - "setting_id": "GFSN96_08", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "250", - "250" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "temperature_vitrification": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PPA-GF @BBL H2C", + "inherits": "Generic PPA-GF @base", + "from": "system", + "setting_id": "GFSN96_08", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "250", + "250", + "250" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2D.json b/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2D.json index 7861a305fb..17ddc9fd88 100644 --- a/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2D.json @@ -1,130 +1,60 @@ { - "type": "filament", - "name": "Generic PPA-GF @BBL H2D", - "inherits": "Generic PPA-GF @base", - "from": "system", - "setting_id": "GFSN96_02", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PPA-GF @BBL H2D", + "inherits": "Generic PPA-GF @base", + "from": "system", + "setting_id": "GFSN96_02", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2DP.json index 69f266bf09..490edf6139 100644 --- a/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2DP.json @@ -1,130 +1,53 @@ { - "type": "filament", - "name": "Generic PPA-GF @BBL H2DP", - "inherits": "Generic PPA-GF @base", - "from": "system", - "setting_id": "GFSN96_04", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PPA-GF @BBL H2DP", + "inherits": "Generic PPA-GF @base", + "from": "system", + "setting_id": "GFSN96_04", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2S 0.4 nozzle.json index f85950f894..5e56752e32 100644 --- a/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PPA-GF @BBL H2S 0.4 nozzle.json @@ -1,130 +1,70 @@ { - "type": "filament", - "name": "Generic PPA-GF @BBL H2S 0.4 nozzle", - "inherits": "Generic PPA-GF @base", - "from": "system", - "setting_id": "GFSN96_9", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "temperature_vitrification": [ - "100" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab H2S 0.4 nozzle" - ] -} + "type": "filament", + "name": "Generic PPA-GF @BBL H2S 0.4 nozzle", + "inherits": "Generic PPA-GF @base", + "from": "system", + "setting_id": "GFSN96_9", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "temperature_vitrification": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-GF @BBL P2S.json b/resources/profiles/BBL/filament/Generic PPA-GF @BBL P2S.json index 408fca5771..2bc84fad1a 100644 --- a/resources/profiles/BBL/filament/Generic PPA-GF @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PPA-GF @BBL P2S.json @@ -1,167 +1,67 @@ { - "type": "filament", - "name": "Generic PPA-GF @BBL P2S", - "inherits": "Generic PPA-GF @base", - "from": "system", - "setting_id": "GFSN96_03", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PPA-GF @BBL P2S", + "inherits": "Generic PPA-GF @base", + "from": "system", + "setting_id": "GFSN96_03", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-GF @BBL X1C.json b/resources/profiles/BBL/filament/Generic PPA-GF @BBL X1C.json index e9bf8354f6..af08fdb97e 100644 --- a/resources/profiles/BBL/filament/Generic PPA-GF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Generic PPA-GF @BBL X1C.json @@ -1,130 +1,57 @@ { - "type": "filament", - "name": "Generic PPA-GF @BBL X1C", - "inherits": "Generic PPA-GF @base", - "from": "system", - "setting_id": "GFSN96_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 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.6 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PPA-GF @BBL X1C", + "inherits": "Generic PPA-GF @base", + "from": "system", + "setting_id": "GFSN96_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 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.6 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-GF @BBL X1E.json b/resources/profiles/BBL/filament/Generic PPA-GF @BBL X1E.json index 40de09a1db..2b921dee14 100644 --- a/resources/profiles/BBL/filament/Generic PPA-GF @BBL X1E.json +++ b/resources/profiles/BBL/filament/Generic PPA-GF @BBL X1E.json @@ -1,124 +1,51 @@ { - "type": "filament", - "name": "Generic PPA-GF @BBL X1E", - "inherits": "Generic PPA-GF @base", - "from": "system", - "setting_id": "GFSN96_01", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle" - ] -} + "type": "filament", + "name": "Generic PPA-GF @BBL X1E", + "inherits": "Generic PPA-GF @base", + "from": "system", + "setting_id": "GFSN96_01", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-GF @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PPA-GF @BBL X2D 0.4 nozzle.json index faa187791e..f7f2359921 100644 --- a/resources/profiles/BBL/filament/Generic PPA-GF @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PPA-GF @BBL X2D 0.4 nozzle.json @@ -1,266 +1,87 @@ { - "type": "filament", - "name": "Generic PPA-GF @BBL X2D 0.4 nozzle", - "inherits": "Generic PPA-GF @base", - "from": "system", - "setting_id": "GFSN96_05", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "0.96", - "0.96", - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "290" - ], - "nozzle_temperature": [ - "290", - "290", - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290", - "290", - "290" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PPA-GF @BBL X2D 0.4 nozzle", + "inherits": "Generic PPA-GF @base", + "from": "system", + "setting_id": "GFSN96_05", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290", + "290", + "290" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-GF @BBL X2D.json b/resources/profiles/BBL/filament/Generic PPA-GF @BBL X2D.json index dafb6822f0..57ac55b20d 100644 --- a/resources/profiles/BBL/filament/Generic PPA-GF @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PPA-GF @BBL X2D.json @@ -1,267 +1,88 @@ { - "type": "filament", - "name": "Generic PPA-GF @BBL X2D", - "inherits": "Generic PPA-GF @base", - "from": "system", - "setting_id": "GFSN96_06", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "3", - "3", - "4", - "4" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "chamber_temperatures": [ - "60" - ], - "filament_flow_ratio": [ - "0.96", - "0.96", - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "6", - "6", - "6", - "6" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "290" - ], - "nozzle_temperature": [ - "290", - "290", - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290", - "290", - "290" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PPA-GF @BBL X2D", + "inherits": "Generic PPA-GF @base", + "from": "system", + "setting_id": "GFSN96_06", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96", + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "6", + "6", + "6", + "6", + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "290" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "290", + "290", + "290", + "290", + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290", + "290", + "290", + "290", + "290" + ], + "retraction_distances_when_ec": [ + "3", + "3", + "3", + "4", + "4", + "4" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPA-GF @base.json b/resources/profiles/BBL/filament/Generic PPA-GF @base.json index 72ff99cd16..06129b286a 100644 --- a/resources/profiles/BBL/filament/Generic PPA-GF @base.json +++ b/resources/profiles/BBL/filament/Generic PPA-GF @base.json @@ -1,17 +1,17 @@ { - "type": "filament", - "name": "Generic PPA-GF @base", - "inherits": "fdm_filament_ppa", - "from": "system", - "filament_id": "OF8Tlg47", - "instantiation": "false", - "filament_max_volumetric_speed": [ - "6" - ], - "filament_type": [ - "PPA-GF" - ], - "filament_vendor": [ - "Generic" - ] -} + "type": "filament", + "name": "Generic PPA-GF @base", + "inherits": "fdm_filament_ppa", + "from": "system", + "filament_id": "OF8Tlg47", + "instantiation": "false", + "filament_max_volumetric_speed": [ + "6" + ], + "filament_type": [ + "PPA-GF" + ], + "filament_vendor": [ + "Generic" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPS @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PPS @BBL H2C 0.4 nozzle.json index 145ea2ecd6..2367b12fbb 100644 --- a/resources/profiles/BBL/filament/Generic PPS @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PPS @BBL H2C 0.4 nozzle.json @@ -1,171 +1,83 @@ { - "type": "filament", - "name": "Generic PPS @BBL H2C 0.4 nozzle", - "inherits": "Generic PPS @base", - "from": "system", - "setting_id": "GFST97_03", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "4", - "4" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "280", - "280" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "temperature_vitrification": [ - "80" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PPS @BBL H2C 0.4 nozzle", + "inherits": "Generic PPS @base", + "from": "system", + "setting_id": "GFST97_03", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "4", + "4", + "4" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "280", + "280", + "280" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "320", + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320", + "320" + ], + "temperature_vitrification": [ + "80" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPS @BBL H2C.json b/resources/profiles/BBL/filament/Generic PPS @BBL H2C.json index 5f90d205f1..5240e7ba6b 100644 --- a/resources/profiles/BBL/filament/Generic PPS @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PPS @BBL H2C.json @@ -1,172 +1,84 @@ { - "type": "filament", - "name": "Generic PPS @BBL H2C", - "inherits": "Generic PPS @base", - "from": "system", - "setting_id": "GFST97_04", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "4", - "4" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "280", - "280" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "temperature_vitrification": [ - "80" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PPS @BBL H2C", + "inherits": "Generic PPS @base", + "from": "system", + "setting_id": "GFST97_04", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "4", + "4", + "4" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "280", + "280", + "280" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "320", + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320", + "320" + ], + "temperature_vitrification": [ + "80" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPS @BBL H2D.json b/resources/profiles/BBL/filament/Generic PPS @BBL H2D.json index be9c5e6cd0..092e0834f5 100644 --- a/resources/profiles/BBL/filament/Generic PPS @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PPS @BBL H2D.json @@ -1,127 +1,52 @@ { - "type": "filament", - "name": "Generic PPS @BBL H2D", - "inherits": "Generic PPS @base", - "from": "system", - "setting_id": "GFST97_01", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "4", - "4" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PPS @BBL H2D", + "inherits": "Generic PPS @base", + "from": "system", + "setting_id": "GFST97_01", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "4", + "4", + "4" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "320", + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320", + "320" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPS @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PPS @BBL H2DP.json index c289624213..8b260eb50d 100644 --- a/resources/profiles/BBL/filament/Generic PPS @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PPS @BBL H2DP.json @@ -1,127 +1,46 @@ { - "type": "filament", - "name": "Generic PPS @BBL H2DP", - "inherits": "Generic PPS @base", - "from": "system", - "setting_id": "GFST97_02", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "4", - "4" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PPS @BBL H2DP", + "inherits": "Generic PPS @base", + "from": "system", + "setting_id": "GFST97_02", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "4", + "4" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPS @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PPS @BBL H2S 0.4 nozzle.json index 21aa101939..0560dab8cb 100644 --- a/resources/profiles/BBL/filament/Generic PPS @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PPS @BBL H2S 0.4 nozzle.json @@ -1,127 +1,62 @@ { - "type": "filament", - "name": "Generic PPS @BBL H2S 0.4 nozzle", - "inherits": "Generic PPS @base", - "from": "system", - "setting_id": "GFST97_5", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "4", - "4" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "temperature_vitrification": [ - "80" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab H2S 0.4 nozzle" - ] -} + "type": "filament", + "name": "Generic PPS @BBL H2S 0.4 nozzle", + "inherits": "Generic PPS @base", + "from": "system", + "setting_id": "GFST97_5", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "4", + "4", + "4" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "320", + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320", + "320" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "temperature_vitrification": [ + "80" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPS @BBL X1E.json b/resources/profiles/BBL/filament/Generic PPS @BBL X1E.json index f9fb032496..deace32712 100644 --- a/resources/profiles/BBL/filament/Generic PPS @BBL X1E.json +++ b/resources/profiles/BBL/filament/Generic PPS @BBL X1E.json @@ -1,121 +1,44 @@ { - "type": "filament", - "name": "Generic PPS @BBL X1E", - "inherits": "Generic PPS @base", - "from": "system", - "setting_id": "GFST97_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "4", - "4" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle" - ] -} + "type": "filament", + "name": "Generic PPS @BBL X1E", + "inherits": "Generic PPS @base", + "from": "system", + "setting_id": "GFST97_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "4", + "4" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPS @base.json b/resources/profiles/BBL/filament/Generic PPS @base.json index 08ba73cba8..ab37ca10a9 100644 --- a/resources/profiles/BBL/filament/Generic PPS @base.json +++ b/resources/profiles/BBL/filament/Generic PPS @base.json @@ -1,9 +1,9 @@ { - "type": "filament", - "name": "Generic PPS @base", - "inherits": "fdm_filament_pps", - "from": "system", - "filament_id": "OFq9svOz", + "type": "filament", + "name": "Generic PPS @base", + "inherits": "fdm_filament_pps", + "from": "system", + "filament_id": "OFq9svOz", "instantiation": "false", "filament_dev_chamber_drying_bed_temperature": [ "90" @@ -26,4 +26,4 @@ "filament_dev_drying_softening_temperature": [ "85" ] -} +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2C 0.4 nozzle.json index 379b9fb35b..0d472038c0 100644 --- a/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2C 0.4 nozzle.json @@ -1,168 +1,80 @@ { - "type": "filament", - "name": "Generic PPS-CF @BBL H2C 0.4 nozzle", - "inherits": "Generic PPS-CF @base", - "from": "system", - "setting_id": "GFST98_03", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "3", - "3" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "280", - "280" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PPS-CF @BBL H2C 0.4 nozzle", + "inherits": "Generic PPS-CF @base", + "from": "system", + "setting_id": "GFST98_03", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "3", + "3", + "3" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "280", + "280", + "280" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "320", + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320", + "320" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2C.json b/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2C.json index 3d2bf461d6..1f02c3f71f 100644 --- a/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2C.json @@ -1,172 +1,84 @@ { - "type": "filament", - "name": "Generic PPS-CF @BBL H2C", - "inherits": "Generic PPS-CF @base", - "from": "system", - "setting_id": "GFST98_04", - "instantiation": "true", - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "3", - "3" - ], - "filament_printable": [ - "1" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "280", - "280" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_min_speed": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PPS-CF @BBL H2C", + "inherits": "Generic PPS-CF @base", + "from": "system", + "setting_id": "GFST98_04", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "3", + "3", + "3" + ], + "filament_printable": [ + "1" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "280", + "280", + "280" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "320", + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320", + "320" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2D.json b/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2D.json index fe0564d6f6..ecdb04064c 100644 --- a/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2D.json @@ -1,130 +1,52 @@ { - "type": "filament", - "name": "Generic PPS-CF @BBL H2D", - "inherits": "Generic PPS-CF @base", - "from": "system", - "setting_id": "GFST98_01", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "3", - "3" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_printable": [ - "1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PPS-CF @BBL H2D", + "inherits": "Generic PPS-CF @base", + "from": "system", + "setting_id": "GFST98_01", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "3", + "3", + "3" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "320", + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320", + "320" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2DP.json index fae35ff81c..1b93a87945 100644 --- a/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2DP.json @@ -1,130 +1,46 @@ { - "type": "filament", - "name": "Generic PPS-CF @BBL H2DP", - "inherits": "Generic PPS-CF @base", - "from": "system", - "setting_id": "GFST98_02", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "3", - "3" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_printable": [ - "1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PPS-CF @BBL H2DP", + "inherits": "Generic PPS-CF @base", + "from": "system", + "setting_id": "GFST98_02", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "3", + "3" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2S 0.4 nozzle.json index 07c077e7c7..634e11b2d5 100644 --- a/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PPS-CF @BBL H2S 0.4 nozzle.json @@ -1,124 +1,59 @@ { - "type": "filament", - "name": "Generic PPS-CF @BBL H2S 0.4 nozzle", - "inherits": "Generic PPS-CF @base", - "from": "system", - "setting_id": "GFST98_5", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "3", - "3" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle" - ] -} + "type": "filament", + "name": "Generic PPS-CF @BBL H2S 0.4 nozzle", + "inherits": "Generic PPS-CF @base", + "from": "system", + "setting_id": "GFST98_5", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "3", + "3", + "3" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "320", + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320", + "320" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPS-CF @BBL X1E.json b/resources/profiles/BBL/filament/Generic PPS-CF @BBL X1E.json index e08e2589b6..a0ef51c9a4 100644 --- a/resources/profiles/BBL/filament/Generic PPS-CF @BBL X1E.json +++ b/resources/profiles/BBL/filament/Generic PPS-CF @BBL X1E.json @@ -1,121 +1,44 @@ { - "type": "filament", - "name": "Generic PPS-CF @BBL X1E", - "inherits": "Generic PPS-CF @base", - "from": "system", - "setting_id": "GFST98_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "3", - "3" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "320", - "320" - ], - "nozzle_temperature_initial_layer": [ - "320", - "320" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle" - ] -} + "type": "filament", + "name": "Generic PPS-CF @BBL X1E", + "inherits": "Generic PPS-CF @base", + "from": "system", + "setting_id": "GFST98_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3", + "3" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "320", + "320" + ], + "nozzle_temperature_initial_layer": [ + "320", + "320" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PPS-CF @base.json b/resources/profiles/BBL/filament/Generic PPS-CF @base.json index 76aab2de8b..975c8f7da8 100644 --- a/resources/profiles/BBL/filament/Generic PPS-CF @base.json +++ b/resources/profiles/BBL/filament/Generic PPS-CF @base.json @@ -1,36 +1,36 @@ { - "type": "filament", - "name": "Generic PPS-CF @base", - "inherits": "fdm_filament_pps", - "from": "system", - "filament_id": "OF6rdQ6M", - "instantiation": "false", - "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", - "fan_max_speed": [ - "30" - ], - "filament_cost": [ - "240" - ], - "filament_density": [ - "1.26" - ], - "filament_max_volumetric_speed": [ - "3" - ], - "filament_type": [ - "PPS-CF" - ], - "impact_strength_z": [ - "5.7" - ], - "nozzle_temperature_range_low": [ - "310" - ], - "required_nozzle_HRC": [ - "40" - ], - "temperature_vitrification": [ - "220" - ] -} + "type": "filament", + "name": "Generic PPS-CF @base", + "inherits": "fdm_filament_pps", + "from": "system", + "filament_id": "OF6rdQ6M", + "instantiation": "false", + "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", + "fan_max_speed": [ + "30" + ], + "filament_cost": [ + "240" + ], + "filament_density": [ + "1.26" + ], + "filament_max_volumetric_speed": [ + "3" + ], + "filament_type": [ + "PPS-CF" + ], + "impact_strength_z": [ + "5.7" + ], + "nozzle_temperature_range_low": [ + "310" + ], + "required_nozzle_HRC": [ + "40" + ], + "temperature_vitrification": [ + "220" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PVA @0.2 nozzle.json index 080de810fe..6df4727ea0 100644 --- a/resources/profiles/BBL/filament/Generic PVA @0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PVA @0.2 nozzle.json @@ -1,17 +1,17 @@ { - "type": "filament", - "name": "Generic PVA @0.2 nozzle", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "0.5" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PVA @0.2 nozzle", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "0.5" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PVA @BBL A1 0.2 nozzle.json index 259c55f6c5..57fca27585 100644 --- a/resources/profiles/BBL/filament/Generic PVA @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PVA @BBL A1 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "Generic PVA @BBL A1 0.2 nozzle", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "0.5" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PVA @BBL A1 0.2 nozzle", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "0.5" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL A1.json b/resources/profiles/BBL/filament/Generic PVA @BBL A1.json index 7ebecdda54..5e02d05a2e 100644 --- a/resources/profiles/BBL/filament/Generic PVA @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic PVA @BBL A1.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "Generic PVA @BBL A1", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PVA @BBL A1", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PVA @BBL A1M 0.2 nozzle.json index 7aac5b9503..d57e6fd726 100644 --- a/resources/profiles/BBL/filament/Generic PVA @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PVA @BBL A1M 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "Generic PVA @BBL A1M 0.2 nozzle", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_02", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "0.5" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PVA @BBL A1M 0.2 nozzle", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "0.5" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL A1M.json b/resources/profiles/BBL/filament/Generic PVA @BBL A1M.json index ebed9d4282..fa3e915260 100644 --- a/resources/profiles/BBL/filament/Generic PVA @BBL A1M.json +++ b/resources/profiles/BBL/filament/Generic PVA @BBL A1M.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "Generic PVA @BBL A1M", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_01", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle", - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "filament", + "name": "Generic PVA @BBL A1M", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_01", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PVA @BBL A2L 0.2 nozzle.json index 66a2cd7851..f0775269ed 100644 --- a/resources/profiles/BBL/filament/Generic PVA @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PVA @BBL A2L 0.2 nozzle.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "Generic PVA @BBL A2L 0.2 nozzle", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_19", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "0.5" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "slow_down_min_speed": [ - "40" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.2 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PVA @BBL A2L 0.2 nozzle", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_19", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "0.5" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "40" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.2 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL A2L.json b/resources/profiles/BBL/filament/Generic PVA @BBL A2L.json index 59cbcc89e4..c1d62b6e47 100644 --- a/resources/profiles/BBL/filament/Generic PVA @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic PVA @BBL A2L.json @@ -1,43 +1,43 @@ { - "type": "filament", - "name": "Generic PVA @BBL A2L", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_20", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic PVA @BBL A2L", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_20", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PVA @BBL H2C 0.2 nozzle.json index 914e544994..353ade784e 100644 --- a/resources/profiles/BBL/filament/Generic PVA @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PVA @BBL H2C 0.2 nozzle.json @@ -1,174 +1,81 @@ { - "type": "filament", - "name": "Generic PVA @BBL H2C 0.2 nozzle", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_16", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PVA @BBL H2C 0.2 nozzle", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_16", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PVA @BBL H2C 0.4 nozzle.json index b8e2d6bb77..cb03660318 100644 --- a/resources/profiles/BBL/filament/Generic PVA @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PVA @BBL H2C 0.4 nozzle.json @@ -1,174 +1,91 @@ { - "type": "filament", - "name": "Generic PVA @BBL H2C 0.4 nozzle", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_17", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PVA @BBL H2C 0.4 nozzle", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_17", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL H2C.json b/resources/profiles/BBL/filament/Generic PVA @BBL H2C.json index 3d4ad8d48f..fed6a86989 100644 --- a/resources/profiles/BBL/filament/Generic PVA @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic PVA @BBL H2C.json @@ -1,175 +1,92 @@ { - "type": "filament", - "name": "Generic PVA @BBL H2C", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_18", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature_nc": [ - "180", - "180" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "1", - "1" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PVA @BBL H2C", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_18", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature_nc": [ + "180", + "180", + "180" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "1", + "1", + "1" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL H2D.json b/resources/profiles/BBL/filament/Generic PVA @BBL H2D.json index 3cce41a26a..ce5386eb2c 100644 --- a/resources/profiles/BBL/filament/Generic PVA @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic PVA @BBL H2D.json @@ -1,133 +1,63 @@ { - "type": "filament", - "name": "Generic PVA @BBL H2D", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_06", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PVA @BBL H2D", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_06", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL H2DP.json b/resources/profiles/BBL/filament/Generic PVA @BBL H2DP.json index ea0845834b..cac607510c 100644 --- a/resources/profiles/BBL/filament/Generic PVA @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic PVA @BBL H2DP.json @@ -1,133 +1,56 @@ { - "type": "filament", - "name": "Generic PVA @BBL H2DP", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_12", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic PVA @BBL H2DP", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_12", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL H2S 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PVA @BBL H2S 0.4 nozzle.json index 8b3a377650..89d27ee442 100644 --- a/resources/profiles/BBL/filament/Generic PVA @BBL H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PVA @BBL H2S 0.4 nozzle.json @@ -1,133 +1,68 @@ { - "type": "filament", - "name": "Generic PVA @BBL H2S 0.4 nozzle", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_21", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PVA @BBL H2S 0.4 nozzle", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_21", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PVA @BBL P2S 0.2 nozzle.json index af1f76b082..82438b0930 100644 --- a/resources/profiles/BBL/filament/Generic PVA @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PVA @BBL P2S 0.2 nozzle.json @@ -1,171 +1,62 @@ { - "type": "filament", - "name": "Generic PVA @BBL P2S 0.2 nozzle", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_07", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PVA @BBL P2S 0.2 nozzle", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_07", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL P2S.json b/resources/profiles/BBL/filament/Generic PVA @BBL P2S.json index cfda7a8aee..5fa57d0e6c 100644 --- a/resources/profiles/BBL/filament/Generic PVA @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic PVA @BBL P2S.json @@ -1,173 +1,68 @@ { - "type": "filament", - "name": "Generic PVA @BBL P2S", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_08", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PVA @BBL P2S", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_08", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Generic PVA @BBL X2D 0.2 nozzle.json index 2a197b4591..6421feeb00 100644 --- a/resources/profiles/BBL/filament/Generic PVA @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PVA @BBL X2D 0.2 nozzle.json @@ -1,272 +1,83 @@ { - "type": "filament", - "name": "Generic PVA @BBL X2D 0.2 nozzle", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_13", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3", - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5", - "0.5", - "0.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PVA @BBL X2D 0.2 nozzle", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_13", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_flush_volumetric_speed": [ + "3", + "3", + "3", + "3" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5", + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic PVA @BBL X2D 0.4 nozzle.json index 214e64453a..ec9ef88cbf 100644 --- a/resources/profiles/BBL/filament/Generic PVA @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic PVA @BBL X2D 0.4 nozzle.json @@ -1,272 +1,93 @@ { - "type": "filament", - "name": "Generic PVA @BBL X2D 0.4 nozzle", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_14", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "16", - "16", - "16", - "16" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PVA @BBL X2D 0.4 nozzle", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_14", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @BBL X2D.json b/resources/profiles/BBL/filament/Generic PVA @BBL X2D.json index 3e624721ef..4dcf0b2b02 100644 --- a/resources/profiles/BBL/filament/Generic PVA @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic PVA @BBL X2D.json @@ -1,273 +1,94 @@ { - "type": "filament", - "name": "Generic PVA @BBL X2D", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_15", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20", - "20", - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_flow_ratio": [ - "0.95", - "0.95", - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "16", - "16", - "16", - "16" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "220" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "220", - "220", - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220", - "220", - "220" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic PVA @BBL X2D", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_15", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95", + "0.95", + "0.95", + "0.95" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16", + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_tower_interface_print_temp": [ + "220" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220", + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20", + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA @base.json b/resources/profiles/BBL/filament/Generic PVA @base.json index 4021f07f45..5acf0e1856 100644 --- a/resources/profiles/BBL/filament/Generic PVA @base.json +++ b/resources/profiles/BBL/filament/Generic PVA @base.json @@ -1,21 +1,21 @@ { - "type": "filament", - "name": "Generic PVA @base", - "inherits": "fdm_filament_pva", - "from": "system", - "filament_id": "OFDvXujf", - "instantiation": "false", - "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.", - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "slow_down_layer_time": [ - "7" - ], - "slow_down_min_speed": [ - "20" - ] -} + "type": "filament", + "name": "Generic PVA @base", + "inherits": "fdm_filament_pva", + "from": "system", + "filament_id": "OFDvXujf", + "instantiation": "false", + "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.", + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "slow_down_layer_time": [ + "7" + ], + "slow_down_min_speed": [ + "20" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic PVA.json b/resources/profiles/BBL/filament/Generic PVA.json index 33fac4bccc..7db3aac32b 100644 --- a/resources/profiles/BBL/filament/Generic PVA.json +++ b/resources/profiles/BBL/filament/Generic PVA.json @@ -1,22 +1,22 @@ { - "type": "filament", - "name": "Generic PVA", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PVA", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic SBS @base.json b/resources/profiles/BBL/filament/Generic SBS @base.json deleted file mode 100644 index fbf9b8a403..0000000000 --- a/resources/profiles/BBL/filament/Generic SBS @base.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "filament", - "name": "Generic SBS @base", - "inherits": "fdm_filament_sbs", - "from": "system", - "filament_id": "OFhQfUQY", - "instantiation": "false", - "filament_flow_ratio": [ - "0.98" - ], - "slow_down_layer_time": [ - "4" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif};Prevent PLA from jamming\n\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} diff --git a/resources/profiles/BBL/filament/Generic SBS.json b/resources/profiles/BBL/filament/Generic SBS.json deleted file mode 100644 index ffa36a9abb..0000000000 --- a/resources/profiles/BBL/filament/Generic SBS.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "type": "filament", - "name": "Generic SBS", - "inherits": "Generic SBS @base", - "from": "system", - "setting_id": "BFLSBS99-1", - "filament_id": "OFhQfUQY", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}" - ] -} diff --git a/resources/profiles/BBL/filament/Generic TPU @BBL A1.json b/resources/profiles/BBL/filament/Generic TPU @BBL A1.json index 952f31983e..9fbe338a57 100644 --- a/resources/profiles/BBL/filament/Generic TPU @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic TPU @BBL A1.json @@ -1,28 +1,28 @@ { - "type": "filament", - "name": "Generic TPU @BBL A1", - "inherits": "Generic TPU", - "from": "system", - "setting_id": "GFSU99_01", - "instantiation": "true", - "hot_plate_temp": [ - "45" - ], - "hot_plate_temp_initial_layer": [ - "45" - ], - "textured_plate_temp": [ - "45" - ], - "textured_plate_temp_initial_layer": [ - "45" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif} \n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Generic TPU @BBL A1", + "inherits": "Generic TPU", + "from": "system", + "setting_id": "GFSU99_01", + "instantiation": "true", + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "45" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif} \n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU @BBL A1M.json b/resources/profiles/BBL/filament/Generic TPU @BBL A1M.json index 15df2926d1..d5caa5640a 100644 --- a/resources/profiles/BBL/filament/Generic TPU @BBL A1M.json +++ b/resources/profiles/BBL/filament/Generic TPU @BBL A1M.json @@ -1,28 +1,28 @@ { - "type": "filament", - "name": "Generic TPU @BBL A1M", - "inherits": "Generic TPU", - "from": "system", - "setting_id": "GFSU99_00", - "instantiation": "true", - "hot_plate_temp": [ - "30" - ], - "hot_plate_temp_initial_layer": [ - "30" - ], - "textured_plate_temp": [ - "30" - ], - "textured_plate_temp_initial_layer": [ - "30" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif} \n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Generic TPU @BBL A1M", + "inherits": "Generic TPU", + "from": "system", + "setting_id": "GFSU99_00", + "instantiation": "true", + "hot_plate_temp": [ + "30" + ], + "hot_plate_temp_initial_layer": [ + "30" + ], + "textured_plate_temp": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "30" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif} \n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU @BBL A2L.json b/resources/profiles/BBL/filament/Generic TPU @BBL A2L.json index 2942151d52..5b5848d0f9 100644 --- a/resources/profiles/BBL/filament/Generic TPU @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic TPU @BBL A2L.json @@ -1,31 +1,31 @@ { - "type": "filament", - "name": "Generic TPU @BBL A2L", - "inherits": "Generic TPU", - "from": "system", - "setting_id": "GFSU99_10", - "instantiation": "true", - "hot_plate_temp": [ - "30" - ], - "hot_plate_temp_initial_layer": [ - "30" - ], - "pre_start_fan_time": [ - "2" - ], - "textured_plate_temp": [ - "30" - ], - "textured_plate_temp_initial_layer": [ - "30" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic TPU @BBL A2L", + "inherits": "Generic TPU", + "from": "system", + "setting_id": "GFSU99_10", + "instantiation": "true", + "hot_plate_temp": [ + "30" + ], + "hot_plate_temp_initial_layer": [ + "30" + ], + "pre_start_fan_time": [ + "2" + ], + "textured_plate_temp": [ + "30" + ], + "textured_plate_temp_initial_layer": [ + "30" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic TPU @BBL H2C 0.4 nozzle.json index a977e63e1a..9dda2e9f85 100644 --- a/resources/profiles/BBL/filament/Generic TPU @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic TPU @BBL H2C 0.4 nozzle.json @@ -1,183 +1,125 @@ { - "type": "filament", - "name": "Generic TPU @BBL H2C 0.4 nozzle", - "inherits": "Generic TPU @base", - "from": "system", - "setting_id": "GFSU99_08", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "3.2", - "3.2" - ], - "filament_ramming_volumetric_speed": [ - "0.8", - "0.8" - ], - "filament_ramming_volumetric_speed_nc": [ - "0.8", - "0.8" - ], - "filament_printable": [ - "2" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature": [ - "210", - "210" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_ramming_travel_time_nc": [ - "20", - "20" - ], - "filament_retract_length_nc": [ - "10", - "10" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic TPU @BBL H2C 0.4 nozzle", + "inherits": "Generic TPU @base", + "from": "system", + "setting_id": "GFSU99_08", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3.2", + "3.2", + "3.2" + ], + "filament_ramming_volumetric_speed": [ + "0.8", + "0.8", + "0.8" + ], + "filament_ramming_volumetric_speed_nc": [ + "0.8", + "0.8", + "0.8" + ], + "filament_printable": [ + "2" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature": [ + "210", + "210", + "210" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190", + "190" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "20", + "20", + "20" + ], + "filament_retract_length_nc": [ + "10", + "10", + "10" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU @BBL H2C.json b/resources/profiles/BBL/filament/Generic TPU @BBL H2C.json index d7ad1a41ab..063f446f6d 100644 --- a/resources/profiles/BBL/filament/Generic TPU @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic TPU @BBL H2C.json @@ -1,184 +1,126 @@ { - "type": "filament", - "name": "Generic TPU @BBL H2C", - "inherits": "Generic TPU @base", - "from": "system", - "setting_id": "GFSU99_09", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "3.2", - "3.2" - ], - "filament_ramming_volumetric_speed": [ - "0.8", - "0.8" - ], - "filament_ramming_volumetric_speed_nc": [ - "0.8", - "0.8" - ], - "filament_printable": [ - "2" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature": [ - "210", - "210" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_ramming_travel_time_nc": [ - "20", - "20" - ], - "filament_retract_length_nc": [ - "10", - "10" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "pre_start_fan_time": [ - "2" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic TPU @BBL H2C", + "inherits": "Generic TPU @base", + "from": "system", + "setting_id": "GFSU99_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3.2", + "3.2", + "3.2" + ], + "filament_ramming_volumetric_speed": [ + "0.8", + "0.8", + "0.8" + ], + "filament_ramming_volumetric_speed_nc": [ + "0.8", + "0.8", + "0.8" + ], + "filament_printable": [ + "2" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature": [ + "210", + "210", + "210" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190", + "190" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "20", + "20", + "20" + ], + "filament_retract_length_nc": [ + "10", + "10", + "10" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "pre_start_fan_time": [ + "2" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU @BBL H2D.json b/resources/profiles/BBL/filament/Generic TPU @BBL H2D.json index 12844a54e6..1d2e1a447d 100644 --- a/resources/profiles/BBL/filament/Generic TPU @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic TPU @BBL H2D.json @@ -1,166 +1,286 @@ { - "type": "filament", - "name": "Generic TPU @BBL H2D", - "inherits": "Generic TPU @base", - "from": "system", - "setting_id": "GFSU99_02", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "3.2", - "3.2", - "3.2" - ], - "filament_ramming_volumetric_speed": [ - "0.8", - "0.8", - "0.8" - ], - "filament_printable": [ - "2" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Direct Drive TPU High Flow" - ], - "filament_pre_cooling_temperature": [ - "210", - "210", - "210" - ], - "filament_ramming_travel_time": [ - "20", - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1" - ], - "nozzle_temperature": [ - "240", - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic TPU @BBL H2D", + "inherits": "Generic TPU @base", + "from": "system", + "setting_id": "GFSU99_02", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "3.2", + "3.2", + "3.2", + "3.2" + ], + "filament_ramming_volumetric_speed": [ + "0.8", + "0.8", + "0.8", + "0.8" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_printable": [ + "2" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive TPU High Flow", + "Direct Drive E3D High Flow" + ], + "filament_pre_cooling_temperature": [ + "210", + "210", + "210", + "210" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10", + "10" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU @BBL H2DP.json b/resources/profiles/BBL/filament/Generic TPU @BBL H2DP.json index d5801a1b6a..456941431d 100644 --- a/resources/profiles/BBL/filament/Generic TPU @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic TPU @BBL H2DP.json @@ -1,166 +1,244 @@ { - "type": "filament", - "name": "Generic TPU @BBL H2DP", - "inherits": "Generic TPU @base", - "from": "system", - "setting_id": "GFSU99_06", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "3.2", - "3.2", - "3.2" - ], - "filament_ramming_volumetric_speed": [ - "0.8", - "0.8", - "0.8" - ], - "filament_printable": [ - "2" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Direct Drive TPU High Flow" - ], - "filament_pre_cooling_temperature": [ - "210", - "210", - "210" - ], - "filament_ramming_travel_time": [ - "20", - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1" - ], - "nozzle_temperature": [ - "240", - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic TPU @BBL H2DP", + "inherits": "Generic TPU @base", + "from": "system", + "setting_id": "GFSU99_06", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0" + ], + "filament_bridge_speed": [ + "25", + "25", + "25" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive TPU High Flow" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_flush_temp": [ + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "3.2", + "3.2", + "3.2" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10" + ], + "filament_pre_cooling_temperature": [ + "210", + "210", + "210" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0" + ], + "filament_printable": [ + "2" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "0.8", + "0.8", + "0.8" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1" + ], + "nozzle_temperature": [ + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "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.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU @BBL H2S.json b/resources/profiles/BBL/filament/Generic TPU @BBL H2S.json index 0743eec7b2..be7f778869 100644 --- a/resources/profiles/BBL/filament/Generic TPU @BBL H2S.json +++ b/resources/profiles/BBL/filament/Generic TPU @BBL H2S.json @@ -1,139 +1,81 @@ { - "type": "filament", - "name": "Generic TPU @BBL H2S", - "inherits": "Generic TPU", - "from": "system", - "setting_id": "GFSU99_04", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "3.2", - "3.2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic TPU @BBL H2S", + "inherits": "Generic TPU", + "from": "system", + "setting_id": "GFSU99_04", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3.2", + "3.2", + "3.2" + ], + "filament_retraction_length": [ + "nil", + "0.4", + "nil" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU @BBL P2S.json b/resources/profiles/BBL/filament/Generic TPU @BBL P2S.json index a977d6b8bc..44d4036ade 100644 --- a/resources/profiles/BBL/filament/Generic TPU @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic TPU @BBL P2S.json @@ -1,173 +1,73 @@ { - "type": "filament", - "name": "Generic TPU @BBL P2S", - "inherits": "Generic TPU @base", - "from": "system", - "setting_id": "GFSU99_05", - "instantiation": "true", - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "3.2", - "3.2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic TPU @BBL P2S", + "inherits": "Generic TPU @base", + "from": "system", + "setting_id": "GFSU99_05", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3.2", + "3.2", + "3.2" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic TPU @BBL X2D 0.4 nozzle.json index c971cba747..79590069a8 100644 --- a/resources/profiles/BBL/filament/Generic TPU @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic TPU @BBL X2D 0.4 nozzle.json @@ -1,275 +1,96 @@ { - "type": "filament", - "name": "Generic TPU @BBL X2D 0.4 nozzle", - "inherits": "Generic TPU @base", - "from": "system", - "setting_id": "GFSU99_03", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "3.2", - "3.2", - "3.2", - "3.2" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "240" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "240", - "240", - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240", - "240", - "240" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic TPU @BBL X2D 0.4 nozzle", + "inherits": "Generic TPU @base", + "from": "system", + "setting_id": "GFSU99_03", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3.2", + "3.2", + "3.2", + "3.2", + "3.2", + "3.2" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4", + "0.4", + "0.4" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU @BBL X2D.json b/resources/profiles/BBL/filament/Generic TPU @BBL X2D.json index af94c4486d..4b77f2207d 100644 --- a/resources/profiles/BBL/filament/Generic TPU @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic TPU @BBL X2D.json @@ -1,276 +1,97 @@ { - "type": "filament", - "name": "Generic TPU @BBL X2D", - "inherits": "Generic TPU @base", - "from": "system", - "setting_id": "GFSU99_07", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.4", - "0.4", - "0.4", - "0.4" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "3.2", - "3.2", - "3.2", - "3.2" - ], - "filament_printable": [ - "1" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "240" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "240", - "240", - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240", - "240", - "240" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic TPU @BBL X2D", + "inherits": "Generic TPU @base", + "from": "system", + "setting_id": "GFSU99_07", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "3.2", + "3.2", + "3.2", + "3.2", + "3.2", + "3.2" + ], + "filament_printable": [ + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4", + "0.4", + "0.4" + ], + "filament_tower_interface_print_temp": [ + "240" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "240", + "240", + "240", + "240", + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240", + "240", + "240", + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU @base.json b/resources/profiles/BBL/filament/Generic TPU @base.json index f2bc7049aa..86ed3103b3 100644 --- a/resources/profiles/BBL/filament/Generic TPU @base.json +++ b/resources/profiles/BBL/filament/Generic TPU @base.json @@ -1,15 +1,15 @@ { - "type": "filament", - "name": "Generic TPU @base", - "inherits": "fdm_filament_tpu", - "from": "system", - "filament_id": "OFgbpcy9", - "instantiation": "false", - "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.", - "filament_max_volumetric_speed": [ - "3.2" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif} \n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Generic TPU @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "OFgbpcy9", + "instantiation": "false", + "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.", + "filament_max_volumetric_speed": [ + "3.2" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif} \n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL A1.json b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL A1.json index 30326518b1..b73d35817b 100644 --- a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL A1.json +++ b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL A1.json @@ -1,28 +1,28 @@ { - "type": "filament", - "name": "Generic TPU for AMS @BBL A1", - "inherits": "Generic TPU for AMS @base", - "from": "system", - "setting_id": "GFSU98_02", - "instantiation": "true", - "fan_cooling_layer_time": [ - "40" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "10" - ], - "overhang_fan_threshold": [ - "25%" - ], - "slow_down_layer_time": [ - "10" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic TPU for AMS @BBL A1", + "inherits": "Generic TPU for AMS @base", + "from": "system", + "setting_id": "GFSU98_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL A1M.json b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL A1M.json index 298a55fe21..bcb504c038 100644 --- a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL A1M.json +++ b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL A1M.json @@ -1,28 +1,28 @@ { - "type": "filament", - "name": "Generic TPU for AMS @BBL A1M", - "inherits": "Generic TPU for AMS @base", - "from": "system", - "setting_id": "GFSU98_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "40" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "10" - ], - "overhang_fan_threshold": [ - "25%" - ], - "slow_down_layer_time": [ - "10" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.8 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "filament", + "name": "Generic TPU for AMS @BBL A1M", + "inherits": "Generic TPU for AMS @base", + "from": "system", + "setting_id": "GFSU98_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL A2L.json b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL A2L.json index 7c76a301d8..93a62334f4 100644 --- a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL A2L.json +++ b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL A2L.json @@ -1,34 +1,34 @@ { - "type": "filament", - "name": "Generic TPU for AMS @BBL A2L", - "inherits": "Generic TPU for AMS @base", - "from": "system", - "setting_id": "GFSU98_12", - "instantiation": "true", - "fan_cooling_layer_time": [ - "40" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "10" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "10" - ], - "compatible_printers": [ - "Bambu Lab A2L 0.4 nozzle", - "Bambu Lab A2L 0.6 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ], - "filament_start_gcode": [ - "" - ] -} + "type": "filament", + "name": "Generic TPU for AMS @BBL A2L", + "inherits": "Generic TPU for AMS @base", + "from": "system", + "setting_id": "GFSU98_12", + "instantiation": "true", + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab A2L 0.4 nozzle", + "Bambu Lab A2L 0.6 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "filament_start_gcode": [ + "" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2C 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2C 0.4 nozzle.json index b2ba07c308..7232187281 100644 --- a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2C 0.4 nozzle.json @@ -1,195 +1,127 @@ { - "type": "filament", - "name": "Generic TPU for AMS @BBL H2C 0.4 nozzle", - "inherits": "Generic TPU for AMS @base", - "from": "system", - "setting_id": "GFSU98_10", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "fan_cooling_layer_time": [ - "40" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "10" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "10.5", - "10.5" - ], - "filament_ramming_volumetric_speed": [ - "2.63", - "2.63" - ], - "filament_ramming_volumetric_speed_nc": [ - "2.63", - "2.63" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature": [ - "200", - "200" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_ramming_travel_time_nc": [ - "20", - "20" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic TPU for AMS @BBL H2C 0.4 nozzle", + "inherits": "Generic TPU for AMS @base", + "from": "system", + "setting_id": "GFSU98_10", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5", + "10.5" + ], + "filament_ramming_volumetric_speed": [ + "2.63", + "2.63", + "2.63" + ], + "filament_ramming_volumetric_speed_nc": [ + "2.63", + "2.63", + "2.63" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature": [ + "200", + "200", + "200" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190", + "190" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "20", + "20", + "20" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2C.json b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2C.json index b60988cad2..4980e672f8 100644 --- a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2C.json +++ b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2C.json @@ -1,196 +1,128 @@ { - "type": "filament", - "name": "Generic TPU for AMS @BBL H2C", - "inherits": "Generic TPU for AMS @base", - "from": "system", - "setting_id": "GFSU98_11", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "fan_cooling_layer_time": [ - "40" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "10" - ], - "filament_cooling_before_tower": [ - "10", - "10" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "10.5", - "10.5" - ], - "filament_ramming_volumetric_speed": [ - "2.63", - "2.63" - ], - "filament_ramming_volumetric_speed_nc": [ - "2.63", - "2.63" - ], - "filament_prime_volume": [ - "30" - ], - "filament_prime_volume_nc": [ - "30" - ], - "filament_pre_cooling_temperature": [ - "200", - "200" - ], - "filament_pre_cooling_temperature_nc": [ - "190", - "190" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_ramming_travel_time_nc": [ - "20", - "20" - ], - "filament_change_length": [ - "4" - ], - "first_x_layer_fan_speed": [ - "0" - ], - "filament_change_length_nc": [ - "4" - ], - "filament_preheat_temperature_delta": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_retract_length_nc": [ - "14", - "14" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "overhang_fan_threshold": [ - "25%" - ], - "pre_start_fan_time": [ - "2" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20", - "20" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic TPU for AMS @BBL H2C", + "inherits": "Generic TPU for AMS @base", + "from": "system", + "setting_id": "GFSU98_11", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5", + "10.5" + ], + "filament_ramming_volumetric_speed": [ + "2.63", + "2.63", + "2.63" + ], + "filament_ramming_volumetric_speed_nc": [ + "2.63", + "2.63", + "2.63" + ], + "filament_prime_volume": [ + "30" + ], + "filament_prime_volume_nc": [ + "30" + ], + "filament_pre_cooling_temperature": [ + "200", + "200", + "200" + ], + "filament_pre_cooling_temperature_nc": [ + "190", + "190", + "190" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "filament_ramming_travel_time_nc": [ + "20", + "20", + "20" + ], + "filament_change_length": [ + "4" + ], + "first_x_layer_fan_speed": [ + "0" + ], + "filament_change_length_nc": [ + "4" + ], + "filament_preheat_temperature_delta": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "overhang_fan_threshold": [ + "25%" + ], + "pre_start_fan_time": [ + "2" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab H2C 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2D.json b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2D.json index f9e72de062..37f4f2ffa4 100644 --- a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2D.json +++ b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2D.json @@ -1,151 +1,86 @@ { - "type": "filament", - "name": "Generic TPU for AMS @BBL H2D", - "inherits": "Generic TPU for AMS @base", - "from": "system", - "setting_id": "GFSU98_04", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "fan_cooling_layer_time": [ - "40" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "10.5", - "10.5" - ], - "filament_ramming_volumetric_speed": [ - "2.625", - "2.625" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "200", - "200" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "overhang_fan_threshold": [ - "25%" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic TPU for AMS @BBL H2D", + "inherits": "Generic TPU for AMS @base", + "from": "system", + "setting_id": "GFSU98_04", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5", + "10.5" + ], + "filament_ramming_volumetric_speed": [ + "2.625", + "2.625", + "2.625" + ], + "filament_pre_cooling_temperature": [ + "200", + "200", + "200" + ], + "filament_ramming_travel_time": [ + "20", + "20", + "20" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2DP.json b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2DP.json index 287c6c798d..42f65f4680 100644 --- a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2DP.json @@ -1,151 +1,78 @@ { - "type": "filament", - "name": "Generic TPU for AMS @BBL H2DP", - "inherits": "Generic TPU for AMS @base", - "from": "system", - "setting_id": "GFSU98_08", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "fan_cooling_layer_time": [ - "40" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "10.5", - "10.5" - ], - "filament_ramming_volumetric_speed": [ - "2.625", - "2.625" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "200", - "200" - ], - "filament_ramming_travel_time": [ - "20", - "20" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "overhang_fan_threshold": [ - "25%" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic TPU for AMS @BBL H2DP", + "inherits": "Generic TPU for AMS @base", + "from": "system", + "setting_id": "GFSU98_08", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5" + ], + "filament_pre_cooling_temperature": [ + "200", + "200" + ], + "filament_ramming_travel_time": [ + "20", + "20" + ], + "filament_ramming_volumetric_speed": [ + "2.625", + "2.625" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2S.json b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2S.json index 00326a990e..7931394b1f 100644 --- a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2S.json +++ b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL H2S.json @@ -1,154 +1,101 @@ { - "type": "filament", - "name": "Generic TPU for AMS @BBL H2S", - "inherits": "Generic TPU for AMS @base", - "from": "system", - "setting_id": "GFSU98_06", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "100" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "fan_cooling_layer_time": [ - "40" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "0" - ], - "filament_max_volumetric_speed": [ - "10.5", - "10.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "overhang_fan_threshold": [ - "25%" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Generic TPU for AMS @BBL H2S", + "inherits": "Generic TPU for AMS @base", + "from": "system", + "setting_id": "GFSU98_06", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "100" + ], + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_long_retractions_when_cut": [ + "nil", + "0", + "nil" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5", + "10.5" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "0.8" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "overhang_fan_threshold": [ + "25%" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL P1P.json b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL P1P.json index f1c09c8b09..437aadfa54 100644 --- a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL P1P.json +++ b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL P1P.json @@ -1,139 +1,66 @@ { - "type": "filament", - "name": "Generic TPU for AMS @BBL P1P", - "inherits": "Generic TPU for AMS @base", - "from": "system", - "setting_id": "GFSU98_01", - "instantiation": "true", - "fan_cooling_layer_time": [ - "40" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "10" - ], - "filament_max_volumetric_speed": [ - "10.5", - "10.5" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "overhang_fan_threshold": [ - "25%" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle", - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic TPU for AMS @BBL P1P", + "inherits": "Generic TPU for AMS @base", + "from": "system", + "setting_id": "GFSU98_01", + "instantiation": "true", + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5" + ], + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "overhang_fan_threshold": [ + "25%" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL P2S.json b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL P2S.json index d4f073c08c..24c8b552fb 100644 --- a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL P2S.json +++ b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL P2S.json @@ -1,188 +1,88 @@ { - "type": "filament", - "name": "Generic TPU for AMS @BBL P2S", - "inherits": "Generic TPU for AMS @base", - "from": "system", - "setting_id": "GFSU98_07", - "instantiation": "true", - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "fan_cooling_layer_time": [ - "40" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "10.5", - "10.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0" - ], - "filament_enable_overhang_speed": [ - "1", - "1" - ], - "filament_overhang_1_4_speed": [ - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "overhang_fan_threshold": [ - "25%" - ], - "override_process_overhang_speed": [ - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic TPU for AMS @BBL P2S", + "inherits": "Generic TPU for AMS @base", + "from": "system", + "setting_id": "GFSU98_07", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5", + "10.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "0.8" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230" + ], + "overhang_fan_threshold": [ + "25%" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X1C.json b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X1C.json index 305bdcad8b..85b053a0cd 100644 --- a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X1C.json +++ b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X1C.json @@ -1,142 +1,69 @@ { - "type": "filament", - "name": "Generic TPU for AMS @BBL X1C", - "inherits": "Generic TPU for AMS @base", - "from": "system", - "setting_id": "GFSU98_00", - "instantiation": "true", - "fan_cooling_layer_time": [ - "40" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "10" - ], - "filament_max_volumetric_speed": [ - "10.5", - "10.5" - ], - "filament_retraction_length": [ - "0.8", - "0.8" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "overhang_fan_threshold": [ - "25%" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 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" - ] -} + "type": "filament", + "name": "Generic TPU for AMS @BBL X1C", + "inherits": "Generic TPU for AMS @base", + "from": "system", + "setting_id": "GFSU98_00", + "instantiation": "true", + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5" + ], + "filament_retraction_length": [ + "0.8", + "0.8" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "overhang_fan_threshold": [ + "25%" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X2D 0.4 nozzle.json b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X2D 0.4 nozzle.json index 065efc188c..446cb91fbb 100644 --- a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X2D 0.4 nozzle.json @@ -1,287 +1,108 @@ { - "type": "filament", - "name": "Generic TPU for AMS @BBL X2D 0.4 nozzle", - "inherits": "Generic TPU for AMS @base", - "from": "system", - "setting_id": "GFSU98_05", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8", - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "fan_cooling_layer_time": [ - "40" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "10" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "10.5", - "10.5", - "10.5", - "10.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "230" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "230", - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "overhang_fan_threshold": [ - "25%" - ], - "slow_down_layer_time": [ - "10" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.4 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic TPU for AMS @BBL X2D 0.4 nozzle", + "inherits": "Generic TPU for AMS @base", + "from": "system", + "setting_id": "GFSU98_05", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5", + "10.5", + "10.5", + "10.5", + "10.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "0.8", + "0.8", + "0.8", + "0.8" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "overhang_fan_threshold": [ + "25%" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.4 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X2D.json b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X2D.json index b345595ccd..3223336a76 100644 --- a/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X2D.json +++ b/resources/profiles/BBL/filament/Generic TPU for AMS @BBL X2D.json @@ -1,288 +1,109 @@ { - "type": "filament", - "name": "Generic TPU for AMS @BBL X2D", - "inherits": "Generic TPU for AMS @base", - "from": "system", - "setting_id": "GFSU98_09", - "instantiation": "true", - "filament_adaptive_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_cooling_before_tower": [ - "10", - "10", - "10", - "10" - ], - "filament_deretraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_enable_overhang_speed": [ - "1", - "1", - "1", - "1" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "filament_flush_temp": [ - "0", - "0", - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_overhang_1_4_speed": [ - "0", - "0", - "0", - "0" - ], - "filament_overhang_2_4_speed": [ - "50", - "50", - "50", - "50" - ], - "filament_overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "filament_overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_overhang_totally_speed": [ - "10", - "10", - "10", - "10" - ], - "filament_bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "filament_pre_cooling_temperature": [ - "0", - "0", - "0", - "0" - ], - "filament_pre_cooling_temperature_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_ramming_travel_time_nc": [ - "0", - "0", - "0", - "0" - ], - "filament_retract_length_nc": [ - "14", - "14", - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_ramming_volumetric_speed_nc": [ - "-1", - "-1", - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_length": [ - "0.8", - "0.8", - "0.8", - "0.8" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil", - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil", - "nil", - "nil" - ], - "long_retractions_when_ec": [ - "1", - "1", - "1", - "1" - ], - "override_process_overhang_speed": [ - "0", - "0", - "0", - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0", - "0", - "0" - ], - "slow_down_min_speed": [ - "10", - "10", - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "eng_plate_temp": [ - "35" - ], - "eng_plate_temp_initial_layer": [ - "35" - ], - "fan_cooling_layer_time": [ - "40" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "10" - ], - "filament_flow_ratio": [ - "1", - "1", - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "10.5", - "10.5", - "10.5", - "10.5" - ], - "filament_ramming_travel_time": [ - "0", - "0", - "0", - "0" - ], - "filament_tower_interface_print_temp": [ - "230" - ], - "first_x_layer_fan_speed": [ - "40" - ], - "nozzle_temperature": [ - "230", - "230", - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230", - "230", - "230" - ], - "overhang_fan_threshold": [ - "25%" - ], - "slow_down_layer_time": [ - "10" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.6 nozzle", - "Bambu Lab X2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ] -} + "type": "filament", + "name": "Generic TPU for AMS @BBL X2D", + "inherits": "Generic TPU for AMS @base", + "from": "system", + "setting_id": "GFSU98_09", + "instantiation": "true", + "eng_plate_temp": [ + "35" + ], + "eng_plate_temp_initial_layer": [ + "35" + ], + "fan_cooling_layer_time": [ + "40" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "10" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "10.5", + "10.5", + "10.5", + "10.5", + "10.5", + "10.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retraction_length": [ + "0.8", + "0.8", + "0.8", + "0.8", + "0.8", + "0.8" + ], + "filament_tower_interface_print_temp": [ + "230" + ], + "first_x_layer_fan_speed": [ + "40" + ], + "include": [ + "fdm_filament_template_direct_bowden_e3d" + ], + "nozzle_temperature": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230", + "230", + "230", + "230", + "230" + ], + "overhang_fan_threshold": [ + "25%" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU for AMS @base.json b/resources/profiles/BBL/filament/Generic TPU for AMS @base.json index 1432bdfbe2..307eef847b 100644 --- a/resources/profiles/BBL/filament/Generic TPU for AMS @base.json +++ b/resources/profiles/BBL/filament/Generic TPU for AMS @base.json @@ -1,30 +1,30 @@ { - "type": "filament", - "name": "Generic TPU for AMS @base", - "inherits": "fdm_filament_tpu", - "from": "system", - "filament_id": "OFmN2lvw", - "instantiation": "false", - "description": "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.", - "filament_cost": [ - "41.99" - ], - "filament_density": [ - "1.26" - ], - "filament_max_volumetric_speed": [ - "10.5" - ], - "filament_retraction_length": [ - "0.8" - ], - "filament_type": [ - "TPU-AMS" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ] -} + "type": "filament", + "name": "Generic TPU for AMS @base", + "inherits": "fdm_filament_tpu", + "from": "system", + "filament_id": "OFmN2lvw", + "instantiation": "false", + "description": "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.", + "filament_cost": [ + "41.99" + ], + "filament_density": [ + "1.26" + ], + "filament_max_volumetric_speed": [ + "10.5" + ], + "filament_retraction_length": [ + "0.8" + ], + "filament_type": [ + "TPU-AMS" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Generic TPU.json b/resources/profiles/BBL/filament/Generic TPU.json index ee3426050e..0b2303da69 100644 --- a/resources/profiles/BBL/filament/Generic TPU.json +++ b/resources/profiles/BBL/filament/Generic TPU.json @@ -1,22 +1,22 @@ { - "type": "filament", - "name": "Generic TPU", - "inherits": "Generic TPU @base", - "from": "system", - "setting_id": "GFSR99", - "instantiation": "true", - "compatible_printers": [ - "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 P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic TPU", + "inherits": "Generic TPU @base", + "from": "system", + "setting_id": "GFSR99", + "instantiation": "true", + "compatible_printers": [ + "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 P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture Matte PLA @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture Matte PLA @BBL A1 0.2 nozzle.json new file mode 100644 index 0000000000..a5f3c4665c --- /dev/null +++ b/resources/profiles/BBL/filament/Overture Matte PLA @BBL A1 0.2 nozzle.json @@ -0,0 +1,38 @@ +{ + "type": "filament", + "name": "Overture Matte PLA @BBL A1 0.2 nozzle", + "inherits": "Overture Matte PLA @base", + "from": "system", + "setting_id": "GFSL05_08", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1.8" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture Matte PLA @BBL A1.json b/resources/profiles/BBL/filament/Overture Matte PLA @BBL A1.json new file mode 100644 index 0000000000..5e362df470 --- /dev/null +++ b/resources/profiles/BBL/filament/Overture Matte PLA @BBL A1.json @@ -0,0 +1,37 @@ +{ + "type": "filament", + "name": "Overture Matte PLA @BBL A1", + "inherits": "Overture Matte PLA @base", + "from": "system", + "setting_id": "GFSL05_07", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture Matte PLA @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture Matte PLA @BBL A1M 0.2 nozzle.json new file mode 100644 index 0000000000..eaba775ddf --- /dev/null +++ b/resources/profiles/BBL/filament/Overture Matte PLA @BBL A1M 0.2 nozzle.json @@ -0,0 +1,14 @@ +{ + "type": "filament", + "name": "Overture Matte PLA @BBL A1M 0.2 nozzle", + "inherits": "Overture Matte PLA @BBL A1M", + "from": "system", + "setting_id": "GFSL05_06", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1.8" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture Matte PLA @BBL A1M.json b/resources/profiles/BBL/filament/Overture Matte PLA @BBL A1M.json new file mode 100644 index 0000000000..e76b7f24ce --- /dev/null +++ b/resources/profiles/BBL/filament/Overture Matte PLA @BBL A1M.json @@ -0,0 +1,37 @@ +{ + "type": "filament", + "name": "Overture Matte PLA @BBL A1M", + "inherits": "Overture Matte PLA @base", + "from": "system", + "setting_id": "GFSL05_05", + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 mini 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2D 0.2 nozzle.json index b8ce4d201d..d4ce9d9f7c 100644 --- a/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2D 0.2 nozzle.json @@ -1,131 +1,54 @@ { - "type": "filament", - "name": "Overture Matte PLA @BBL H2D 0.2 nozzle", - "inherits": "Overture Matte PLA @base", - "from": "system", - "setting_id": "GFSL05_10", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Overture Matte PLA @BBL H2D 0.2 nozzle", + "inherits": "Overture Matte PLA @base", + "from": "system", + "setting_id": "GFSL05_10", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2D.json b/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2D.json index 8e5b357da3..edeb9786f9 100644 --- a/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2D.json +++ b/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2D.json @@ -1,133 +1,63 @@ { - "type": "filament", - "name": "Overture Matte PLA @BBL H2D", - "inherits": "Overture Matte PLA @base", - "from": "system", - "setting_id": "GFSL05_09", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Overture Matte PLA @BBL H2D", + "inherits": "Overture Matte PLA @base", + "from": "system", + "setting_id": "GFSL05_09", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2DP 0.2 nozzle.json index e59bcd145e..3dbd87ec38 100644 --- a/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2DP 0.2 nozzle.json @@ -1,131 +1,54 @@ { - "type": "filament", - "name": "Overture Matte PLA @BBL H2DP 0.2 nozzle", - "inherits": "Overture Matte PLA @base", - "from": "system", - "setting_id": "GFSL05_16", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Overture Matte PLA @BBL H2DP 0.2 nozzle", + "inherits": "Overture Matte PLA @base", + "from": "system", + "setting_id": "GFSL05_16", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2DP.json b/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2DP.json index 985133f24f..a7bc9fd687 100644 --- a/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2DP.json @@ -1,133 +1,56 @@ { - "type": "filament", - "name": "Overture Matte PLA @BBL H2DP", - "inherits": "Overture Matte PLA @base", - "from": "system", - "setting_id": "GFSL05_15", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Overture Matte PLA @BBL H2DP", + "inherits": "Overture Matte PLA @base", + "from": "system", + "setting_id": "GFSL05_15", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2S 0.2 nozzle.json index 8b9a9dade4..5c258fbd47 100644 --- a/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2S 0.2 nozzle.json @@ -1,134 +1,73 @@ { - "type": "filament", - "name": "Overture Matte PLA @BBL H2S 0.2 nozzle", - "inherits": "Overture Matte PLA @base", - "from": "system", - "setting_id": "GFSL05_12", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Overture Matte PLA @BBL H2S 0.2 nozzle", + "inherits": "Overture Matte PLA @base", + "from": "system", + "setting_id": "GFSL05_12", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2S.json b/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2S.json index 67736819f6..eb84bfac73 100644 --- a/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2S.json +++ b/resources/profiles/BBL/filament/Overture Matte PLA @BBL H2S.json @@ -1,136 +1,81 @@ { - "type": "filament", - "name": "Overture Matte PLA @BBL H2S", - "inherits": "Overture Matte PLA @base", - "from": "system", - "setting_id": "GFSL05_11", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Overture Matte PLA @BBL H2S", + "inherits": "Overture Matte PLA @base", + "from": "system", + "setting_id": "GFSL05_11", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture Matte PLA @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture Matte PLA @BBL P1P 0.2 nozzle.json new file mode 100644 index 0000000000..66c7f1c3e1 --- /dev/null +++ b/resources/profiles/BBL/filament/Overture Matte PLA @BBL P1P 0.2 nozzle.json @@ -0,0 +1,15 @@ +{ + "type": "filament", + "name": "Overture Matte PLA @BBL P1P 0.2 nozzle", + "inherits": "Overture Matte PLA @BBL P1P", + "from": "system", + "setting_id": "GFSL05_04", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture Matte PLA @BBL P1P.json b/resources/profiles/BBL/filament/Overture Matte PLA @BBL P1P.json new file mode 100644 index 0000000000..b6747d4d27 --- /dev/null +++ b/resources/profiles/BBL/filament/Overture Matte PLA @BBL P1P.json @@ -0,0 +1,69 @@ +{ + "type": "filament", + "name": "Overture Matte PLA @BBL P1P", + "inherits": "Overture Matte PLA @base", + "from": "system", + "setting_id": "GFSL05_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture Matte PLA @BBL X1.json b/resources/profiles/BBL/filament/Overture Matte PLA @BBL X1.json new file mode 100644 index 0000000000..7f5a9e2cc2 --- /dev/null +++ b/resources/profiles/BBL/filament/Overture Matte PLA @BBL X1.json @@ -0,0 +1,54 @@ +{ + "type": "filament", + "name": "Overture Matte PLA @BBL X1", + "inherits": "Overture Matte PLA @base", + "from": "system", + "setting_id": "GFSL05_02", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture Matte PLA @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture Matte PLA @BBL X1C 0.2 nozzle.json new file mode 100644 index 0000000000..9d3ea20395 --- /dev/null +++ b/resources/profiles/BBL/filament/Overture Matte PLA @BBL X1C 0.2 nozzle.json @@ -0,0 +1,18 @@ +{ + "type": "filament", + "name": "Overture Matte PLA @BBL X1C 0.2 nozzle", + "inherits": "Overture Matte PLA @BBL X1C", + "from": "system", + "setting_id": "GFSL05_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "compatible_printers": [ + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture Matte PLA @BBL X1C.json b/resources/profiles/BBL/filament/Overture Matte PLA @BBL X1C.json new file mode 100644 index 0000000000..6810da28c4 --- /dev/null +++ b/resources/profiles/BBL/filament/Overture Matte PLA @BBL X1C.json @@ -0,0 +1,57 @@ +{ + "type": "filament", + "name": "Overture Matte PLA @BBL X1C", + "inherits": "Overture Matte PLA @base", + "from": "system", + "setting_id": "GFSL05_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture Matte PLA @base.json b/resources/profiles/BBL/filament/Overture Matte PLA @base.json new file mode 100644 index 0000000000..6573c1b46b --- /dev/null +++ b/resources/profiles/BBL/filament/Overture Matte PLA @base.json @@ -0,0 +1,26 @@ +{ + "type": "filament", + "name": "Overture Matte PLA @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFBw6eEG", + "instantiation": "false", + "filament_cost": [ + "24.52" + ], + "filament_density": [ + "1.22" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_vendor": [ + "Overture" + ], + "slow_down_layer_time": [ + "6" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture PLA @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture PLA @BBL A1 0.2 nozzle.json new file mode 100644 index 0000000000..de9052fdb2 --- /dev/null +++ b/resources/profiles/BBL/filament/Overture PLA @BBL A1 0.2 nozzle.json @@ -0,0 +1,26 @@ +{ + "type": "filament", + "name": "Overture PLA @BBL A1 0.2 nozzle", + "inherits": "Overture PLA @base", + "from": "system", + "setting_id": "GFSL04_08", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1.6" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture PLA @BBL A1.json b/resources/profiles/BBL/filament/Overture PLA @BBL A1.json new file mode 100644 index 0000000000..bffa20d601 --- /dev/null +++ b/resources/profiles/BBL/filament/Overture PLA @BBL A1.json @@ -0,0 +1,25 @@ +{ + "type": "filament", + "name": "Overture PLA @BBL A1", + "inherits": "Overture PLA @base", + "from": "system", + "setting_id": "GFSL04_07", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "slow_down_layer_time": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture PLA @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture PLA @BBL A1M 0.2 nozzle.json new file mode 100644 index 0000000000..0c5657ceb5 --- /dev/null +++ b/resources/profiles/BBL/filament/Overture PLA @BBL A1M 0.2 nozzle.json @@ -0,0 +1,14 @@ +{ + "type": "filament", + "name": "Overture PLA @BBL A1M 0.2 nozzle", + "inherits": "Overture PLA @BBL A1M", + "from": "system", + "setting_id": "GFSL04_06", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1.6" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture PLA @BBL A1M.json b/resources/profiles/BBL/filament/Overture PLA @BBL A1M.json new file mode 100644 index 0000000000..a542675287 --- /dev/null +++ b/resources/profiles/BBL/filament/Overture PLA @BBL A1M.json @@ -0,0 +1,37 @@ +{ + "type": "filament", + "name": "Overture PLA @BBL A1M", + "inherits": "Overture PLA @base", + "from": "system", + "setting_id": "GFSL04_00", + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture PLA @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture PLA @BBL H2D 0.2 nozzle.json index 050fc3441e..e117800ca8 100644 --- a/resources/profiles/BBL/filament/Overture PLA @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Overture PLA @BBL H2D 0.2 nozzle.json @@ -1,131 +1,54 @@ { - "type": "filament", - "name": "Overture PLA @BBL H2D 0.2 nozzle", - "inherits": "Overture PLA @base", - "from": "system", - "setting_id": "GFSL04_10", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Overture PLA @BBL H2D 0.2 nozzle", + "inherits": "Overture PLA @base", + "from": "system", + "setting_id": "GFSL04_10", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture PLA @BBL H2D.json b/resources/profiles/BBL/filament/Overture PLA @BBL H2D.json index 4c4a698cae..d236aeb1be 100644 --- a/resources/profiles/BBL/filament/Overture PLA @BBL H2D.json +++ b/resources/profiles/BBL/filament/Overture PLA @BBL H2D.json @@ -1,133 +1,63 @@ { - "type": "filament", - "name": "Overture PLA @BBL H2D", - "inherits": "Overture PLA @base", - "from": "system", - "setting_id": "GFSL04_09", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Overture PLA @BBL H2D", + "inherits": "Overture PLA @base", + "from": "system", + "setting_id": "GFSL04_09", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture PLA @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture PLA @BBL H2DP 0.2 nozzle.json index 61a22824f6..36c80d8888 100644 --- a/resources/profiles/BBL/filament/Overture PLA @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Overture PLA @BBL H2DP 0.2 nozzle.json @@ -1,131 +1,54 @@ { - "type": "filament", - "name": "Overture PLA @BBL H2DP 0.2 nozzle", - "inherits": "Overture PLA @base", - "from": "system", - "setting_id": "GFSL04_16", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Overture PLA @BBL H2DP 0.2 nozzle", + "inherits": "Overture PLA @base", + "from": "system", + "setting_id": "GFSL04_16", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture PLA @BBL H2DP.json b/resources/profiles/BBL/filament/Overture PLA @BBL H2DP.json index 83ef11a9ea..7d5dd1217c 100644 --- a/resources/profiles/BBL/filament/Overture PLA @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Overture PLA @BBL H2DP.json @@ -1,133 +1,56 @@ { - "type": "filament", - "name": "Overture PLA @BBL H2DP", - "inherits": "Overture PLA @base", - "from": "system", - "setting_id": "GFSL04_15", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Overture PLA @BBL H2DP", + "inherits": "Overture PLA @base", + "from": "system", + "setting_id": "GFSL04_15", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture PLA @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture PLA @BBL H2S 0.2 nozzle.json index 7f75638a27..015bd25840 100644 --- a/resources/profiles/BBL/filament/Overture PLA @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Overture PLA @BBL H2S 0.2 nozzle.json @@ -1,134 +1,73 @@ { - "type": "filament", - "name": "Overture PLA @BBL H2S 0.2 nozzle", - "inherits": "Overture PLA @base", - "from": "system", - "setting_id": "GFSL04_12", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Overture PLA @BBL H2S 0.2 nozzle", + "inherits": "Overture PLA @base", + "from": "system", + "setting_id": "GFSL04_12", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture PLA @BBL H2S.json b/resources/profiles/BBL/filament/Overture PLA @BBL H2S.json index 00ac02bffe..e66b7c9405 100644 --- a/resources/profiles/BBL/filament/Overture PLA @BBL H2S.json +++ b/resources/profiles/BBL/filament/Overture PLA @BBL H2S.json @@ -1,136 +1,81 @@ { - "type": "filament", - "name": "Overture PLA @BBL H2S", - "inherits": "Overture PLA @base", - "from": "system", - "setting_id": "GFSL04_11", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "Overture PLA @BBL H2S", + "inherits": "Overture PLA @base", + "from": "system", + "setting_id": "GFSL04_11", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture PLA @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture PLA @BBL P1P 0.2 nozzle.json new file mode 100644 index 0000000000..714d4a117d --- /dev/null +++ b/resources/profiles/BBL/filament/Overture PLA @BBL P1P 0.2 nozzle.json @@ -0,0 +1,15 @@ +{ + "type": "filament", + "name": "Overture PLA @BBL P1P 0.2 nozzle", + "inherits": "Overture PLA @BBL P1P", + "from": "system", + "setting_id": "GFSL04_04", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture PLA @BBL P1P.json b/resources/profiles/BBL/filament/Overture PLA @BBL P1P.json new file mode 100644 index 0000000000..c8ad574304 --- /dev/null +++ b/resources/profiles/BBL/filament/Overture PLA @BBL P1P.json @@ -0,0 +1,57 @@ +{ + "type": "filament", + "name": "Overture PLA @BBL P1P", + "inherits": "Overture PLA @base", + "from": "system", + "setting_id": "GFSL04_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture PLA @BBL X1.json b/resources/profiles/BBL/filament/Overture PLA @BBL X1.json new file mode 100644 index 0000000000..df1cab9b9c --- /dev/null +++ b/resources/profiles/BBL/filament/Overture PLA @BBL X1.json @@ -0,0 +1,54 @@ +{ + "type": "filament", + "name": "Overture PLA @BBL X1", + "inherits": "Overture PLA @base", + "from": "system", + "setting_id": "GFSL04_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture PLA @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture PLA @BBL X1C 0.2 nozzle.json new file mode 100644 index 0000000000..bdbef090ff --- /dev/null +++ b/resources/profiles/BBL/filament/Overture PLA @BBL X1C 0.2 nozzle.json @@ -0,0 +1,18 @@ +{ + "type": "filament", + "name": "Overture PLA @BBL X1C 0.2 nozzle", + "inherits": "Overture PLA @BBL X1C", + "from": "system", + "setting_id": "GFSL04_02", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture PLA @BBL X1C.json b/resources/profiles/BBL/filament/Overture PLA @BBL X1C.json new file mode 100644 index 0000000000..9962d88ced --- /dev/null +++ b/resources/profiles/BBL/filament/Overture PLA @BBL X1C.json @@ -0,0 +1,57 @@ +{ + "type": "filament", + "name": "Overture PLA @BBL X1C", + "inherits": "Overture PLA @base", + "from": "system", + "setting_id": "GFSL04_05", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture PLA @base.json b/resources/profiles/BBL/filament/Overture PLA @base.json new file mode 100644 index 0000000000..d13d2d99de --- /dev/null +++ b/resources/profiles/BBL/filament/Overture PLA @base.json @@ -0,0 +1,26 @@ +{ + "type": "filament", + "name": "Overture PLA @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFc3xdm9", + "instantiation": "false", + "filament_cost": [ + "24.15" + ], + "filament_density": [ + "1.2" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_vendor": [ + "Overture" + ], + "slow_down_layer_time": [ + "6" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1 0.2 nozzle.json deleted file mode 100644 index 9564767b5d..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1 0.2 nozzle.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "type": "filament", - "name": "Overture Matte PLA @BBL A1 0.2 nozzle", - "inherits": "Overture Matte PLA @base", - "from": "system", - "setting_id": "GFSL05_08", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "1.8" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1.json b/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1.json deleted file mode 100644 index 00991ccd6e..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "type": "filament", - "name": "Overture Matte PLA @BBL A1", - "inherits": "Overture Matte PLA @base", - "from": "system", - "setting_id": "GFSL05_07", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/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 deleted file mode 100644 index 57370c05ef..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1M 0.2 nozzle.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "filament", - "name": "Overture Matte PLA @BBL A1M 0.2 nozzle", - "inherits": "Overture Matte PLA @BBL A1M", - "from": "system", - "setting_id": "GFSL05_06", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1.8" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1M.json b/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1M.json deleted file mode 100644 index db25771d09..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1M.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "type": "filament", - "name": "Overture Matte PLA @BBL A1M", - "inherits": "Overture Matte PLA @base", - "from": "system", - "setting_id": "GFSL05_05", - "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" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.8 nozzle", - "Bambu Lab A1 mini 0.6 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL P1P 0.2 nozzle.json deleted file mode 100644 index c6c93ea0d0..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL P1P 0.2 nozzle.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "filament", - "name": "Overture Matte PLA @BBL P1P 0.2 nozzle", - "inherits": "Overture Matte PLA @BBL P1P", - "from": "system", - "setting_id": "GFSL05_04", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL P1P.json b/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL P1P.json deleted file mode 100644 index c73cee4cb1..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL P1P.json +++ /dev/null @@ -1,142 +0,0 @@ -{ - "type": "filament", - "name": "Overture Matte PLA @BBL P1P", - "inherits": "Overture Matte PLA @base", - "from": "system", - "setting_id": "GFSL05_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL X1.json b/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL X1.json deleted file mode 100644 index 25b17be464..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL X1.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "type": "filament", - "name": "Overture Matte PLA @BBL X1", - "inherits": "Overture Matte PLA @base", - "from": "system", - "setting_id": "GFSL05_02", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 0.4 nozzle" - ], - "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}" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL X1C 0.2 nozzle.json deleted file mode 100644 index aee193a929..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL X1C 0.2 nozzle.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "type": "filament", - "name": "Overture Matte PLA @BBL X1C 0.2 nozzle", - "inherits": "Overture Matte PLA @BBL X1C", - "from": "system", - "setting_id": "GFSL05_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "compatible_printers": [ - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL X1C.json b/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL X1C.json deleted file mode 100644 index b76e80596d..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL X1C.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "type": "filament", - "name": "Overture Matte PLA @BBL X1C", - "inherits": "Overture Matte PLA @base", - "from": "system", - "setting_id": "GFSL05_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @base.json b/resources/profiles/BBL/filament/Overture/Overture Matte PLA @base.json deleted file mode 100644 index bccfb1f17b..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @base.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "type": "filament", - "name": "Overture Matte PLA @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFBw6eEG", - "instantiation": "false", - "filament_cost": [ - "24.52" - ], - "filament_density": [ - "1.22" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_vendor": [ - "Overture" - ], - "slow_down_layer_time": [ - "6" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture/Overture PLA @BBL A1 0.2 nozzle.json deleted file mode 100644 index cc2a9ccae2..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL A1 0.2 nozzle.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "type": "filament", - "name": "Overture PLA @BBL A1 0.2 nozzle", - "inherits": "Overture PLA @base", - "from": "system", - "setting_id": "GFSL04_08", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "1.6" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL A1.json b/resources/profiles/BBL/filament/Overture/Overture PLA @BBL A1.json deleted file mode 100644 index febe198ebd..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL A1.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "type": "filament", - "name": "Overture PLA @BBL A1", - "inherits": "Overture PLA @base", - "from": "system", - "setting_id": "GFSL04_07", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "slow_down_layer_time": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture/Overture PLA @BBL A1M 0.2 nozzle.json deleted file mode 100644 index 8c2ad1cb8a..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL A1M 0.2 nozzle.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "filament", - "name": "Overture PLA @BBL A1M 0.2 nozzle", - "inherits": "Overture PLA @BBL A1M", - "from": "system", - "setting_id": "GFSL04_06", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1.6" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL A1M.json b/resources/profiles/BBL/filament/Overture/Overture PLA @BBL A1M.json deleted file mode 100644 index f3a70fa2d9..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL A1M.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "type": "filament", - "name": "Overture PLA @BBL A1M", - "inherits": "Overture PLA @base", - "from": "system", - "setting_id": "GFSL04_00", - "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" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture/Overture PLA @BBL P1P 0.2 nozzle.json deleted file mode 100644 index f0c7984d95..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL P1P 0.2 nozzle.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "filament", - "name": "Overture PLA @BBL P1P 0.2 nozzle", - "inherits": "Overture PLA @BBL P1P", - "from": "system", - "setting_id": "GFSL04_04", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL P1P.json b/resources/profiles/BBL/filament/Overture/Overture PLA @BBL P1P.json deleted file mode 100644 index e6800d6d83..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL P1P.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "type": "filament", - "name": "Overture PLA @BBL P1P", - "inherits": "Overture PLA @base", - "from": "system", - "setting_id": "GFSL04_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL X1.json b/resources/profiles/BBL/filament/Overture/Overture PLA @BBL X1.json deleted file mode 100644 index 642af0098e..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL X1.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "type": "filament", - "name": "Overture PLA @BBL X1", - "inherits": "Overture PLA @base", - "from": "system", - "setting_id": "GFSL04_01", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle" - ], - "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}" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture/Overture PLA @BBL X1C 0.2 nozzle.json deleted file mode 100644 index 6a2dc62ebb..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL X1C 0.2 nozzle.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "type": "filament", - "name": "Overture PLA @BBL X1C 0.2 nozzle", - "inherits": "Overture PLA @BBL X1C", - "from": "system", - "setting_id": "GFSL04_02", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL X1C.json b/resources/profiles/BBL/filament/Overture/Overture PLA @BBL X1C.json deleted file mode 100644 index d959fa28a8..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture PLA @BBL X1C.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "type": "filament", - "name": "Overture PLA @BBL X1C", - "inherits": "Overture PLA @base", - "from": "system", - "setting_id": "GFSL04_05", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}" - ] -} diff --git a/resources/profiles/BBL/filament/Overture/Overture PLA @base.json b/resources/profiles/BBL/filament/Overture/Overture PLA @base.json deleted file mode 100644 index 0f302d4798..0000000000 --- a/resources/profiles/BBL/filament/Overture/Overture PLA @base.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "type": "filament", - "name": "Overture PLA @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFc3xdm9", - "instantiation": "false", - "filament_cost": [ - "24.15" - ], - "filament_density": [ - "1.2" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "15" - ], - "filament_vendor": [ - "Overture" - ], - "slow_down_layer_time": [ - "6" - ] -} diff --git a/resources/profiles/BBL/filament/P1P/Bambu ABS @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu ABS @BBL P1P 0.2 nozzle.json index 13fcb80eea..dcbd382ffe 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu ABS @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Bambu ABS @BBL P1P 0.2 nozzle.json @@ -1,140 +1,71 @@ { - "type": "filament", - "name": "Bambu ABS @BBL P1P 0.2 nozzle", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_02", - "instantiation": "true", - "fan_max_speed": [ - "20" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "12" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu ABS @BBL P1P 0.2 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_02", + "instantiation": "true", + "fan_max_speed": [ + "20" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu ABS @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu ABS @BBL P1P 0.6 nozzle.json new file mode 100644 index 0000000000..ea6060ba15 --- /dev/null +++ b/resources/profiles/BBL/filament/P1P/Bambu ABS @BBL P1P 0.6 nozzle.json @@ -0,0 +1,87 @@ +{ + "type": "filament", + "name": "Bambu ABS @BBL P1P 0.6 nozzle", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_41", + "instantiation": "true", + "fan_max_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_long_retractions_when_cut": [ + "1", + "nil" + ], + "filament_max_volumetric_speed": [ + "16", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu ABS @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu ABS @BBL P1P.json index df46984e46..c21004ca75 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu ABS @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu ABS @BBL P1P.json @@ -1,142 +1,88 @@ { - "type": "filament", - "name": "Bambu ABS @BBL P1P", - "inherits": "Bambu ABS @base", - "from": "system", - "setting_id": "GFSB00_03", - "instantiation": "true", - "fan_max_speed": [ - "20" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "12" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu ABS @BBL P1P", + "inherits": "Bambu ABS @base", + "from": "system", + "setting_id": "GFSB00_03", + "instantiation": "true", + "fan_max_speed": [ + "20" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_long_retractions_when_cut": [ + "1", + "nil" + ], + "filament_max_volumetric_speed": [ + "16", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "nil" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PA-CF @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu PA-CF @BBL P1P.json index e8127557c0..b7cfc61878 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PA-CF @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PA-CF @BBL P1P.json @@ -1,133 +1,63 @@ { - "type": "filament", - "name": "Bambu PA-CF @BBL P1P", - "inherits": "Bambu PA-CF @base", - "from": "system", - "setting_id": "GFSN00_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "5" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "10" - ], - "full_fan_speed_layer": [ - "2" - ], - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PA-CF @BBL P1P", + "inherits": "Bambu PA-CF @base", + "from": "system", + "setting_id": "GFSN00_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "full_fan_speed_layer": [ + "2" + ], + "additional_fan_full_speed_layer": [ + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PAHT-CF @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu PAHT-CF @BBL P1P 0.6 nozzle.json new file mode 100644 index 0000000000..adbae88001 --- /dev/null +++ b/resources/profiles/BBL/filament/P1P/Bambu PAHT-CF @BBL P1P 0.6 nozzle.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "name": "Bambu PAHT-CF @BBL P1P 0.6 nozzle", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_15", + "instantiation": "true", + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "12" + ], + "filament_retraction_length": [ + "nil", + "1.2" + ], + "filament_z_hop": [ + "nil", + "0.8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PAHT-CF @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu PAHT-CF @BBL P1P.json index 3c423b8d54..9a4db4fe67 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PAHT-CF @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PAHT-CF @BBL P1P.json @@ -1,121 +1,50 @@ { - "type": "filament", - "name": "Bambu PAHT-CF @BBL P1P", - "inherits": "Bambu PAHT-CF @base", - "from": "system", - "setting_id": "GFSN04_10", - "instantiation": "true", - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PAHT-CF @BBL P1P", + "inherits": "Bambu PAHT-CF @base", + "from": "system", + "setting_id": "GFSN04_10", + "instantiation": "true", + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "12" + ], + "filament_z_hop": [ + "nil", + "0.8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PC @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu PC @BBL P1P 0.2 nozzle.json index e5ce46da8d..d64fff5af9 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PC @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PC @BBL P1P 0.2 nozzle.json @@ -1,146 +1,73 @@ { - "type": "filament", - "name": "Bambu PC @BBL P1P 0.2 nozzle", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_03", - "instantiation": "true", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "20" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "12" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC @BBL P1P 0.2 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_03", + "instantiation": "true", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PC @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu PC @BBL P1P 0.6 nozzle.json new file mode 100644 index 0000000000..bc23bb1607 --- /dev/null +++ b/resources/profiles/BBL/filament/P1P/Bambu PC @BBL P1P 0.6 nozzle.json @@ -0,0 +1,85 @@ +{ + "type": "filament", + "name": "Bambu PC @BBL P1P 0.6 nozzle", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_42", + "instantiation": "true", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.94", + "0.945" + ], + "filament_max_volumetric_speed": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.45" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_z_hop_types": [ + "nil", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PC @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu PC @BBL P1P.json index 44c437f34e..0977c4fbb8 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PC @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PC @BBL P1P.json @@ -1,148 +1,74 @@ { - "type": "filament", - "name": "Bambu PC @BBL P1P", - "inherits": "Bambu PC @base", - "from": "system", - "setting_id": "GFSC00_04", - "instantiation": "true", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "20" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "12" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PC @BBL P1P", + "inherits": "Bambu PC @base", + "from": "system", + "setting_id": "GFSC00_04", + "instantiation": "true", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "18", + "29" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PET-CF @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu PET-CF @BBL P1P.json index 98651c4f20..5095859d67 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PET-CF @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PET-CF @BBL P1P.json @@ -1,127 +1,78 @@ { - "type": "filament", - "name": "Bambu PET-CF @BBL P1P", - "inherits": "Bambu PET-CF @base", - "from": "system", - "setting_id": "GFST01_10", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_min_speed": [ - "20" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PET-CF @BBL P1P", + "inherits": "Bambu PET-CF @base", + "from": "system", + "setting_id": "GFST01_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "1" + ], + "filament_flow_ratio": [ + "0.9555", + "1" + ], + "filament_max_volumetric_speed": [ + "5", + "8" + ], + "filament_overhang_2_4_speed": [ + "35", + "50" + ], + "filament_overhang_3_4_speed": [ + "35", + "30" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "overhang_fan_speed": [ + "75" + ], + "override_process_overhang_speed": [ + "1", + "0" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "1" + ], + "slow_down_min_speed": [ + "35", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PETG-CF @BBL P1P 0.4 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu PETG-CF @BBL P1P 0.4 nozzle.json index dbbae54b48..6f21d17509 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PETG-CF @BBL P1P 0.4 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PETG-CF @BBL P1P 0.4 nozzle.json @@ -1,131 +1,66 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL P1P 0.4 nozzle", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG-CF @BBL P1P 0.4 nozzle", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_long_retractions_when_cut": [ + "1", + "nil" + ], + "filament_max_volumetric_speed": [ + "11.5", + "20" + ], + "filament_retraction_distances_when_cut": [ + "18", + "nil" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_wipe": [ + "nil", + "1" + ], + "filament_wipe_distance": [ + "nil", + "2" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "275" + ], + "nozzle_temperature_initial_layer": [ + "255", + "275" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PETG-CF @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu PETG-CF @BBL P1P.json index fd55dccbc0..bf140d0d31 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PETG-CF @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PETG-CF @BBL P1P.json @@ -1,132 +1,67 @@ { - "type": "filament", - "name": "Bambu PETG-CF @BBL P1P", - "inherits": "Bambu PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_11", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PETG-CF @BBL P1P", + "inherits": "Bambu PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_11", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "11.5", + "20" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_retraction_length": [ + "nil", + "0.8" + ], + "filament_z_hop": [ + "nil", + "0.4" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Aero @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Aero @BBL P1P.json index b6281095ec..01eb23cd11 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PLA Aero @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Aero @BBL P1P.json @@ -1,142 +1,69 @@ { - "type": "filament", - "name": "Bambu PLA Aero @BBL P1P", - "inherits": "Bambu PLA Aero @base", - "from": "system", - "setting_id": "GFSA11_02", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "0" - ], - "fan_cooling_layer_time": [ - "80" - ], - "filament_flow_ratio": [ - "0.6", - "0.6" - ], - "filament_max_volumetric_speed": [ - "6", - "6" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Aero @BBL P1P", + "inherits": "Bambu PLA Aero @base", + "from": "system", + "setting_id": "GFSA11_02", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "0" + ], + "fan_cooling_layer_time": [ + "80" + ], + "filament_flow_ratio": [ + "0.6", + "0.6" + ], + "filament_max_volumetric_speed": [ + "6", + "6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Basic @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Basic @BBL P1P 0.2 nozzle.json index 85ca50ccee..db4088ef94 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PLA Basic @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Basic @BBL P1P 0.2 nozzle.json @@ -1,137 +1,72 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL P1P 0.2 nozzle", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA00_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL P1P 0.2 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA00_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Basic @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Basic @BBL P1P 0.6 nozzle.json new file mode 100644 index 0000000000..f30ef29c1f --- /dev/null +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Basic @BBL P1P 0.6 nozzle.json @@ -0,0 +1,91 @@ +{ + "type": "filament", + "name": "Bambu PLA Basic @BBL P1P 0.6 nozzle", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA04_11", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "29" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "50" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Basic @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Basic @BBL P1P.json index 27d856a5d6..eb897cf359 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PLA Basic @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Basic @BBL P1P.json @@ -1,142 +1,92 @@ { - "type": "filament", - "name": "Bambu PLA Basic @BBL P1P", - "inherits": "Bambu PLA Basic @base", - "from": "system", - "setting_id": "GFSA04_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Basic @BBL P1P", + "inherits": "Bambu PLA Basic @base", + "from": "system", + "setting_id": "GFSA04_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "29" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "50" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Marble @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Marble @BBL P1P 0.6 nozzle.json new file mode 100644 index 0000000000..2cbd700b75 --- /dev/null +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Marble @BBL P1P 0.6 nozzle.json @@ -0,0 +1,92 @@ +{ + "type": "filament", + "name": "Bambu PLA Marble @BBL P1P 0.6 nozzle", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_18", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Marble @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Marble @BBL P1P.json index 4414187013..1cc0306b4b 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PLA Marble @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Marble @BBL P1P.json @@ -1,142 +1,91 @@ { - "type": "filament", - "name": "Bambu PLA Marble @BBL P1P", - "inherits": "Bambu PLA Marble @base", - "from": "system", - "setting_id": "GFSA07_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Marble @BBL P1P", + "inherits": "Bambu PLA Marble @base", + "from": "system", + "setting_id": "GFSA07_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Matte @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Matte @BBL P1P 0.2 nozzle.json index 60b520ea6d..6dbead6f4d 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PLA Matte @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Matte @BBL P1P 0.2 nozzle.json @@ -1,137 +1,72 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL P1P 0.2 nozzle", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA01_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL P1P 0.2 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA01_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Matte @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Matte @BBL P1P 0.6 nozzle.json new file mode 100644 index 0000000000..6107e5ba72 --- /dev/null +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Matte @BBL P1P 0.6 nozzle.json @@ -0,0 +1,91 @@ +{ + "type": "filament", + "name": "Bambu PLA Matte @BBL P1P 0.6 nozzle", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA05_28", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "22", + "29" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Matte @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Matte @BBL P1P.json index 84748f2fdc..a70c160320 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PLA Matte @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Matte @BBL P1P.json @@ -1,142 +1,92 @@ { - "type": "filament", - "name": "Bambu PLA Matte @BBL P1P", - "inherits": "Bambu PLA Matte @base", - "from": "system", - "setting_id": "GFSA05_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "22", - "22" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Matte @BBL P1P", + "inherits": "Bambu PLA Matte @base", + "from": "system", + "setting_id": "GFSA05_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "22", + "29" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Metal @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Metal @BBL P1P 0.2 nozzle.json index 48102aeb7a..c33ce2a479 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PLA Metal @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Metal @BBL P1P 0.2 nozzle.json @@ -1,137 +1,64 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL P1P 0.2 nozzle", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_11", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL P1P 0.2 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_11", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Metal @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Metal @BBL P1P 0.6 nozzle.json new file mode 100644 index 0000000000..f0fd865b66 --- /dev/null +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Metal @BBL P1P 0.6 nozzle.json @@ -0,0 +1,83 @@ +{ + "type": "filament", + "name": "Bambu PLA Metal @BBL P1P 0.6 nozzle", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_29", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "29" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Metal @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Metal @BBL P1P.json index b2b57bda5e..9c600caafe 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PLA Metal @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Metal @BBL P1P.json @@ -1,142 +1,84 @@ { - "type": "filament", - "name": "Bambu PLA Metal @BBL P1P", - "inherits": "Bambu PLA Metal @base", - "from": "system", - "setting_id": "GFSA02_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Metal @BBL P1P", + "inherits": "Bambu PLA Metal @base", + "from": "system", + "setting_id": "GFSA02_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "40" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "29" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "40" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Silk @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Silk @BBL P1P 0.2 nozzle.json index 3300e3480b..f778eb9e23 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PLA Silk @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Silk @BBL P1P 0.2 nozzle.json @@ -1,131 +1,58 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL P1P 0.2 nozzle", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_11", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL P1P 0.2 nozzle", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_11", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Silk @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Silk @BBL P1P.json index 6bd13b0ee2..972c6ca156 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PLA Silk @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Silk @BBL P1P.json @@ -1,136 +1,63 @@ { - "type": "filament", - "name": "Bambu PLA Silk @BBL P1P", - "inherits": "Bambu PLA Silk @base", - "from": "system", - "setting_id": "GFSA05_12", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Silk @BBL P1P", + "inherits": "Bambu PLA Silk @base", + "from": "system", + "setting_id": "GFSA05_12", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Sparkle @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Sparkle @BBL P1P 0.6 nozzle.json new file mode 100644 index 0000000000..eaa8896497 --- /dev/null +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Sparkle @BBL P1P 0.6 nozzle.json @@ -0,0 +1,83 @@ +{ + "type": "filament", + "name": "Bambu PLA Sparkle @BBL P1P 0.6 nozzle", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_19", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_max_volumetric_speed": [ + "12", + "25" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "50" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Sparkle @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Sparkle @BBL P1P.json index 7e6286af3b..240da6d165 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PLA Sparkle @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Sparkle @BBL P1P.json @@ -1,142 +1,84 @@ { - "type": "filament", - "name": "Bambu PLA Sparkle @BBL P1P", - "inherits": "Bambu PLA Sparkle @base", - "from": "system", - "setting_id": "GFSA08_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Sparkle @BBL P1P", + "inherits": "Bambu PLA Sparkle @base", + "from": "system", + "setting_id": "GFSA08_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "nil", + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_max_volumetric_speed": [ + "12", + "25" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_retraction_speed": [ + "nil", + "50" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Tough @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Tough @BBL P1P 0.2 nozzle.json index 020f025a80..f99ea5200f 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PLA Tough @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Tough @BBL P1P 0.2 nozzle.json @@ -1,137 +1,64 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL P1P 0.2 nozzle", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL P1P 0.2 nozzle", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Tough @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Tough @BBL P1P.json index d065df80ee..8a1a0fd274 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PLA Tough @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Tough @BBL P1P.json @@ -1,142 +1,69 @@ { - "type": "filament", - "name": "Bambu PLA Tough @BBL P1P", - "inherits": "Bambu PLA Tough @base", - "from": "system", - "setting_id": "GFSA09_11", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Tough @BBL P1P", + "inherits": "Bambu PLA Tough @base", + "from": "system", + "setting_id": "GFSA09_11", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Tough+ @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Tough+ @BBL P1P 0.2 nozzle.json index b18ea4a73d..1a0c12f0ff 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PLA Tough+ @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Tough+ @BBL P1P 0.2 nozzle.json @@ -1,143 +1,78 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL P1P 0.2 nozzle", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_33", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "70" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "90" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL P1P 0.2 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_33", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "70" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "90" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Tough+ @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Tough+ @BBL P1P 0.6 nozzle.json new file mode 100644 index 0000000000..c090797121 --- /dev/null +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Tough+ @BBL P1P 0.6 nozzle.json @@ -0,0 +1,83 @@ +{ + "type": "filament", + "name": "Bambu PLA Tough+ @BBL P1P 0.6 nozzle", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_38", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "70" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "90" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "nil" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA Tough+ @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu PLA Tough+ @BBL P1P.json index 3e4274de9c..b4e25f845b 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PLA Tough+ @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA Tough+ @BBL P1P.json @@ -1,142 +1,84 @@ { - "type": "filament", - "name": "Bambu PLA Tough+ @BBL P1P", - "inherits": "Bambu PLA Tough+ @base", - "from": "system", - "setting_id": "GFSA10_34", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "70" - ], - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "90" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "245", - "245" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA Tough+ @BBL P1P", + "inherits": "Bambu PLA Tough+ @base", + "from": "system", + "setting_id": "GFSA10_34", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "70" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "90" + ], + "filament_flow_ratio": [ + "0.98", + "0.985" + ], + "filament_long_retractions_when_cut": [ + "1", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "nil" + ], + "filament_retraction_length": [ + "nil", + "0.4" + ], + "filament_z_hop": [ + "nil", + "0.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA-CF @BBL P1P 0.8 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu PLA-CF @BBL P1P 0.8 nozzle.json index 8f168030d3..dcf38827ce 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PLA-CF @BBL P1P 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA-CF @BBL P1P 0.8 nozzle.json @@ -1,138 +1,85 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL P1P 0.8 nozzle", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_11", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "18", - "18" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA-CF @BBL P1P 0.8 nozzle", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_11", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "nil" + ], + "filament_max_volumetric_speed": [ + "18", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "nil" + ], + "filament_retraction_length": [ + "nil", + "0.8" + ], + "filament_z_hop": [ + "nil", + "0.4" + ], + "filament_z_hop_types": [ + "nil", + "Spiral Lift" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu PLA-CF @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu PLA-CF @BBL P1P.json index 52a180dbaf..82a84b4d1f 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu PLA-CF @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu PLA-CF @BBL P1P.json @@ -1,137 +1,80 @@ { - "type": "filament", - "name": "Bambu PLA-CF @BBL P1P", - "inherits": "Bambu PLA-CF @base", - "from": "system", - "setting_id": "GFSA50_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle" - ] -} + "type": "filament", + "name": "Bambu PLA-CF @BBL P1P", + "inherits": "Bambu PLA-CF @base", + "from": "system", + "setting_id": "GFSA50_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.975" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "15", + "25" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "nil", + "0.8" + ], + "filament_z_hop": [ + "nil", + "0.4" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu Support For PA PET @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu Support For PA PET @BBL P1P.json index a5f0eb6e5f..e97c505bd5 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu Support For PA PET @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu Support For PA PET @BBL P1P.json @@ -1,121 +1,48 @@ { - "type": "filament", - "name": "Bambu Support For PA/PET @BBL P1P", - "inherits": "Bambu Support For PA/PET @base", - "from": "system", - "setting_id": "GFSS03_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PA/PET @BBL P1P", + "inherits": "Bambu Support For PA/PET @base", + "from": "system", + "setting_id": "GFSS03_01", + "instantiation": "true", + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu Support For PLA @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu Support For PLA @BBL P1P 0.2 nozzle.json index 040e452f68..0a789a6941 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu Support For PLA @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Bambu Support For PLA @BBL P1P 0.2 nozzle.json @@ -1,137 +1,64 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL P1P 0.2 nozzle", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_11", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL P1P 0.2 nozzle", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_11", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu Support For PLA @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu Support For PLA @BBL P1P.json index daa5499c31..3bbd78f489 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu Support For PLA @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu Support For PLA @BBL P1P.json @@ -1,139 +1,66 @@ { - "type": "filament", - "name": "Bambu Support For PLA @BBL P1P", - "inherits": "Bambu Support For PLA @base", - "from": "system", - "setting_id": "GFSS02_12", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support For PLA @BBL P1P", + "inherits": "Bambu Support For PLA @base", + "from": "system", + "setting_id": "GFSS02_12", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu Support G @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu Support G @BBL P1P.json index f663ce25da..1c773ec4e4 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu Support G @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu Support G @BBL P1P.json @@ -1,121 +1,48 @@ { - "type": "filament", - "name": "Bambu Support G @BBL P1P", - "inherits": "Bambu Support G @base", - "from": "system", - "setting_id": "GFSS01_10", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "280", - "280" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support G @BBL P1P", + "inherits": "Bambu Support G @base", + "from": "system", + "setting_id": "GFSS01_10", + "instantiation": "true", + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "280", + "280" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu Support W @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/Bambu Support W @BBL P1P 0.2 nozzle.json index 57a3e44664..43c99264b1 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu Support W @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Bambu Support W @BBL P1P 0.2 nozzle.json @@ -1,137 +1,64 @@ { - "type": "filament", - "name": "Bambu Support W @BBL P1P 0.2 nozzle", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS00_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL P1P 0.2 nozzle", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS00_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu Support W @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu Support W @BBL P1P.json index 55e14c5edf..ca08dc8ce3 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu Support W @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu Support W @BBL P1P.json @@ -1,139 +1,66 @@ { - "type": "filament", - "name": "Bambu Support W @BBL P1P", - "inherits": "Bambu Support W @base", - "from": "system", - "setting_id": "GFSS02_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu Support W @BBL P1P", + "inherits": "Bambu Support W @base", + "from": "system", + "setting_id": "GFSS02_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Bambu TPU 95A @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Bambu TPU 95A @BBL P1P.json index 5550b07407..1cceb72d76 100644 --- a/resources/profiles/BBL/filament/P1P/Bambu TPU 95A @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Bambu TPU 95A @BBL P1P.json @@ -1,133 +1,60 @@ { - "type": "filament", - "name": "Bambu TPU 95A @BBL P1P", - "inherits": "Bambu TPU 95A @base", - "from": "system", - "setting_id": "GFSU01_10", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "3.6", - "3.6" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "45" - ], - "hot_plate_temp_initial_layer": [ - "45" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "45" - ], - "textured_plate_temp_initial_layer": [ - "45" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Bambu TPU 95A @BBL P1P", + "inherits": "Bambu TPU 95A @base", + "from": "system", + "setting_id": "GFSU01_10", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3.6", + "3.6" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "45" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic ABS @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/Generic ABS @BBL P1P 0.2 nozzle.json index 270932c7c6..a11c8b406c 100644 --- a/resources/profiles/BBL/filament/P1P/Generic ABS @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Generic ABS @BBL P1P 0.2 nozzle.json @@ -1,137 +1,60 @@ { - "type": "filament", - "name": "Generic ABS @BBL P1P 0.2 nozzle", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99_02", - "instantiation": "true", - "fan_max_speed": [ - "20" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic ABS @BBL P1P 0.2 nozzle", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_02", + "instantiation": "true", + "fan_max_speed": [ + "20" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic ABS @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Generic ABS @BBL P1P.json index b85c45d353..77f537261e 100644 --- a/resources/profiles/BBL/filament/P1P/Generic ABS @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Generic ABS @BBL P1P.json @@ -1,139 +1,66 @@ { - "type": "filament", - "name": "Generic ABS @BBL P1P", - "inherits": "Generic ABS @base", - "from": "system", - "setting_id": "GFSB99_01", - "instantiation": "true", - "fan_max_speed": [ - "20" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic ABS @BBL P1P", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GFSB99_01", + "instantiation": "true", + "fan_max_speed": [ + "20" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_retraction_length": [ + "0.4", + "nil" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic ASA @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/Generic ASA @BBL P1P 0.2 nozzle.json index b8a91fa88c..73cde11821 100644 --- a/resources/profiles/BBL/filament/P1P/Generic ASA @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Generic ASA @BBL P1P 0.2 nozzle.json @@ -1,119 +1,42 @@ { - "type": "filament", - "name": "Generic ASA @BBL P1P 0.2 nozzle", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98_11", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic ASA @BBL P1P 0.2 nozzle", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_11", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic ASA @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Generic ASA @BBL P1P.json index fc8d40a3c3..3ea5875d10 100644 --- a/resources/profiles/BBL/filament/P1P/Generic ASA @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Generic ASA @BBL P1P.json @@ -1,121 +1,44 @@ { - "type": "filament", - "name": "Generic ASA @BBL P1P", - "inherits": "Generic ASA @base", - "from": "system", - "setting_id": "GFSB98_10", - "instantiation": "true", - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic ASA @BBL P1P", + "inherits": "Generic ASA @base", + "from": "system", + "setting_id": "GFSB98_10", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic PA @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Generic PA @BBL P1P.json index 980f88f9df..250c9e8e49 100644 --- a/resources/profiles/BBL/filament/P1P/Generic PA @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Generic PA @BBL P1P.json @@ -1,124 +1,47 @@ { - "type": "filament", - "name": "Generic PA @BBL P1P", - "inherits": "Generic PA @base", - "from": "system", - "setting_id": "GFSN98_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "60" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PA @BBL P1P", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GFSN98_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "60" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic PA-CF @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Generic PA-CF @BBL P1P.json index f76f7cebf5..b43a11f978 100644 --- a/resources/profiles/BBL/filament/P1P/Generic PA-CF @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Generic PA-CF @BBL P1P.json @@ -1,121 +1,48 @@ { - "type": "filament", - "name": "Generic PA-CF @BBL P1P", - "inherits": "Generic PA-CF @base", - "from": "system", - "setting_id": "GFSN99_10", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PA-CF @BBL P1P", + "inherits": "Generic PA-CF @base", + "from": "system", + "setting_id": "GFSN99_10", + "instantiation": "true", + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic PC @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/Generic PC @BBL P1P 0.2 nozzle.json index 149cbf751b..75837ececb 100644 --- a/resources/profiles/BBL/filament/P1P/Generic PC @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Generic PC @BBL P1P 0.2 nozzle.json @@ -1,143 +1,70 @@ { - "type": "filament", - "name": "Generic PC @BBL P1P 0.2 nozzle", - "inherits": "Generic PC @base", - "from": "system", - "setting_id": "GFSC99_01", - "instantiation": "true", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "20" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PC @BBL P1P 0.2 nozzle", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_01", + "instantiation": "true", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic PC @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Generic PC @BBL P1P.json index 704b90375d..08086f47f6 100644 --- a/resources/profiles/BBL/filament/P1P/Generic PC @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Generic PC @BBL P1P.json @@ -1,145 +1,72 @@ { - "type": "filament", - "name": "Generic PC @BBL P1P", - "inherits": "Generic PC @base", - "from": "system", - "setting_id": "GFSC99_02", - "instantiation": "true", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_max_speed": [ - "20" - ], - "filament_flow_ratio": [ - "0.94", - "0.94" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "280", - "280" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PC @BBL P1P", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GFSC99_02", + "instantiation": "true", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_max_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.94", + "0.94" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic PETG @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/Generic PETG @BBL P1P 0.2 nozzle.json index 7e10f704d4..92ade7e51a 100644 --- a/resources/profiles/BBL/filament/P1P/Generic PETG @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Generic PETG @BBL P1P 0.2 nozzle.json @@ -1,131 +1,54 @@ { - "type": "filament", - "name": "Generic PETG @BBL P1P 0.2 nozzle", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_11", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "80" - ], - "hot_plate_temp_initial_layer": [ - "80" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "80" - ], - "textured_plate_temp_initial_layer": [ - "80" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG @BBL P1P 0.2 nozzle", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_11", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic PETG @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Generic PETG @BBL P1P.json index 01998b0bd0..ecca6c0709 100644 --- a/resources/profiles/BBL/filament/P1P/Generic PETG @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Generic PETG @BBL P1P.json @@ -1,133 +1,56 @@ { - "type": "filament", - "name": "Generic PETG @BBL P1P", - "inherits": "Generic PETG @base", - "from": "system", - "setting_id": "GFSG99_10", - "instantiation": "true", - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "80" - ], - "hot_plate_temp_initial_layer": [ - "80" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "80" - ], - "textured_plate_temp_initial_layer": [ - "80" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG @BBL P1P", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GFSG99_10", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic PETG-CF @BBL A1M.json b/resources/profiles/BBL/filament/P1P/Generic PETG-CF @BBL A1M.json index d20ebf4c8f..0037591fe8 100644 --- a/resources/profiles/BBL/filament/P1P/Generic PETG-CF @BBL A1M.json +++ b/resources/profiles/BBL/filament/P1P/Generic PETG-CF @BBL A1M.json @@ -1,16 +1,16 @@ { - "type": "filament", - "name": "Generic PETG-CF @BBL A1M", - "inherits": "Generic PETG-CF @base", - "from": "system", - "setting_id": "GFSG98_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "8" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG-CF @BBL A1M", + "inherits": "Generic PETG-CF @base", + "from": "system", + "setting_id": "GFSG98_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "8" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic PETG-CF @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Generic PETG-CF @BBL P1P.json index 8aed5cdd51..fc0eb4132b 100644 --- a/resources/profiles/BBL/filament/P1P/Generic PETG-CF @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Generic PETG-CF @BBL P1P.json @@ -1,133 +1,52 @@ { - "type": "filament", - "name": "Generic PETG-CF @BBL P1P", - "inherits": "Generic PETG-CF @base", - "from": "system", - "setting_id": "GFSG50_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "40" - ], - "fan_min_speed": [ - "5" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "overhang_fan_speed": [ - "100" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PETG-CF @BBL P1P", + "inherits": "Generic PETG-CF @base", + "from": "system", + "setting_id": "GFSG50_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "overhang_fan_speed": [ + "100" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic PLA @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/Generic PLA @BBL P1P 0.2 nozzle.json index 184f9fb820..fb08c2ca3c 100644 --- a/resources/profiles/BBL/filament/P1P/Generic PLA @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Generic PLA @BBL P1P 0.2 nozzle.json @@ -1,140 +1,67 @@ { - "type": "filament", - "name": "Generic PLA @BBL P1P 0.2 nozzle", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_11", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Generic PLA @BBL P1P 0.2 nozzle", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_11", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic PLA @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Generic PLA @BBL P1P.json index d8b0101523..23782d1f63 100644 --- a/resources/profiles/BBL/filament/P1P/Generic PLA @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Generic PLA @BBL P1P.json @@ -1,139 +1,66 @@ { - "type": "filament", - "name": "Generic PLA @BBL P1P", - "inherits": "Generic PLA @base", - "from": "system", - "setting_id": "GFSL99_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PLA @BBL P1P", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GFSL99_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic PLA Silk @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Generic PLA Silk @BBL P1P.json index d5f59fdd60..e2685df9da 100644 --- a/resources/profiles/BBL/filament/P1P/Generic PLA Silk @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Generic PLA Silk @BBL P1P.json @@ -1,121 +1,52 @@ { - "type": "filament", - "name": "Generic PLA Silk @BBL P1P", - "inherits": "Generic PLA Silk @base", - "from": "system", - "setting_id": "GFSL99_12", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "7.5", - "7.5" - ], - "filament_retraction_length": [ - "0.5", - "0.5" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PLA Silk @BBL P1P", + "inherits": "Generic PLA Silk @base", + "from": "system", + "setting_id": "GFSL99_12", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "7.5", + "7.5" + ], + "filament_retraction_length": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic PLA-CF @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Generic PLA-CF @BBL P1P.json index e9bb177e32..cb5333cd10 100644 --- a/resources/profiles/BBL/filament/P1P/Generic PLA-CF @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Generic PLA-CF @BBL P1P.json @@ -1,133 +1,56 @@ { - "type": "filament", - "name": "Generic PLA-CF @BBL P1P", - "inherits": "Generic PLA-CF @base", - "from": "system", - "setting_id": "GFSL98_10", - "instantiation": "true", - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PLA-CF @BBL P1P", + "inherits": "Generic PLA-CF @base", + "from": "system", + "setting_id": "GFSL98_10", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic PVA @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/Generic PVA @BBL P1P 0.2 nozzle.json index f31777cd92..47e125476b 100644 --- a/resources/profiles/BBL/filament/P1P/Generic PVA @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/Generic PVA @BBL P1P 0.2 nozzle.json @@ -1,131 +1,54 @@ { - "type": "filament", - "name": "Generic PVA @BBL P1P 0.2 nozzle", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_11", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "0.5", - "0.5" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "Generic PVA @BBL P1P 0.2 nozzle", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_11", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "0.5", + "0.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic PVA @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Generic PVA @BBL P1P.json index 419ccd398a..55cbed4c0f 100644 --- a/resources/profiles/BBL/filament/P1P/Generic PVA @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Generic PVA @BBL P1P.json @@ -1,139 +1,62 @@ { - "type": "filament", - "name": "Generic PVA @BBL P1P", - "inherits": "Generic PVA @base", - "from": "system", - "setting_id": "GFSS99_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "Generic PVA @BBL P1P", + "inherits": "Generic PVA @base", + "from": "system", + "setting_id": "GFSS99_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/Generic TPU @BBL P1P.json b/resources/profiles/BBL/filament/P1P/Generic TPU @BBL P1P.json index 88e4134e96..65d2637617 100644 --- a/resources/profiles/BBL/filament/P1P/Generic TPU @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/Generic TPU @BBL P1P.json @@ -1,136 +1,63 @@ { - "type": "filament", - "name": "Generic TPU @BBL P1P", - "inherits": "Generic TPU @base", - "from": "system", - "setting_id": "GFSR99_10", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "3.2", - "3.2" - ], - "filament_retraction_length": [ - "0.4", - "0.4" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "1", - "1" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "45" - ], - "hot_plate_temp_initial_layer": [ - "45" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "240", - "240" - ], - "nozzle_temperature_initial_layer": [ - "240", - "240" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "45" - ], - "textured_plate_temp_initial_layer": [ - "45" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif} \n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "Generic TPU @BBL P1P", + "inherits": "Generic TPU @base", + "from": "system", + "setting_id": "GFSR99_10", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3.2", + "3.2" + ], + "filament_retraction_length": [ + "0.4", + "0.4" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "45" + ], + "hot_plate_temp_initial_layer": [ + "45" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "240", + "240" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "textured_plate_temp": [ + "45" + ], + "textured_plate_temp_initial_layer": [ + "45" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif} \n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/PolyLite PLA @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/PolyLite PLA @BBL P1P 0.2 nozzle.json index 4fd6b666ff..c7e57b79d2 100644 --- a/resources/profiles/BBL/filament/P1P/PolyLite PLA @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/PolyLite PLA @BBL P1P 0.2 nozzle.json @@ -1,33 +1,33 @@ { - "type": "filament", - "name": "PolyLite PLA @BBL P1P 0.2 nozzle", - "inherits": "PolyLite PLA @BBL X1C", - "from": "system", - "setting_id": "GFSL25_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "PolyLite PLA @BBL P1P 0.2 nozzle", + "inherits": "PolyLite PLA @BBL X1C", + "from": "system", + "setting_id": "GFSL25_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/PolyLite PLA @BBL P1P.json b/resources/profiles/BBL/filament/P1P/PolyLite PLA @BBL P1P.json index 69209bc8e4..9d5f349afb 100644 --- a/resources/profiles/BBL/filament/P1P/PolyLite PLA @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/PolyLite PLA @BBL P1P.json @@ -1,142 +1,65 @@ { - "type": "filament", - "name": "PolyLite PLA @BBL P1P", - "inherits": "PolyLite PLA @base", - "from": "system", - "setting_id": "GFSL23_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "PolyLite PLA @BBL P1P", + "inherits": "PolyLite PLA @base", + "from": "system", + "setting_id": "GFSL23_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/PolyTerra PLA @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/PolyTerra PLA @BBL P1P 0.2 nozzle.json index fb85bceae3..c07ce9f912 100644 --- a/resources/profiles/BBL/filament/P1P/PolyTerra PLA @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/PolyTerra PLA @BBL P1P 0.2 nozzle.json @@ -1,33 +1,33 @@ { - "type": "filament", - "name": "PolyTerra PLA @BBL P1P 0.2 nozzle", - "inherits": "PolyTerra PLA @BBL X1C", - "from": "system", - "setting_id": "GFSL24_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "PolyTerra PLA @BBL P1P 0.2 nozzle", + "inherits": "PolyTerra PLA @BBL X1C", + "from": "system", + "setting_id": "GFSL24_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/PolyTerra PLA @BBL P1P.json b/resources/profiles/BBL/filament/P1P/PolyTerra PLA @BBL P1P.json index 7c8deeb49b..69b0921119 100644 --- a/resources/profiles/BBL/filament/P1P/PolyTerra PLA @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/PolyTerra PLA @BBL P1P.json @@ -1,145 +1,72 @@ { - "type": "filament", - "name": "PolyTerra PLA @BBL P1P", - "inherits": "PolyTerra PLA @base", - "from": "system", - "setting_id": "GFSL22_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "22", - "22" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ], - "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}" - ] -} + "type": "filament", + "name": "PolyTerra PLA @BBL P1P", + "inherits": "PolyTerra PLA @base", + "from": "system", + "setting_id": "GFSL22_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "22", + "22" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/eSUN PLA+ @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/P1P/eSUN PLA+ @BBL P1P 0.2 nozzle.json index 44f181161e..07b2229f3c 100644 --- a/resources/profiles/BBL/filament/P1P/eSUN PLA+ @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/P1P/eSUN PLA+ @BBL P1P 0.2 nozzle.json @@ -1,137 +1,64 @@ { - "type": "filament", - "name": "eSUN PLA+ @BBL P1P 0.2 nozzle", - "inherits": "eSUN PLA+ @base", - "from": "system", - "setting_id": "GFSL03_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "eSUN PLA+ @BBL P1P 0.2 nozzle", + "inherits": "eSUN PLA+ @base", + "from": "system", + "setting_id": "GFSL03_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/P1P/eSUN PLA+ @BBL P1P.json b/resources/profiles/BBL/filament/P1P/eSUN PLA+ @BBL P1P.json index a58a910685..c035419a13 100644 --- a/resources/profiles/BBL/filament/P1P/eSUN PLA+ @BBL P1P.json +++ b/resources/profiles/BBL/filament/P1P/eSUN PLA+ @BBL P1P.json @@ -1,142 +1,69 @@ { - "type": "filament", - "name": "eSUN PLA+ @BBL P1P", - "inherits": "eSUN PLA+ @base", - "from": "system", - "setting_id": "GFSL03_11", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "eSUN PLA+ @BBL P1P", + "inherits": "eSUN PLA+ @base", + "from": "system", + "setting_id": "GFSL03_11", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ABS @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite ABS @BBL A1 0.2 nozzle.json new file mode 100644 index 0000000000..cc4c87c614 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ABS @BBL A1 0.2 nozzle.json @@ -0,0 +1,32 @@ +{ + "type": "filament", + "name": "PolyLite ABS @BBL A1 0.2 nozzle", + "inherits": "PolyLite ABS @base", + "from": "system", + "setting_id": "GFSB60_07", + "instantiation": "true", + "fan_max_speed": [ + "20" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ABS @BBL A1.json b/resources/profiles/BBL/filament/PolyLite ABS @BBL A1.json new file mode 100644 index 0000000000..a3b7e81cb0 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ABS @BBL A1.json @@ -0,0 +1,31 @@ +{ + "type": "filament", + "name": "PolyLite ABS @BBL A1", + "inherits": "PolyLite ABS @base", + "from": "system", + "setting_id": "GFSB60_06", + "instantiation": "true", + "fan_max_speed": [ + "20" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ABS @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite ABS @BBL H2D 0.2 nozzle.json new file mode 100644 index 0000000000..2b495380a8 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ABS @BBL H2D 0.2 nozzle.json @@ -0,0 +1,47 @@ +{ + "type": "filament", + "name": "PolyLite ABS @BBL H2D 0.2 nozzle", + "inherits": "PolyLite ABS @base", + "from": "system", + "setting_id": "GFSB60_09", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ABS @BBL H2D.json b/resources/profiles/BBL/filament/PolyLite ABS @BBL H2D.json new file mode 100644 index 0000000000..d6958015ed --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ABS @BBL H2D.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "name": "PolyLite ABS @BBL H2D", + "inherits": "PolyLite ABS @base", + "from": "system", + "setting_id": "GFSB60_08", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "270", + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ABS @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite ABS @BBL H2DP 0.2 nozzle.json index eb3061aefd..e46a562702 100644 --- a/resources/profiles/BBL/filament/PolyLite ABS @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/PolyLite ABS @BBL H2DP 0.2 nozzle.json @@ -1,128 +1,47 @@ { - "type": "filament", - "name": "PolyLite ABS @BBL H2DP 0.2 nozzle", - "inherits": "PolyLite ABS @base", - "from": "system", - "setting_id": "GFSB60_13", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "PolyLite ABS @BBL H2DP 0.2 nozzle", + "inherits": "PolyLite ABS @base", + "from": "system", + "setting_id": "GFSB60_13", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ABS @BBL H2DP.json b/resources/profiles/BBL/filament/PolyLite ABS @BBL H2DP.json index 0b7bedab85..198c6f733a 100644 --- a/resources/profiles/BBL/filament/PolyLite ABS @BBL H2DP.json +++ b/resources/profiles/BBL/filament/PolyLite ABS @BBL H2DP.json @@ -1,130 +1,49 @@ { - "type": "filament", - "name": "PolyLite ABS @BBL H2DP", - "inherits": "PolyLite ABS @base", - "from": "system", - "setting_id": "GFSB60_12", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "PolyLite ABS @BBL H2DP", + "inherits": "PolyLite ABS @base", + "from": "system", + "setting_id": "GFSB60_12", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ABS @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite ABS @BBL P1P 0.2 nozzle.json new file mode 100644 index 0000000000..b0c5fdeea6 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ABS @BBL P1P 0.2 nozzle.json @@ -0,0 +1,15 @@ +{ + "type": "filament", + "name": "PolyLite ABS @BBL P1P 0.2 nozzle", + "inherits": "PolyLite ABS @BBL P1P", + "from": "system", + "setting_id": "GFSB60_05", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ABS @BBL P1P.json b/resources/profiles/BBL/filament/PolyLite ABS @BBL P1P.json new file mode 100644 index 0000000000..57d32de9a7 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ABS @BBL P1P.json @@ -0,0 +1,62 @@ +{ + "type": "filament", + "name": "PolyLite ABS @BBL P1P", + "inherits": "PolyLite ABS @base", + "from": "system", + "setting_id": "GFSB60_04", + "instantiation": "true", + "fan_max_speed": [ + "20" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ABS @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite ABS @BBL X1C 0.2 nozzle.json new file mode 100644 index 0000000000..00dfc1ce7c --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ABS @BBL X1C 0.2 nozzle.json @@ -0,0 +1,17 @@ +{ + "type": "filament", + "name": "PolyLite ABS @BBL X1C 0.2 nozzle", + "inherits": "PolyLite ABS @BBL X1C", + "from": "system", + "setting_id": "GFSB60_02", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ABS @BBL X1C.json b/resources/profiles/BBL/filament/PolyLite ABS @BBL X1C.json new file mode 100644 index 0000000000..1c7fc1b9cd --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ABS @BBL X1C.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "PolyLite ABS @BBL X1C", + "inherits": "PolyLite ABS @base", + "from": "system", + "setting_id": "GFSB60_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ABS @BBL X1E 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite ABS @BBL X1E 0.2 nozzle.json new file mode 100644 index 0000000000..19c60e69a6 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ABS @BBL X1E 0.2 nozzle.json @@ -0,0 +1,42 @@ +{ + "type": "filament", + "name": "PolyLite ABS @BBL X1E 0.2 nozzle", + "inherits": "PolyLite ABS @base", + "from": "system", + "setting_id": "GFSB60_03", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ABS @BBL X1E.json b/resources/profiles/BBL/filament/PolyLite ABS @BBL X1E.json new file mode 100644 index 0000000000..0faec54939 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ABS @BBL X1E.json @@ -0,0 +1,44 @@ +{ + "type": "filament", + "name": "PolyLite ABS @BBL X1E", + "inherits": "PolyLite ABS @base", + "from": "system", + "setting_id": "GFSB60_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ABS @base.json b/resources/profiles/BBL/filament/PolyLite ABS @base.json new file mode 100644 index 0000000000..fbf5115c8d --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ABS @base.json @@ -0,0 +1,23 @@ +{ + "type": "filament", + "name": "PolyLite ABS @base", + "inherits": "fdm_filament_abs", + "from": "system", + "filament_id": "OFOvv91M", + "instantiation": "false", + "filament_cost": [ + "26.9" + ], + "filament_density": [ + "1.03" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_vendor": [ + "Polymaker" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ASA @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite ASA @BBL A1 0.2 nozzle.json new file mode 100644 index 0000000000..9af117439b --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ASA @BBL A1 0.2 nozzle.json @@ -0,0 +1,14 @@ +{ + "type": "filament", + "name": "PolyLite ASA @BBL A1 0.2 nozzle", + "inherits": "PolyLite ASA @base", + "from": "system", + "setting_id": "GFSB61_06", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ASA @BBL A1.json b/resources/profiles/BBL/filament/PolyLite ASA @BBL A1.json new file mode 100644 index 0000000000..34b6c7aeec --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ASA @BBL A1.json @@ -0,0 +1,13 @@ +{ + "type": "filament", + "name": "PolyLite ASA @BBL A1", + "inherits": "PolyLite ASA @base", + "from": "system", + "setting_id": "GFSB61_07", + "instantiation": "true", + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ASA @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite ASA @BBL H2D 0.2 nozzle.json new file mode 100644 index 0000000000..5561e145a5 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ASA @BBL H2D 0.2 nozzle.json @@ -0,0 +1,47 @@ +{ + "type": "filament", + "name": "PolyLite ASA @BBL H2D 0.2 nozzle", + "inherits": "PolyLite ASA @base", + "from": "system", + "setting_id": "GFSB61_09", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ASA @BBL H2D.json b/resources/profiles/BBL/filament/PolyLite ASA @BBL H2D.json new file mode 100644 index 0000000000..6249f32a8d --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ASA @BBL H2D.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "name": "PolyLite ASA @BBL H2D", + "inherits": "PolyLite ASA @base", + "from": "system", + "setting_id": "GFSB61_08", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "13", + "13", + "13" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "260", + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ASA @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite ASA @BBL H2DP 0.2 nozzle.json index 190a1660e0..a7d2f4c0cf 100644 --- a/resources/profiles/BBL/filament/PolyLite ASA @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/PolyLite ASA @BBL H2DP 0.2 nozzle.json @@ -1,128 +1,47 @@ { - "type": "filament", - "name": "PolyLite ASA @BBL H2DP 0.2 nozzle", - "inherits": "PolyLite ASA @base", - "from": "system", - "setting_id": "GFSB61_13", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "PolyLite ASA @BBL H2DP 0.2 nozzle", + "inherits": "PolyLite ASA @base", + "from": "system", + "setting_id": "GFSB61_13", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ASA @BBL H2DP.json b/resources/profiles/BBL/filament/PolyLite ASA @BBL H2DP.json index e988e906e5..c783391392 100644 --- a/resources/profiles/BBL/filament/PolyLite ASA @BBL H2DP.json +++ b/resources/profiles/BBL/filament/PolyLite ASA @BBL H2DP.json @@ -1,130 +1,49 @@ { - "type": "filament", - "name": "PolyLite ASA @BBL H2DP", - "inherits": "PolyLite ASA @base", - "from": "system", - "setting_id": "GFSB61_12", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "13", - "13" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "PolyLite ASA @BBL H2DP", + "inherits": "PolyLite ASA @base", + "from": "system", + "setting_id": "GFSB61_12", + "instantiation": "true", + "chamber_temperatures": [ + "60" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "13", + "13" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ASA @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite ASA @BBL P1P 0.2 nozzle.json new file mode 100644 index 0000000000..df67920c50 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ASA @BBL P1P 0.2 nozzle.json @@ -0,0 +1,15 @@ +{ + "type": "filament", + "name": "PolyLite ASA @BBL P1P 0.2 nozzle", + "inherits": "PolyLite ASA @BBL P1P", + "from": "system", + "setting_id": "GFSB61_05", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ASA @BBL P1P.json b/resources/profiles/BBL/filament/PolyLite ASA @BBL P1P.json new file mode 100644 index 0000000000..1c12dfe123 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ASA @BBL P1P.json @@ -0,0 +1,44 @@ +{ + "type": "filament", + "name": "PolyLite ASA @BBL P1P", + "inherits": "PolyLite ASA @base", + "from": "system", + "setting_id": "GFSB61_04", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "13", + "13" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ASA @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite ASA @BBL X1C 0.2 nozzle.json new file mode 100644 index 0000000000..b72ce3ee14 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ASA @BBL X1C 0.2 nozzle.json @@ -0,0 +1,17 @@ +{ + "type": "filament", + "name": "PolyLite ASA @BBL X1C 0.2 nozzle", + "inherits": "PolyLite ASA @BBL X1C", + "from": "system", + "setting_id": "GFSB61_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "compatible_printers": [ + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ASA @BBL X1C.json b/resources/profiles/BBL/filament/PolyLite ASA @BBL X1C.json new file mode 100644 index 0000000000..f6468d59dc --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ASA @BBL X1C.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "PolyLite ASA @BBL X1C", + "inherits": "PolyLite ASA @base", + "from": "system", + "setting_id": "GFSB61_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "13", + "13" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ASA @BBL X1E 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite ASA @BBL X1E 0.2 nozzle.json new file mode 100644 index 0000000000..5fbc07eba1 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ASA @BBL X1E 0.2 nozzle.json @@ -0,0 +1,15 @@ +{ + "type": "filament", + "name": "PolyLite ASA @BBL X1E 0.2 nozzle", + "inherits": "PolyLite ASA @BBL X1E", + "from": "system", + "setting_id": "GFSB61_03", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ASA @BBL X1E.json b/resources/profiles/BBL/filament/PolyLite ASA @BBL X1E.json new file mode 100644 index 0000000000..7a38dd89e0 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ASA @BBL X1E.json @@ -0,0 +1,44 @@ +{ + "type": "filament", + "name": "PolyLite ASA @BBL X1E", + "inherits": "PolyLite ASA @base", + "from": "system", + "setting_id": "GFSB61_02", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "13", + "13" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite ASA @base.json b/resources/profiles/BBL/filament/PolyLite ASA @base.json new file mode 100644 index 0000000000..37321c6c18 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite ASA @base.json @@ -0,0 +1,41 @@ +{ + "type": "filament", + "name": "PolyLite ASA @base", + "inherits": "fdm_filament_asa", + "from": "system", + "filament_id": "OFvrXuV7", + "instantiation": "false", + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "filament_cost": [ + "23.6" + ], + "filament_density": [ + "1.02" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "13" + ], + "filament_vendor": [ + "Polymaker" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PETG @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite PETG @BBL A1 0.2 nozzle.json new file mode 100644 index 0000000000..abf1ba8144 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PETG @BBL A1 0.2 nozzle.json @@ -0,0 +1,29 @@ +{ + "type": "filament", + "name": "PolyLite PETG @BBL A1 0.2 nozzle", + "inherits": "PolyLite PETG @base", + "from": "system", + "setting_id": "GFSG60_07", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PETG @BBL A1.json b/resources/profiles/BBL/filament/PolyLite PETG @BBL A1.json new file mode 100644 index 0000000000..af9b277e33 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PETG @BBL A1.json @@ -0,0 +1,31 @@ +{ + "type": "filament", + "name": "PolyLite PETG @BBL A1", + "inherits": "PolyLite PETG @base", + "from": "system", + "setting_id": "GFSG60_06", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "8" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "compatible_printers": [ + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PETG @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite PETG @BBL A1M 0.2 nozzle.json new file mode 100644 index 0000000000..a7cc88d94e --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PETG @BBL A1M 0.2 nozzle.json @@ -0,0 +1,14 @@ +{ + "type": "filament", + "name": "PolyLite PETG @BBL A1M 0.2 nozzle", + "inherits": "PolyLite PETG @BBL A1M", + "from": "system", + "setting_id": "GFSG60_05", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PETG @BBL A1M.json b/resources/profiles/BBL/filament/PolyLite PETG @BBL A1M.json new file mode 100644 index 0000000000..81ade454bf --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PETG @BBL A1M.json @@ -0,0 +1,19 @@ +{ + "type": "filament", + "name": "PolyLite PETG @BBL A1M", + "inherits": "PolyLite PETG @base", + "from": "system", + "setting_id": "GFSG60_04", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "8" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PETG @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite PETG @BBL H2D 0.2 nozzle.json new file mode 100644 index 0000000000..cd37d7c51a --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PETG @BBL H2D 0.2 nozzle.json @@ -0,0 +1,44 @@ +{ + "type": "filament", + "name": "PolyLite PETG @BBL H2D 0.2 nozzle", + "inherits": "PolyLite PETG @base", + "from": "system", + "setting_id": "GFSG60_09", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PETG @BBL H2D.json b/resources/profiles/BBL/filament/PolyLite PETG @BBL H2D.json new file mode 100644 index 0000000000..3e90dda823 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PETG @BBL H2D.json @@ -0,0 +1,55 @@ +{ + "type": "filament", + "name": "PolyLite PETG @BBL H2D", + "inherits": "PolyLite PETG @base", + "from": "system", + "setting_id": "GFSG60_08", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PETG @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite PETG @BBL H2DP 0.2 nozzle.json index d1282565a6..ff8daffd6e 100644 --- a/resources/profiles/BBL/filament/PolyLite PETG @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/PolyLite PETG @BBL H2DP 0.2 nozzle.json @@ -1,125 +1,44 @@ { - "type": "filament", - "name": "PolyLite PETG @BBL H2DP 0.2 nozzle", - "inherits": "PolyLite PETG @base", - "from": "system", - "setting_id": "GFSG60_15", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "PolyLite PETG @BBL H2DP 0.2 nozzle", + "inherits": "PolyLite PETG @base", + "from": "system", + "setting_id": "GFSG60_15", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PETG @BBL H2DP.json b/resources/profiles/BBL/filament/PolyLite PETG @BBL H2DP.json index 4a4e2abb5f..24fcafab4f 100644 --- a/resources/profiles/BBL/filament/PolyLite PETG @BBL H2DP.json +++ b/resources/profiles/BBL/filament/PolyLite PETG @BBL H2DP.json @@ -1,130 +1,49 @@ { - "type": "filament", - "name": "PolyLite PETG @BBL H2DP", - "inherits": "PolyLite PETG @base", - "from": "system", - "setting_id": "GFSG60_14", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "PolyLite PETG @BBL H2DP", + "inherits": "PolyLite PETG @base", + "from": "system", + "setting_id": "GFSG60_14", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PETG @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite PETG @BBL H2S 0.2 nozzle.json index c7bda040d6..0bdcad3735 100644 --- a/resources/profiles/BBL/filament/PolyLite PETG @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/PolyLite PETG @BBL H2S 0.2 nozzle.json @@ -1,128 +1,63 @@ { - "type": "filament", - "name": "PolyLite PETG @BBL H2S 0.2 nozzle", - "inherits": "PolyLite PETG @base", - "from": "system", - "setting_id": "GFSG60_11", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "PolyLite PETG @BBL H2S 0.2 nozzle", + "inherits": "PolyLite PETG @base", + "from": "system", + "setting_id": "GFSG60_11", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PETG @BBL H2S.json b/resources/profiles/BBL/filament/PolyLite PETG @BBL H2S.json index 996592f2e0..912cb9a3ed 100644 --- a/resources/profiles/BBL/filament/PolyLite PETG @BBL H2S.json +++ b/resources/profiles/BBL/filament/PolyLite PETG @BBL H2S.json @@ -1,130 +1,70 @@ { - "type": "filament", - "name": "PolyLite PETG @BBL H2S", - "inherits": "PolyLite PETG @base", - "from": "system", - "setting_id": "GFSG60_10", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "PolyLite PETG @BBL H2S", + "inherits": "PolyLite PETG @base", + "from": "system", + "setting_id": "GFSG60_10", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_long_retractions_when_cut": [ + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "11.5", + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature": [ + "255", + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255", + "255" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PETG @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite PETG @BBL P1P 0.2 nozzle.json new file mode 100644 index 0000000000..6460d78cc5 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PETG @BBL P1P 0.2 nozzle.json @@ -0,0 +1,15 @@ +{ + "type": "filament", + "name": "PolyLite PETG @BBL P1P 0.2 nozzle", + "inherits": "PolyLite PETG @BBL P1P", + "from": "system", + "setting_id": "GFSG60_03", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PETG @BBL P1P.json b/resources/profiles/BBL/filament/PolyLite PETG @BBL P1P.json new file mode 100644 index 0000000000..9b0b409cb9 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PETG @BBL P1P.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "PolyLite PETG @BBL P1P", + "inherits": "PolyLite PETG @base", + "from": "system", + "setting_id": "GFSG60_02", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PETG @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite PETG @BBL X1C 0.2 nozzle.json new file mode 100644 index 0000000000..3a20a86939 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PETG @BBL X1C 0.2 nozzle.json @@ -0,0 +1,18 @@ +{ + "type": "filament", + "name": "PolyLite PETG @BBL X1C 0.2 nozzle", + "inherits": "PolyLite PETG @BBL X1C", + "from": "system", + "setting_id": "GFSG60_01", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PETG @BBL X1C.json b/resources/profiles/BBL/filament/PolyLite PETG @BBL X1C.json new file mode 100644 index 0000000000..fb7f801850 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PETG @BBL X1C.json @@ -0,0 +1,56 @@ +{ + "type": "filament", + "name": "PolyLite PETG @BBL X1C", + "inherits": "PolyLite PETG @base", + "from": "system", + "setting_id": "GFSG60_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "11.5", + "11.5" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PETG @base.json b/resources/profiles/BBL/filament/PolyLite PETG @base.json new file mode 100644 index 0000000000..fbb0bc606f --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PETG @base.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "PolyLite PETG @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "OF0UJcb6", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_vendor": [ + "Polymaker" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PLA @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite PLA @BBL A1 0.2 nozzle.json new file mode 100644 index 0000000000..8f74b11f71 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PLA @BBL A1 0.2 nozzle.json @@ -0,0 +1,38 @@ +{ + "type": "filament", + "name": "PolyLite PLA @BBL A1 0.2 nozzle", + "inherits": "PolyLite PLA @base", + "from": "system", + "setting_id": "GFSL00_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1.6" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PLA @BBL A1.json b/resources/profiles/BBL/filament/PolyLite PLA @BBL A1.json new file mode 100644 index 0000000000..442136617d --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PLA @BBL A1.json @@ -0,0 +1,40 @@ +{ + "type": "filament", + "name": "PolyLite PLA @BBL A1", + "inherits": "PolyLite PLA @base", + "from": "system", + "setting_id": "GFSL00_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PLA @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite PLA @BBL A1M 0.2 nozzle.json new file mode 100644 index 0000000000..e4370afe23 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PLA @BBL A1M 0.2 nozzle.json @@ -0,0 +1,38 @@ +{ + "type": "filament", + "name": "PolyLite PLA @BBL A1M 0.2 nozzle", + "inherits": "PolyLite PLA @base", + "from": "system", + "setting_id": "GFSL00_01", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1.6" + ], + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PLA @BBL A1M.json b/resources/profiles/BBL/filament/PolyLite PLA @BBL A1M.json new file mode 100644 index 0000000000..8394e1c7a0 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PLA @BBL A1M.json @@ -0,0 +1,40 @@ +{ + "type": "filament", + "name": "PolyLite PLA @BBL A1M", + "inherits": "PolyLite PLA @base", + "from": "system", + "setting_id": "GFSL00_00", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PLA @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite PLA @BBL H2D 0.2 nozzle.json new file mode 100644 index 0000000000..a3a4f16430 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PLA @BBL H2D 0.2 nozzle.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "PolyLite PLA @BBL H2D 0.2 nozzle", + "inherits": "PolyLite PLA @base", + "from": "system", + "setting_id": "GFSL00_05", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PLA @BBL H2D.json b/resources/profiles/BBL/filament/PolyLite PLA @BBL H2D.json new file mode 100644 index 0000000000..1401530e33 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PLA @BBL H2D.json @@ -0,0 +1,58 @@ +{ + "type": "filament", + "name": "PolyLite PLA @BBL H2D", + "inherits": "PolyLite PLA @base", + "from": "system", + "setting_id": "GFSL00_04", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PLA @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite PLA @BBL H2DP 0.2 nozzle.json index a39780c993..40cc6c44ff 100644 --- a/resources/profiles/BBL/filament/PolyLite PLA @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/PolyLite PLA @BBL H2DP 0.2 nozzle.json @@ -1,131 +1,50 @@ { - "type": "filament", - "name": "PolyLite PLA @BBL H2DP 0.2 nozzle", - "inherits": "PolyLite PLA @base", - "from": "system", - "setting_id": "GFSL00_11", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "PolyLite PLA @BBL H2DP 0.2 nozzle", + "inherits": "PolyLite PLA @base", + "from": "system", + "setting_id": "GFSL00_11", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PLA @BBL H2DP.json b/resources/profiles/BBL/filament/PolyLite PLA @BBL H2DP.json index fd3121455c..221400c275 100644 --- a/resources/profiles/BBL/filament/PolyLite PLA @BBL H2DP.json +++ b/resources/profiles/BBL/filament/PolyLite PLA @BBL H2DP.json @@ -1,133 +1,52 @@ { - "type": "filament", - "name": "PolyLite PLA @BBL H2DP", - "inherits": "PolyLite PLA @base", - "from": "system", - "setting_id": "GFSL00_10", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "PolyLite PLA @BBL H2DP", + "inherits": "PolyLite PLA @base", + "from": "system", + "setting_id": "GFSL00_10", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PLA @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite PLA @BBL H2S 0.2 nozzle.json index e0e9a27a90..bcd5226a9e 100644 --- a/resources/profiles/BBL/filament/PolyLite PLA @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/PolyLite PLA @BBL H2S 0.2 nozzle.json @@ -1,134 +1,69 @@ { - "type": "filament", - "name": "PolyLite PLA @BBL H2S 0.2 nozzle", - "inherits": "PolyLite PLA @base", - "from": "system", - "setting_id": "GFSL00_07", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "PolyLite PLA @BBL H2S 0.2 nozzle", + "inherits": "PolyLite PLA @base", + "from": "system", + "setting_id": "GFSL00_07", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PLA @BBL H2S.json b/resources/profiles/BBL/filament/PolyLite PLA @BBL H2S.json index 412c539efe..8ff8f89d35 100644 --- a/resources/profiles/BBL/filament/PolyLite PLA @BBL H2S.json +++ b/resources/profiles/BBL/filament/PolyLite PLA @BBL H2S.json @@ -1,136 +1,76 @@ { - "type": "filament", - "name": "PolyLite PLA @BBL H2S", - "inherits": "PolyLite PLA @base", - "from": "system", - "setting_id": "GFSL00_06", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "PolyLite PLA @BBL H2S", + "inherits": "PolyLite PLA @base", + "from": "system", + "setting_id": "GFSL00_06", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_long_retractions_when_cut": [ + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "15", + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PLA @BBL X1.json b/resources/profiles/BBL/filament/PolyLite PLA @BBL X1.json new file mode 100644 index 0000000000..7fa1a7c38a --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PLA @BBL X1.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "PolyLite PLA @BBL X1", + "inherits": "PolyLite PLA @base", + "from": "system", + "setting_id": "GFSL23", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PLA @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyLite PLA @BBL X1C 0.2 nozzle.json new file mode 100644 index 0000000000..9e77e960c3 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PLA @BBL X1C 0.2 nozzle.json @@ -0,0 +1,18 @@ +{ + "type": "filament", + "name": "PolyLite PLA @BBL X1C 0.2 nozzle", + "inherits": "PolyLite PLA @BBL X1C", + "from": "system", + "setting_id": "GFSL25", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1.6", + "1.6" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PLA @BBL X1C.json b/resources/profiles/BBL/filament/PolyLite PLA @BBL X1C.json new file mode 100644 index 0000000000..5a48b53ef0 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PLA @BBL X1C.json @@ -0,0 +1,53 @@ +{ + "type": "filament", + "name": "PolyLite PLA @BBL X1C", + "inherits": "PolyLite PLA @base", + "from": "system", + "setting_id": "GFSL19", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyLite PLA @base.json b/resources/profiles/BBL/filament/PolyLite PLA @base.json new file mode 100644 index 0000000000..889386ff02 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyLite PLA @base.json @@ -0,0 +1,17 @@ +{ + "type": "filament", + "name": "PolyLite PLA @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OF5CgdDq", + "instantiation": "false", + "filament_cost": [ + "25.4" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_vendor": [ + "Polymaker" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyTerra PLA @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyTerra PLA @BBL A1 0.2 nozzle.json new file mode 100644 index 0000000000..8d2f7468e5 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyTerra PLA @BBL A1 0.2 nozzle.json @@ -0,0 +1,38 @@ +{ + "type": "filament", + "name": "PolyTerra PLA @BBL A1 0.2 nozzle", + "inherits": "PolyTerra PLA @base", + "from": "system", + "setting_id": "GFSL01_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1.8" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyTerra PLA @BBL A1.json b/resources/profiles/BBL/filament/PolyTerra PLA @BBL A1.json new file mode 100644 index 0000000000..85c3dc64d7 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyTerra PLA @BBL A1.json @@ -0,0 +1,40 @@ +{ + "type": "filament", + "name": "PolyTerra PLA @BBL A1", + "inherits": "PolyTerra PLA @base", + "from": "system", + "setting_id": "GFSL01_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "22" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyTerra PLA @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyTerra PLA @BBL A1M 0.2 nozzle.json new file mode 100644 index 0000000000..e0d6699dfc --- /dev/null +++ b/resources/profiles/BBL/filament/PolyTerra PLA @BBL A1M 0.2 nozzle.json @@ -0,0 +1,38 @@ +{ + "type": "filament", + "name": "PolyTerra PLA @BBL A1M 0.2 nozzle", + "inherits": "PolyTerra PLA @base", + "from": "system", + "setting_id": "GFSL01_01", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1.8" + ], + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyTerra PLA @BBL A1M.json b/resources/profiles/BBL/filament/PolyTerra PLA @BBL A1M.json new file mode 100644 index 0000000000..7a9187dd37 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyTerra PLA @BBL A1M.json @@ -0,0 +1,40 @@ +{ + "type": "filament", + "name": "PolyTerra PLA @BBL A1M", + "inherits": "PolyTerra PLA @base", + "from": "system", + "setting_id": "GFSL01_00", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "22" + ], + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2D 0.2 nozzle.json new file mode 100644 index 0000000000..953eeecc26 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2D 0.2 nozzle.json @@ -0,0 +1,54 @@ +{ + "type": "filament", + "name": "PolyTerra PLA @BBL H2D 0.2 nozzle", + "inherits": "PolyTerra PLA @base", + "from": "system", + "setting_id": "GFSL01_05", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2D.json b/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2D.json new file mode 100644 index 0000000000..7ac8e71cb9 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2D.json @@ -0,0 +1,63 @@ +{ + "type": "filament", + "name": "PolyTerra PLA @BBL H2D", + "inherits": "PolyTerra PLA @base", + "from": "system", + "setting_id": "GFSL01_04", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "22", + "22", + "22" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2DP 0.2 nozzle.json index d49d58adb9..a6b996fa3d 100644 --- a/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2DP 0.2 nozzle.json @@ -1,131 +1,54 @@ { - "type": "filament", - "name": "PolyTerra PLA @BBL H2DP 0.2 nozzle", - "inherits": "PolyTerra PLA @base", - "from": "system", - "setting_id": "GFSL01_11", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "PolyTerra PLA @BBL H2DP 0.2 nozzle", + "inherits": "PolyTerra PLA @base", + "from": "system", + "setting_id": "GFSL01_11", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2DP.json b/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2DP.json index c3d4420887..f9923d5ca0 100644 --- a/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2DP.json +++ b/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2DP.json @@ -1,133 +1,56 @@ { - "type": "filament", - "name": "PolyTerra PLA @BBL H2DP", - "inherits": "PolyTerra PLA @base", - "from": "system", - "setting_id": "GFSL01_10", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "22", - "22" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "PolyTerra PLA @BBL H2DP", + "inherits": "PolyTerra PLA @base", + "from": "system", + "setting_id": "GFSL01_10", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "22", + "22" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2S 0.2 nozzle.json index d8411109ca..38d5fec0ca 100644 --- a/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2S 0.2 nozzle.json @@ -1,134 +1,73 @@ { - "type": "filament", - "name": "PolyTerra PLA @BBL H2S 0.2 nozzle", - "inherits": "PolyTerra PLA @base", - "from": "system", - "setting_id": "GFSL01_07", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "PolyTerra PLA @BBL H2S 0.2 nozzle", + "inherits": "PolyTerra PLA @base", + "from": "system", + "setting_id": "GFSL01_07", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2S.json b/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2S.json index cb993e30f0..ee6b8e2e36 100644 --- a/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2S.json +++ b/resources/profiles/BBL/filament/PolyTerra PLA @BBL H2S.json @@ -1,136 +1,81 @@ { - "type": "filament", - "name": "PolyTerra PLA @BBL H2S", - "inherits": "PolyTerra PLA @base", - "from": "system", - "setting_id": "GFSL01_06", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "22", - "22" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "PolyTerra PLA @BBL H2S", + "inherits": "PolyTerra PLA @base", + "from": "system", + "setting_id": "GFSL01_06", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "22", + "22", + "22" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyTerra PLA @BBL X1.json b/resources/profiles/BBL/filament/PolyTerra PLA @BBL X1.json new file mode 100644 index 0000000000..6ba4b8cea7 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyTerra PLA @BBL X1.json @@ -0,0 +1,54 @@ +{ + "type": "filament", + "name": "PolyTerra PLA @BBL X1", + "inherits": "PolyTerra PLA @base", + "from": "system", + "setting_id": "GFSL22", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "22", + "22" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyTerra PLA @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/PolyTerra PLA @BBL X1C 0.2 nozzle.json new file mode 100644 index 0000000000..c98cd55f63 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyTerra PLA @BBL X1C 0.2 nozzle.json @@ -0,0 +1,18 @@ +{ + "type": "filament", + "name": "PolyTerra PLA @BBL X1C 0.2 nozzle", + "inherits": "PolyTerra PLA @BBL X1C", + "from": "system", + "setting_id": "GFSL24", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyTerra PLA @BBL X1C.json b/resources/profiles/BBL/filament/PolyTerra PLA @BBL X1C.json new file mode 100644 index 0000000000..54103da726 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyTerra PLA @BBL X1C.json @@ -0,0 +1,57 @@ +{ + "type": "filament", + "name": "PolyTerra PLA @BBL X1C", + "inherits": "PolyTerra PLA @base", + "from": "system", + "setting_id": "GFSL18", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "22", + "22" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/PolyTerra PLA @base.json b/resources/profiles/BBL/filament/PolyTerra PLA @base.json new file mode 100644 index 0000000000..9921a87a02 --- /dev/null +++ b/resources/profiles/BBL/filament/PolyTerra PLA @base.json @@ -0,0 +1,20 @@ +{ + "type": "filament", + "name": "PolyTerra PLA @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFW29a9R", + "instantiation": "false", + "filament_cost": [ + "25.4" + ], + "filament_density": [ + "1.31" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "Polymaker" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF @BBL H2D.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF @BBL H2D.json index 3df18a415b..0781e6b428 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF @BBL H2D.json @@ -1,129 +1,61 @@ { - "type": "filament", - "name": "Fiberon PA12-CF @BBL H2D", - "inherits": "Fiberon PA12-CF @base", - "from": "system", - "setting_id": "GFL52_10", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "260", - "260" - ], - "nozzle_temperature_range_high": [ - "300", - "300" - ], - "nozzle_temperature": [ - "300", - "300" - ], - "nozzle_temperature_initial_layer": [ - "300", - "300" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ] -} + "type": "filament", + "name": "Fiberon PA12-CF @BBL H2D", + "inherits": "Fiberon PA12-CF @base", + "from": "system", + "setting_id": "GFL52_10", + "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.", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "14", + "14" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_low": [ + "260", + "260" + ], + "nozzle_temperature_range_high": [ + "300", + "300" + ], + "nozzle_temperature": [ + "300", + "300" + ], + "nozzle_temperature_initial_layer": [ + "300", + "300" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF @BBL X1C.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF @BBL X1C.json index 7e063562a8..77ec86e028 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF @BBL X1C.json @@ -1,124 +1,47 @@ { - "type": "filament", - "name": "Fiberon PA12-CF @BBL X1C", - "inherits": "Fiberon PA12-CF @base", - "from": "system", - "setting_id": "GFSL52_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "14", - "14" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "300", - "300" - ], - "nozzle_temperature_initial_layer": [ - "300", - "300" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Fiberon PA12-CF @BBL X1C", + "inherits": "Fiberon PA12-CF @base", + "from": "system", + "setting_id": "GFSL52_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "14", + "14" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "300", + "300" + ], + "nozzle_temperature_initial_layer": [ + "300", + "300" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF @base.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF @base.json index a5aa03bf9b..53026a9fc6 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF @base.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PA12-CF @base.json @@ -1,71 +1,74 @@ { - "type": "filament", - "name": "Fiberon PA12-CF @base", - "inherits": "fdm_filament_pa", - "from": "system", - "filament_id": "OFX0ycRQ", - "instantiation": "false", - "eng_plate_temp": [ - "40" - ], - "eng_plate_temp_initial_layer": [ - "40" - ], - "fan_cooling_layer_time": [ - "15" - ], - "fan_max_speed": [ - "100" - ], - "filament_cost": [ - "99.99" - ], - "filament_density": [ - "1.06" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "14" - ], - "filament_type": [ - "PA-CF" - ], - "filament_vendor": [ - "Polymaker" - ], - "full_fan_speed_layer": [ - "2" - ], - "hot_plate_temp": [ - "40" - ], - "hot_plate_temp_initial_layer": [ - "40" - ], - "nozzle_temperature": [ - "300" - ], - "nozzle_temperature_initial_layer": [ - "300" - ], - "nozzle_temperature_range_low": [ - "260" - ], - "overhang_fan_speed": [ - "100" - ], - "reduce_fan_stop_start_freq": [ - "1" - ], - "temperature_vitrification": [ - "131" - ], - "textured_plate_temp": [ - "40" - ], - "textured_plate_temp_initial_layer": [ - "40" - ] -} + "type": "filament", + "name": "Fiberon PA12-CF @base", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "OFX0ycRQ", + "instantiation": "false", + "eng_plate_temp": [ + "40" + ], + "eng_plate_temp_initial_layer": [ + "40" + ], + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "100" + ], + "filament_cost": [ + "99.99" + ], + "filament_density": [ + "1.06" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "14" + ], + "filament_type": [ + "PA-CF" + ], + "filament_vendor": [ + "Polymaker" + ], + "full_fan_speed_layer": [ + "2" + ], + "additional_fan_full_speed_layer": [ + "2" + ], + "hot_plate_temp": [ + "40" + ], + "hot_plate_temp_initial_layer": [ + "40" + ], + "nozzle_temperature": [ + "300" + ], + "nozzle_temperature_initial_layer": [ + "300" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "temperature_vitrification": [ + "131" + ], + "textured_plate_temp": [ + "40" + ], + "textured_plate_temp_initial_layer": [ + "40" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF @BBL H2D.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF @BBL H2D.json index f68c6fbec1..0e00407d54 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF @BBL H2D.json @@ -1,129 +1,60 @@ { - "type": "filament", - "name": "Fiberon PA6-CF @BBL H2D", - "inherits": "Fiberon PA6-CF @base", - "from": "system", - "setting_id": "GFL50_10", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "14", - "14" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "280", - "280" - ], - "nozzle_temperature_range_high": [ - "300", - "300" - ], - "nozzle_temperature": [ - "300", - "300" - ], - "nozzle_temperature_initial_layer": [ - "300", - "300" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ] -} + "type": "filament", + "name": "Fiberon PA6-CF @BBL H2D", + "inherits": "Fiberon PA6-CF @base", + "from": "system", + "setting_id": "GFL50_10", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "14", + "14" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_low": [ + "280", + "280" + ], + "nozzle_temperature_range_high": [ + "300", + "300" + ], + "nozzle_temperature": [ + "300", + "300" + ], + "nozzle_temperature_initial_layer": [ + "300", + "300" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF @BBL X1C.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF @BBL X1C.json index f5d2e10233..c44de48c6e 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF @BBL X1C.json @@ -1,124 +1,47 @@ { - "type": "filament", - "name": "Fiberon PA6-CF @BBL X1C", - "inherits": "Fiberon PA6-CF @base", - "from": "system", - "setting_id": "GFSL50_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "14", - "14" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "300", - "300" - ], - "nozzle_temperature_initial_layer": [ - "300", - "300" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Fiberon PA6-CF @BBL X1C", + "inherits": "Fiberon PA6-CF @base", + "from": "system", + "setting_id": "GFSL50_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "14", + "14" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "300", + "300" + ], + "nozzle_temperature_initial_layer": [ + "300", + "300" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF @base.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF @base.json index 823e8a0ff1..c17c5a8807 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF @base.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-CF @base.json @@ -1,68 +1,68 @@ { - "type": "filament", - "name": "Fiberon PA6-CF @base", - "inherits": "fdm_filament_pa", - "from": "system", - "filament_id": "OFkOviHk", - "instantiation": "false", - "eng_plate_temp": [ - "40" - ], - "eng_plate_temp_initial_layer": [ - "40" - ], - "fan_cooling_layer_time": [ - "15" - ], - "fan_max_speed": [ - "100" - ], - "filament_cost": [ - "83.99" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "14" - ], - "filament_type": [ - "PA6-CF" - ], - "filament_vendor": [ - "Polymaker" - ], - "hot_plate_temp": [ - "40" - ], - "hot_plate_temp_initial_layer": [ - "40" - ], - "nozzle_temperature": [ - "300" - ], - "nozzle_temperature_initial_layer": [ - "300" - ], - "nozzle_temperature_range_low": [ - "280" - ], - "overhang_fan_speed": [ - "100" - ], - "reduce_fan_stop_start_freq": [ - "1" - ], - "temperature_vitrification": [ - "215" - ], - "textured_plate_temp": [ - "40" - ], - "textured_plate_temp_initial_layer": [ - "40" - ] -} + "type": "filament", + "name": "Fiberon PA6-CF @base", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "OFkOviHk", + "instantiation": "false", + "eng_plate_temp": [ + "40" + ], + "eng_plate_temp_initial_layer": [ + "40" + ], + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "100" + ], + "filament_cost": [ + "83.99" + ], + "filament_density": [ + "1.17" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "14" + ], + "filament_type": [ + "PA6-CF" + ], + "filament_vendor": [ + "Polymaker" + ], + "hot_plate_temp": [ + "40" + ], + "hot_plate_temp_initial_layer": [ + "40" + ], + "nozzle_temperature": [ + "300" + ], + "nozzle_temperature_initial_layer": [ + "300" + ], + "nozzle_temperature_range_low": [ + "280" + ], + "overhang_fan_speed": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "temperature_vitrification": [ + "215" + ], + "textured_plate_temp": [ + "40" + ], + "textured_plate_temp_initial_layer": [ + "40" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF @BBL H2D.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF @BBL H2D.json index efd01686ae..a083fc6562 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF @BBL H2D.json @@ -1,132 +1,63 @@ { - "type": "filament", - "name": "Fiberon PA6-GF @BBL H2D", - "inherits": "Fiberon PA6-GF @base", - "from": "system", - "setting_id": "GFL51_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "280", - "280" - ], - "nozzle_temperature_range_high": [ - "300", - "300" - ], - "nozzle_temperature": [ - "300", - "300" - ], - "nozzle_temperature_initial_layer": [ - "300", - "300" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ] -} + "type": "filament", + "name": "Fiberon PA6-GF @BBL H2D", + "inherits": "Fiberon PA6-GF @base", + "from": "system", + "setting_id": "GFL51_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "12" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_low": [ + "280", + "280" + ], + "nozzle_temperature_range_high": [ + "300", + "300" + ], + "nozzle_temperature": [ + "300", + "300" + ], + "nozzle_temperature_initial_layer": [ + "300", + "300" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF @BBL X1C.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF @BBL X1C.json index ac8b6d5cde..7716d0e93a 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF @BBL X1C.json @@ -1,127 +1,50 @@ { - "type": "filament", - "name": "Fiberon PA6-GF @BBL X1C", - "inherits": "Fiberon PA6-GF @base", - "from": "system", - "setting_id": "GFSL51_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "300", - "300" - ], - "nozzle_temperature_initial_layer": [ - "300", - "300" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 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 X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "Fiberon PA6-GF @BBL X1C", + "inherits": "Fiberon PA6-GF @base", + "from": "system", + "setting_id": "GFSL51_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "300", + "300" + ], + "nozzle_temperature_initial_layer": [ + "300", + "300" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 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 X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF @base.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF @base.json index 607b1c8e00..dd2665f5ae 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF @base.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PA6-GF @base.json @@ -1,71 +1,74 @@ { - "type": "filament", - "name": "Fiberon PA6-GF @base", - "inherits": "fdm_filament_pa", - "from": "system", - "filament_id": "OFwaYjL6", - "instantiation": "false", - "eng_plate_temp": [ - "40" - ], - "eng_plate_temp_initial_layer": [ - "40" - ], - "fan_cooling_layer_time": [ - "15" - ], - "fan_max_speed": [ - "100" - ], - "filament_cost": [ - "63.99" - ], - "filament_density": [ - "1.2" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "12" - ], - "filament_type": [ - "PA-GF" - ], - "filament_vendor": [ - "Polymaker" - ], - "full_fan_speed_layer": [ - "2" - ], - "hot_plate_temp": [ - "40" - ], - "hot_plate_temp_initial_layer": [ - "40" - ], - "nozzle_temperature": [ - "300" - ], - "nozzle_temperature_initial_layer": [ - "300" - ], - "nozzle_temperature_range_low": [ - "280" - ], - "overhang_fan_speed": [ - "100" - ], - "reduce_fan_stop_start_freq": [ - "1" - ], - "temperature_vitrification": [ - "191" - ], - "textured_plate_temp": [ - "40" - ], - "textured_plate_temp_initial_layer": [ - "40" - ] -} + "type": "filament", + "name": "Fiberon PA6-GF @base", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "OFwaYjL6", + "instantiation": "false", + "eng_plate_temp": [ + "40" + ], + "eng_plate_temp_initial_layer": [ + "40" + ], + "fan_cooling_layer_time": [ + "15" + ], + "fan_max_speed": [ + "100" + ], + "filament_cost": [ + "63.99" + ], + "filament_density": [ + "1.2" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_type": [ + "PA-GF" + ], + "filament_vendor": [ + "Polymaker" + ], + "full_fan_speed_layer": [ + "2" + ], + "additional_fan_full_speed_layer": [ + "2" + ], + "hot_plate_temp": [ + "40" + ], + "hot_plate_temp_initial_layer": [ + "40" + ], + "nozzle_temperature": [ + "300" + ], + "nozzle_temperature_initial_layer": [ + "300" + ], + "nozzle_temperature_range_low": [ + "280" + ], + "overhang_fan_speed": [ + "100" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "temperature_vitrification": [ + "191" + ], + "textured_plate_temp": [ + "40" + ], + "textured_plate_temp_initial_layer": [ + "40" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF @BBL H2D.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF @BBL H2D.json index fafc3e6f12..cf04cac658 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF @BBL H2D.json @@ -1,129 +1,60 @@ { - "type": "filament", - "name": "Fiberon PA612-CF @BBL H2D", - "inherits": "Fiberon PA612-CF @base", - "from": "system", - "setting_id": "GFL53_10", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "260", - "260" - ], - "nozzle_temperature_range_high": [ - "300", - "300" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ] -} + "type": "filament", + "name": "Fiberon PA612-CF @BBL H2D", + "inherits": "Fiberon PA612-CF @base", + "from": "system", + "setting_id": "GFL53_10", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_low": [ + "260", + "260" + ], + "nozzle_temperature_range_high": [ + "300", + "300" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF @BBL X1C.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF @BBL X1C.json index 2c30f1ea55..996c126b0e 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF @BBL X1C.json @@ -1,124 +1,51 @@ { - "type": "filament", - "name": "Fiberon PA612-CF @BBL X1C", - "inherits": "Fiberon PA612-CF @base", - "from": "system", - "setting_id": "GFSL53_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.96", - "0.96" - ], - "filament_max_volumetric_speed": [ - "8", - "8" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle" - ] -} + "type": "filament", + "name": "Fiberon PA612-CF @BBL X1C", + "inherits": "Fiberon PA612-CF @base", + "from": "system", + "setting_id": "GFSL53_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.96", + "0.96" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF @base.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF @base.json index 3765f754f5..25ca59d6e4 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF @base.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PA612-CF @base.json @@ -1,41 +1,44 @@ { - "type": "filament", - "name": "Fiberon PA612-CF @base", - "inherits": "fdm_filament_pa", - "from": "system", - "filament_id": "OFS2tn6G", - "instantiation": "false", - "fan_cooling_layer_time": [ - "5" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "10" - ], - "filament_cost": [ - "94.99" - ], - "filament_density": [ - "1.06" - ], - "filament_flow_ratio": [ - "0.96" - ], - "filament_vendor": [ - "Polymaker" - ], - "full_fan_speed_layer": [ - "2" - ], - "overhang_fan_speed": [ - "40" - ], - "overhang_fan_threshold": [ - "0%" - ], - "temperature_vitrification": [ - "180" - ] -} + "type": "filament", + "name": "Fiberon PA612-CF @base", + "inherits": "fdm_filament_pa", + "from": "system", + "filament_id": "OFS2tn6G", + "instantiation": "false", + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "94.99" + ], + "filament_density": [ + "1.06" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_vendor": [ + "Polymaker" + ], + "full_fan_speed_layer": [ + "2" + ], + "additional_fan_full_speed_layer": [ + "2" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "temperature_vitrification": [ + "180" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF @BBL H2D.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF @BBL H2D.json index f1c0a4eb3c..853a775bfb 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF @BBL H2D.json @@ -1,135 +1,66 @@ { - "type": "filament", - "name": "Fiberon PET-CF @BBL H2D", - "inherits": "Fiberon PET-CF @base", - "from": "system", - "setting_id": "GFL54_10", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "270", - "270" - ], - "nozzle_temperature_range_high": [ - "300", - "300" - ], - "nozzle_temperature": [ - "300", - "300" - ], - "nozzle_temperature_initial_layer": [ - "300", - "300" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "2" - ], - "temperature_vitrification": [ - "70" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ] -} + "type": "filament", + "name": "Fiberon PET-CF @BBL H2D", + "inherits": "Fiberon PET-CF @base", + "from": "system", + "setting_id": "GFL54_10", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_low": [ + "270", + "270" + ], + "nozzle_temperature_range_high": [ + "300", + "300" + ], + "nozzle_temperature": [ + "300", + "300" + ], + "nozzle_temperature_initial_layer": [ + "300", + "300" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "temperature_vitrification": [ + "70" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF @BBL X1C.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF @BBL X1C.json index 381ed4d225..74b61e0684 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF @BBL X1C.json @@ -1,124 +1,47 @@ { - "type": "filament", - "name": "Fiberon PET-CF @BBL X1C", - "inherits": "Fiberon PET-CF @base", - "from": "system", - "setting_id": "GFSL54_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "300", - "300" - ], - "nozzle_temperature_initial_layer": [ - "300", - "300" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle" - ] -} + "type": "filament", + "name": "Fiberon PET-CF @BBL X1C", + "inherits": "Fiberon PET-CF @base", + "from": "system", + "setting_id": "GFSL54_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "300", + "300" + ], + "nozzle_temperature_initial_layer": [ + "300", + "300" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF @base.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF @base.json index 2ca2a42d04..72bd1c1e72 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF @base.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PET-CF @base.json @@ -1,46 +1,46 @@ { - "type": "filament", - "name": "Fiberon PET-CF @base", - "inherits": "fdm_filament_pet", - "from": "system", - "filament_id": "OFHWSM21", - "instantiation": "false", - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "fan_cooling_layer_time": [ - "242" - ], - "fan_min_speed": [ - "0" - ], - "filament_cost": [ - "89.99" - ], - "filament_density": [ - "1.34" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "12" - ], - "filament_type": [ - "PET-CF" - ], - "filament_vendor": [ - "Polymaker" - ], + "type": "filament", + "name": "Fiberon PET-CF @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "OFHWSM21", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "242" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "89.99" + ], + "filament_density": [ + "1.34" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_type": [ + "PET-CF" + ], + "filament_vendor": [ + "Polymaker" + ], "filament_adhesiveness_category": [ "800" ], @@ -65,49 +65,49 @@ "filament_dev_drying_softening_temperature": [ "150" ], - "hot_plate_temp": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "nozzle_temperature_range_low": [ - "270" - ], - "nozzle_temperature_range_high": [ - "300" - ], - "nozzle_temperature": [ - "300" - ], - "nozzle_temperature_initial_layer": [ - "300" - ], - "required_nozzle_HRC": [ - "40" - ], - "supertack_plate_temp": [ - "80" - ], - "supertack_plate_temp_initial_layer": [ - "80" - ], - "slow_down_layer_time": [ - "5" - ], - "slow_down_min_speed": [ - "20" - ], - "temperature_vitrification": [ - "147" - ], - "textured_plate_temp": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], - "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}" - ] -} + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature_range_low": [ + "270" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature": [ + "300" + ], + "nozzle_temperature_initial_layer": [ + "300" + ], + "required_nozzle_HRC": [ + "40" + ], + "supertack_plate_temp": [ + "80" + ], + "supertack_plate_temp_initial_layer": [ + "80" + ], + "slow_down_layer_time": [ + "5" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "147" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @BBL H2D.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @BBL H2D.json index a7a8c44207..e24fa75f9f 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @BBL H2D.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @BBL H2D.json @@ -1,132 +1,63 @@ { - "type": "filament", - "name": "Fiberon PETG-ESD @BBL H2D", - "inherits": "Fiberon PETG-ESD @base", - "from": "system", - "setting_id": "GFL06_10", - "instantiation": "true", - "filament_cost": [ - "29.99" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "20", - "20" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "250", - "250" - ], - "nozzle_temperature_range_high": [ - "290", - "290" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ] -} + "type": "filament", + "name": "Fiberon PETG-ESD @BBL H2D", + "inherits": "Fiberon PETG-ESD @base", + "from": "system", + "setting_id": "GFL06_10", + "instantiation": "true", + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_cost": [ + "29.99" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "20", + "20" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_low": [ + "250", + "250" + ], + "nozzle_temperature_range_high": [ + "290", + "290" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @BBL X1C.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @BBL X1C.json index 539e0f19c8..efbd277fdc 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @BBL X1C.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @BBL X1C.json @@ -1,127 +1,50 @@ { - "type": "filament", - "name": "Fiberon PETG-ESD @BBL X1C", - "inherits": "Fiberon PETG-ESD @base", - "from": "system", - "setting_id": "GFSL06_00", - "instantiation": "true", - "filament_cost": [ - "29.99" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "20", - "20" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "290", - "290" - ], - "nozzle_temperature_initial_layer": [ - "290", - "290" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle" - ] -} + "type": "filament", + "name": "Fiberon PETG-ESD @BBL X1C", + "inherits": "Fiberon PETG-ESD @base", + "from": "system", + "setting_id": "GFSL06_00", + "instantiation": "true", + "filament_cost": [ + "29.99" + ], + "filament_max_volumetric_speed": [ + "20", + "20" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @base.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @base.json index b459cc68a1..1633157e93 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @base.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @base.json @@ -1,77 +1,77 @@ { - "type": "filament", - "name": "Fiberon PETG-ESD @base", - "inherits": "fdm_filament_pet", - "from": "system", - "filament_id": "OFcytyoA", - "instantiation": "false", - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "fan_cooling_layer_time": [ - "15" - ], - "fan_min_speed": [ - "0" - ], - "filament_cost": [ - "0" - ], - "filament_density": [ - "1.24" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "filament_vendor": [ - "Polymaker" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature": [ - "290" - ], - "nozzle_temperature_initial_layer": [ - "290" - ], - "nozzle_temperature_range_high": [ - "290" - ], - "nozzle_temperature_range_low": [ - "250" - ], - "slow_down_layer_time": [ - "2" - ], - "slow_down_min_speed": [ - "20" - ], - "temperature_vitrification": [ - "76" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "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}" - ] -} + "type": "filament", + "name": "Fiberon PETG-ESD @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "OFcytyoA", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "fan_cooling_layer_time": [ + "15" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "0" + ], + "filament_density": [ + "1.24" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "20" + ], + "filament_vendor": [ + "Polymaker" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "250" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "76" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF @BBL H2D.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF @BBL H2D.json index 5a25ec639e..bec50bda20 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF @BBL H2D.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF @BBL H2D.json @@ -1,138 +1,69 @@ { - "type": "filament", - "name": "Fiberon PETG-rCF @BBL H2D", - "inherits": "Fiberon PETG-rCF @base", - "from": "system", - "setting_id": "GFL55_10", - "instantiation": "true", - "fan_cooling_layer_time": [ - "15" - ], - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.24" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_low": [ - "240", - "240" - ], - "nozzle_temperature_range_high": [ - "270", - "270" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ] -} + "type": "filament", + "name": "Fiberon PETG-rCF @BBL H2D", + "inherits": "Fiberon PETG-rCF @base", + "from": "system", + "setting_id": "GFL55_10", + "instantiation": "true", + "fan_cooling_layer_time": [ + "15" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.24" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature_range_low": [ + "240", + "240" + ], + "nozzle_temperature_range_high": [ + "270", + "270" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF @BBL X1C.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF @BBL X1C.json index 570446a8bf..45134d520e 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF @BBL X1C.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF @BBL X1C.json @@ -1,124 +1,47 @@ { - "type": "filament", - "name": "Fiberon PETG-rCF @BBL X1C", - "inherits": "Fiberon PETG-rCF @base", - "from": "system", - "setting_id": "GFSL55_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "270", - "270" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} + "type": "filament", + "name": "Fiberon PETG-rCF @BBL X1C", + "inherits": "Fiberon PETG-rCF @base", + "from": "system", + "setting_id": "GFSL55_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF @base.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF @base.json index f052304624..2927c4526b 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF @base.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-rCF @base.json @@ -1,80 +1,80 @@ { - "type": "filament", - "name": "Fiberon PETG-rCF @base", - "inherits": "fdm_filament_pet", - "from": "system", - "filament_id": "OFk8t9mz", - "instantiation": "false", - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "fan_cooling_layer_time": [ - "12" - ], - "fan_min_speed": [ - "0" - ], - "filament_cost": [ - "39.99" - ], - "filament_density": [ - "1.3" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "12" - ], - "filament_type": [ - "PETG-CF" - ], - "filament_vendor": [ - "Polymaker" - ], - "hot_plate_temp": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "nozzle_temperature": [ - "270" - ], - "nozzle_temperature_initial_layer": [ - "270" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "nozzle_temperature_range_low": [ - "240" - ], - "required_nozzle_HRC": [ - "40" - ], - "slow_down_layer_time": [ - "2" - ], - "slow_down_min_speed": [ - "20" - ], - "textured_plate_temp": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], - "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}" - ] -} + "type": "filament", + "name": "Fiberon PETG-rCF @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "OFk8t9mz", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "12" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "39.99" + ], + "filament_density": [ + "1.3" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_type": [ + "PETG-CF" + ], + "filament_vendor": [ + "Polymaker" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL A1 0.2 nozzle.json deleted file mode 100644 index 620cc411a6..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL A1 0.2 nozzle.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ABS @BBL A1 0.2 nozzle", - "inherits": "PolyLite ABS @base", - "from": "system", - "setting_id": "GFSB60_07", - "instantiation": "true", - "fan_max_speed": [ - "20" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL A1.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL A1.json deleted file mode 100644 index 71f1f5a3c2..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL A1.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ABS @BBL A1", - "inherits": "PolyLite ABS @base", - "from": "system", - "setting_id": "GFSB60_06", - "instantiation": "true", - "fan_max_speed": [ - "20" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL H2D 0.2 nozzle.json deleted file mode 100644 index 3747e77ed3..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL H2D 0.2 nozzle.json +++ /dev/null @@ -1,128 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ABS @BBL H2D 0.2 nozzle", - "inherits": "PolyLite ABS @base", - "from": "system", - "setting_id": "GFSB60_09", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL H2D.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL H2D.json deleted file mode 100644 index 3e81dfee44..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL H2D.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ABS @BBL H2D", - "inherits": "PolyLite ABS @base", - "from": "system", - "setting_id": "GFSB60_08", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL P1P 0.2 nozzle.json deleted file mode 100644 index 04c89f69fd..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL P1P 0.2 nozzle.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ABS @BBL P1P 0.2 nozzle", - "inherits": "PolyLite ABS @BBL P1P", - "from": "system", - "setting_id": "GFSB60_05", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL P1P.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL P1P.json deleted file mode 100644 index 4b0d29fef5..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL P1P.json +++ /dev/null @@ -1,139 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ABS @BBL P1P", - "inherits": "PolyLite ABS @base", - "from": "system", - "setting_id": "GFSB60_04", - "instantiation": "true", - "fan_max_speed": [ - "20" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.8 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.4 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL X1C 0.2 nozzle.json deleted file mode 100644 index 45c74dfd07..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL X1C 0.2 nozzle.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ABS @BBL X1C 0.2 nozzle", - "inherits": "PolyLite ABS @BBL X1C", - "from": "system", - "setting_id": "GFSB60_02", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL X1C.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL X1C.json deleted file mode 100644 index 6dadfc535e..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL X1C.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ABS @BBL X1C", - "inherits": "PolyLite ABS @base", - "from": "system", - "setting_id": "GFSB60_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL X1E 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL X1E 0.2 nozzle.json deleted file mode 100644 index cda3af8b09..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL X1E 0.2 nozzle.json +++ /dev/null @@ -1,119 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ABS @BBL X1E 0.2 nozzle", - "inherits": "PolyLite ABS @base", - "from": "system", - "setting_id": "GFSB60_03", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL X1E.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL X1E.json deleted file mode 100644 index e936b14936..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @BBL X1E.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ABS @BBL X1E", - "inherits": "PolyLite ABS @base", - "from": "system", - "setting_id": "GFSB60_01", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "270", - "270" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @base.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @base.json deleted file mode 100644 index 11be66397d..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ABS @base.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ABS @base", - "inherits": "fdm_filament_abs", - "from": "system", - "filament_id": "OFOvv91M", - "instantiation": "false", - "filament_cost": [ - "26.9" - ], - "filament_density": [ - "1.03" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "15" - ], - "filament_vendor": [ - "Polymaker" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL A1 0.2 nozzle.json deleted file mode 100644 index a38d211939..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL A1 0.2 nozzle.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ASA @BBL A1 0.2 nozzle", - "inherits": "PolyLite ASA @base", - "from": "system", - "setting_id": "GFSB61_06", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL A1.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL A1.json deleted file mode 100644 index ae080355e9..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL A1.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ASA @BBL A1", - "inherits": "PolyLite ASA @base", - "from": "system", - "setting_id": "GFSB61_07", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL H2D 0.2 nozzle.json deleted file mode 100644 index a15a835b35..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL H2D 0.2 nozzle.json +++ /dev/null @@ -1,128 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ASA @BBL H2D 0.2 nozzle", - "inherits": "PolyLite ASA @base", - "from": "system", - "setting_id": "GFSB61_09", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL H2D.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL H2D.json deleted file mode 100644 index 412217df5d..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL H2D.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ASA @BBL H2D", - "inherits": "PolyLite ASA @base", - "from": "system", - "setting_id": "GFSB61_08", - "instantiation": "true", - "chamber_temperatures": [ - "60" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "13", - "13" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL P1P 0.2 nozzle.json deleted file mode 100644 index c293668107..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL P1P 0.2 nozzle.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ASA @BBL P1P 0.2 nozzle", - "inherits": "PolyLite ASA @BBL P1P", - "from": "system", - "setting_id": "GFSB61_05", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL P1P.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL P1P.json deleted file mode 100644 index 7d1d49e8b0..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL P1P.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ASA @BBL P1P", - "inherits": "PolyLite ASA @base", - "from": "system", - "setting_id": "GFSB61_04", - "instantiation": "true", - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "13", - "13" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL X1C 0.2 nozzle.json deleted file mode 100644 index 7723f33269..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL X1C 0.2 nozzle.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ASA @BBL X1C 0.2 nozzle", - "inherits": "PolyLite ASA @BBL X1C", - "from": "system", - "setting_id": "GFSB61_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "compatible_printers": [ - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL X1C.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL X1C.json deleted file mode 100644 index 6b3da4c0d2..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL X1C.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ASA @BBL X1C", - "inherits": "PolyLite ASA @base", - "from": "system", - "setting_id": "GFSB61_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_max_volumetric_speed": [ - "13", - "13" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL X1E 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL X1E 0.2 nozzle.json deleted file mode 100644 index ad34833c15..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL X1E 0.2 nozzle.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ASA @BBL X1E 0.2 nozzle", - "inherits": "PolyLite ASA @BBL X1E", - "from": "system", - "setting_id": "GFSB61_03", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL X1E.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL X1E.json deleted file mode 100644 index 8b637852dd..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @BBL X1E.json +++ /dev/null @@ -1,121 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ASA @BBL X1E", - "inherits": "PolyLite ASA @base", - "from": "system", - "setting_id": "GFSB61_02", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "13", - "13" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "260", - "260" - ], - "nozzle_temperature_initial_layer": [ - "260", - "260" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @base.json b/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @base.json deleted file mode 100644 index 026efbfb61..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite ASA @base.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite ASA @base", - "inherits": "fdm_filament_asa", - "from": "system", - "filament_id": "OFvrXuV7", - "instantiation": "false", - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "filament_cost": [ - "23.6" - ], - "filament_density": [ - "1.02" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "13" - ], - "filament_vendor": [ - "Polymaker" - ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL A1 0.2 nozzle.json deleted file mode 100644 index fc1d7c9ccc..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL A1 0.2 nozzle.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PETG @BBL A1 0.2 nozzle", - "inherits": "PolyLite PETG @base", - "from": "system", - "setting_id": "GFSG60_07", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1" - ], - "hot_plate_temp": [ - "80" - ], - "hot_plate_temp_initial_layer": [ - "80" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "textured_plate_temp": [ - "80" - ], - "textured_plate_temp_initial_layer": [ - "80" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL A1.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL A1.json deleted file mode 100644 index 56ee99583a..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL A1.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PETG @BBL A1", - "inherits": "PolyLite PETG @base", - "from": "system", - "setting_id": "GFSG60_06", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "8" - ], - "hot_plate_temp": [ - "80" - ], - "hot_plate_temp_initial_layer": [ - "80" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "textured_plate_temp": [ - "80" - ], - "textured_plate_temp_initial_layer": [ - "80" - ], - "compatible_printers": [ - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab A1 0.4 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL A1M 0.2 nozzle.json deleted file mode 100644 index b096b42ff1..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL A1M 0.2 nozzle.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PETG @BBL A1M 0.2 nozzle", - "inherits": "PolyLite PETG @BBL A1M", - "from": "system", - "setting_id": "GFSG60_05", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL A1M.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL A1M.json deleted file mode 100644 index 0fd49e16b4..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL A1M.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PETG @BBL A1M", - "inherits": "PolyLite PETG @base", - "from": "system", - "setting_id": "GFSG60_04", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "8" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL H2D 0.2 nozzle.json deleted file mode 100644 index e385bf8477..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL H2D 0.2 nozzle.json +++ /dev/null @@ -1,125 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PETG @BBL H2D 0.2 nozzle", - "inherits": "PolyLite PETG @base", - "from": "system", - "setting_id": "GFSG60_09", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL H2D.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL H2D.json deleted file mode 100644 index 07d4e46768..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL H2D.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PETG @BBL H2D", - "inherits": "PolyLite PETG @base", - "from": "system", - "setting_id": "GFSG60_08", - "instantiation": "true", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL P1P 0.2 nozzle.json deleted file mode 100644 index d9c730cfe3..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL P1P 0.2 nozzle.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PETG @BBL P1P 0.2 nozzle", - "inherits": "PolyLite PETG @BBL P1P", - "from": "system", - "setting_id": "GFSG60_03", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL P1P.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL P1P.json deleted file mode 100644 index d38bfdc04e..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL P1P.json +++ /dev/null @@ -1,136 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PETG @BBL P1P", - "inherits": "PolyLite PETG @base", - "from": "system", - "setting_id": "GFSG60_02", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "80" - ], - "hot_plate_temp_initial_layer": [ - "80" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "80" - ], - "textured_plate_temp_initial_layer": [ - "80" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL X1C 0.2 nozzle.json deleted file mode 100644 index 87a2c0446a..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL X1C 0.2 nozzle.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PETG @BBL X1C 0.2 nozzle", - "inherits": "PolyLite PETG @BBL X1C", - "from": "system", - "setting_id": "GFSG60_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL X1C.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL X1C.json deleted file mode 100644 index 5b4e022c74..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @BBL X1C.json +++ /dev/null @@ -1,133 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PETG @BBL X1C", - "inherits": "PolyLite PETG @base", - "from": "system", - "setting_id": "GFSG60_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "11.5", - "11.5" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "nozzle_temperature": [ - "255", - "255" - ], - "nozzle_temperature_initial_layer": [ - "255", - "255" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @base.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @base.json deleted file mode 100644 index 365f5f1460..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PETG @base.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PETG @base", - "inherits": "fdm_filament_pet", - "from": "system", - "filament_id": "OF0UJcb6", - "instantiation": "false", - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "90" - ], - "fan_min_speed": [ - "40" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_vendor": [ - "Polymaker" - ], - "hot_plate_temp": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "overhang_fan_speed": [ - "90" - ], - "overhang_fan_threshold": [ - "10%" - ], - "slow_down_layer_time": [ - "12" - ], - "slow_down_min_speed": [ - "20" - ], - "textured_plate_temp": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL A1 0.2 nozzle.json deleted file mode 100644 index a994069549..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL A1 0.2 nozzle.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PLA @BBL A1 0.2 nozzle", - "inherits": "PolyLite PLA @base", - "from": "system", - "setting_id": "GFSL00_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "1.6" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL A1.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL A1.json deleted file mode 100644 index f52c8e2011..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL A1.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PLA @BBL A1", - "inherits": "PolyLite PLA @base", - "from": "system", - "setting_id": "GFSL00_02", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ], - "cool_plate_temp": [ - "60" - ], - "eng_plate_temp": [ - "60" - ], - "hot_plate_temp": [ - "60" - ], - "textured_plate_temp": [ - "60" - ], - "cool_plate_temp_initial_layer": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "overhang_fan_speed": [ - "75" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.17" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "bed_type": [ - "Cool Plate" - ], - "slow_down_min_speed": [ - "5" - ], - "slow_down_layer_time": [ - "2" - ], - "temperature_vitrification": [ - "61" - ], - "nozzle_temperature_range_high": [ - "230" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL A1M 0.2 nozzle.json deleted file mode 100644 index d6612569ee..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL A1M 0.2 nozzle.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PLA @BBL A1M 0.2 nozzle", - "inherits": "PolyLite PLA @base", - "from": "system", - "setting_id": "GFSL00_01", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "1.6" - ], - "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" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL A1M.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL A1M.json deleted file mode 100644 index 57b3ab4e56..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL A1M.json +++ /dev/null @@ -1,67 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PLA @BBL A1M", - "inherits": "PolyLite PLA @base", - "from": "system", - "setting_id": "GFSL00_00", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ], - "cool_plate_temp": [ - "60" - ], - "eng_plate_temp": [ - "60" - ], - "hot_plate_temp": [ - "60" - ], - "textured_plate_temp": [ - "60" - ], - "cool_plate_temp_initial_layer": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "overhang_fan_speed": [ - "75" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.17" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "bed_type": [ - "Cool Plate" - ], - "slow_down_min_speed": [ - "5" - ], - "slow_down_layer_time": [ - "2" - ], - "temperature_vitrification": [ - "61" - ], - "nozzle_temperature_range_high": [ - "230" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL H2D 0.2 nozzle.json deleted file mode 100644 index 020d4a28ff..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL H2D 0.2 nozzle.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PLA @BBL H2D 0.2 nozzle", - "inherits": "PolyLite PLA @base", - "from": "system", - "setting_id": "GFSL00_05", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL H2D.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL H2D.json deleted file mode 100644 index 09d44d45bd..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL H2D.json +++ /dev/null @@ -1,133 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PLA @BBL H2D", - "inherits": "PolyLite PLA @base", - "from": "system", - "setting_id": "GFSL00_04", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL X1.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL X1.json deleted file mode 100644 index 08bdd474a4..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL X1.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PLA @BBL X1", - "inherits": "PolyLite PLA @base", - "from": "system", - "setting_id": "GFSL23", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ], - "cool_plate_temp": [ - "60" - ], - "eng_plate_temp": [ - "60" - ], - "hot_plate_temp": [ - "60" - ], - "textured_plate_temp": [ - "60" - ], - "cool_plate_temp_initial_layer": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "overhang_fan_speed": [ - "75" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.17" - ], - "filament_max_volumetric_speed": [ - "20" - ], - "bed_type": [ - "Cool Plate" - ], - "slow_down_min_speed": [ - "5" - ], - "temperature_vitrification": [ - "61" - ], - "nozzle_temperature_range_high": [ - "230" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL X1C 0.2 nozzle.json deleted file mode 100644 index dea4fcd538..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL X1C 0.2 nozzle.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PLA @BBL X1C 0.2 nozzle", - "inherits": "PolyLite PLA @BBL X1C", - "from": "system", - "setting_id": "GFSL25", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1.6", - "1.6" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL X1C.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL X1C.json deleted file mode 100644 index 12436871ac..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @BBL X1C.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PLA @BBL X1C", - "inherits": "PolyLite PLA @base", - "from": "system", - "setting_id": "GFSL19", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "15", - "15" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @base.json b/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @base.json deleted file mode 100644 index 55ea664946..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyLite PLA @base.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "type": "filament", - "name": "PolyLite PLA @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OF5CgdDq", - "instantiation": "false", - "filament_cost": [ - "25.4" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_vendor": [ - "Polymaker" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL A1 0.2 nozzle.json deleted file mode 100644 index 04497ac738..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL A1 0.2 nozzle.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "type": "filament", - "name": "PolyTerra PLA @BBL A1 0.2 nozzle", - "inherits": "PolyTerra PLA @base", - "from": "system", - "setting_id": "GFSL01_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "1.8" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL A1.json b/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL A1.json deleted file mode 100644 index d10f958597..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL A1.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "type": "filament", - "name": "PolyTerra PLA @BBL A1", - "inherits": "PolyTerra PLA @base", - "from": "system", - "setting_id": "GFSL01_02", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ], - "cool_plate_temp": [ - "60" - ], - "eng_plate_temp": [ - "60" - ], - "hot_plate_temp": [ - "60" - ], - "textured_plate_temp": [ - "60" - ], - "cool_plate_temp_initial_layer": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "overhang_fan_speed": [ - "75" - ], - "fan_cooling_layer_time": [ - "80" - ], - "filament_cost": [ - "21.99" - ], - "filament_density": [ - "1.37" - ], - "filament_max_volumetric_speed": [ - "22" - ], - "bed_type": [ - "Cool Plate" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "slow_down_min_speed": [ - "5" - ], - "slow_down_layer_time": [ - "8" - ], - "temperature_vitrification": [ - "61" - ], - "nozzle_temperature_range_high": [ - "230" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL A1M 0.2 nozzle.json deleted file mode 100644 index a8d1352806..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL A1M 0.2 nozzle.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "type": "filament", - "name": "PolyTerra PLA @BBL A1M 0.2 nozzle", - "inherits": "PolyTerra PLA @base", - "from": "system", - "setting_id": "GFSL01_01", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "1.8" - ], - "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" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL A1M.json b/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL A1M.json deleted file mode 100644 index ca09a47935..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL A1M.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "type": "filament", - "name": "PolyTerra PLA @BBL A1M", - "inherits": "PolyTerra PLA @base", - "from": "system", - "setting_id": "GFSL01_00", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ], - "cool_plate_temp": [ - "60" - ], - "eng_plate_temp": [ - "60" - ], - "hot_plate_temp": [ - "60" - ], - "textured_plate_temp": [ - "60" - ], - "cool_plate_temp_initial_layer": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "overhang_fan_speed": [ - "75" - ], - "fan_cooling_layer_time": [ - "80" - ], - "filament_cost": [ - "21.99" - ], - "filament_density": [ - "1.37" - ], - "filament_max_volumetric_speed": [ - "22" - ], - "bed_type": [ - "Cool Plate" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "slow_down_min_speed": [ - "5" - ], - "slow_down_layer_time": [ - "8" - ], - "temperature_vitrification": [ - "61" - ], - "nozzle_temperature_range_high": [ - "230" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL H2D 0.2 nozzle.json deleted file mode 100644 index 2419d5ff05..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL H2D 0.2 nozzle.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "type": "filament", - "name": "PolyTerra PLA @BBL H2D 0.2 nozzle", - "inherits": "PolyTerra PLA @base", - "from": "system", - "setting_id": "GFSL01_05", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL H2D.json b/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL H2D.json deleted file mode 100644 index 5a2083e6d1..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL H2D.json +++ /dev/null @@ -1,133 +0,0 @@ -{ - "type": "filament", - "name": "PolyTerra PLA @BBL H2D", - "inherits": "PolyTerra PLA @base", - "from": "system", - "setting_id": "GFSL01_04", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "22", - "22" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL X1.json b/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL X1.json deleted file mode 100644 index d3f601395b..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL X1.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "type": "filament", - "name": "PolyTerra PLA @BBL X1", - "inherits": "PolyTerra PLA @base", - "from": "system", - "setting_id": "GFSL22", - "instantiation": "true", - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ], - "cool_plate_temp": [ - "60" - ], - "eng_plate_temp": [ - "60" - ], - "hot_plate_temp": [ - "60" - ], - "textured_plate_temp": [ - "60" - ], - "cool_plate_temp_initial_layer": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "overhang_fan_speed": [ - "75" - ], - "filament_cost": [ - "21.99" - ], - "filament_density": [ - "1.37" - ], - "filament_max_volumetric_speed": [ - "22" - ], - "bed_type": [ - "Cool Plate" - ], - "slow_down_min_speed": [ - "5" - ], - "slow_down_layer_time": [ - "8" - ], - "temperature_vitrification": [ - "61" - ], - "nozzle_temperature_range_high": [ - "230" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL X1C 0.2 nozzle.json deleted file mode 100644 index 898906491a..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL X1C 0.2 nozzle.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "type": "filament", - "name": "PolyTerra PLA @BBL X1C 0.2 nozzle", - "inherits": "PolyTerra PLA @BBL X1C", - "from": "system", - "setting_id": "GFSL24", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL X1C.json b/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL X1C.json deleted file mode 100644 index 7231c1a703..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @BBL X1C.json +++ /dev/null @@ -1,130 +0,0 @@ -{ - "type": "filament", - "name": "PolyTerra PLA @BBL X1C", - "inherits": "PolyTerra PLA @base", - "from": "system", - "setting_id": "GFSL18", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "22", - "22" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}" - ] -} diff --git a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @base.json b/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @base.json deleted file mode 100644 index 3b13c5b55c..0000000000 --- a/resources/profiles/BBL/filament/Polymaker/PolyTerra PLA @base.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "type": "filament", - "name": "PolyTerra PLA @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFW29a9R", - "instantiation": "false", - "filament_cost": [ - "25.4" - ], - "filament_density": [ - "1.31" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_vendor": [ - "Polymaker" - ] -} diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL A1.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL A1.json index c71d490498..b6a0c61f4e 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL A1.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL A1.json @@ -1,43 +1,43 @@ { - "type": "filament", - "name": "SUNLU PLA Marble @BBL A1", - "inherits": "SUNLU PLA Marble @base", - "from": "system", - "setting_id": "GFSNLS06_02", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA Marble @BBL A1", + "inherits": "SUNLU PLA Marble @base", + "from": "system", + "setting_id": "GFSNLS06_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL A1M.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL A1M.json index e6fbcc08f4..61db76c30c 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL A1M.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL A1M.json @@ -1,43 +1,43 @@ { - "type": "filament", - "name": "SUNLU PLA Marble @BBL A1M", - "inherits": "SUNLU PLA Marble @base", - "from": "system", - "setting_id": "GFSNLS06_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "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" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA Marble @BBL A1M", + "inherits": "SUNLU PLA Marble @base", + "from": "system", + "setting_id": "GFSNLS06_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL P1P.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL P1P.json index bb04f33946..0a103c995c 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL P1P.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL P1P.json @@ -1,142 +1,77 @@ { - "type": "filament", - "name": "SUNLU PLA Marble @BBL P1P", - "inherits": "SUNLU PLA Marble @base", - "from": "system", - "setting_id": "GFSNLS06_01", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA Marble @BBL P1P", + "inherits": "SUNLU PLA Marble @base", + "from": "system", + "setting_id": "GFSNLS06_01", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL X1.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL X1.json index d179444017..7b284a250c 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL X1.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL X1.json @@ -1,124 +1,59 @@ { - "type": "filament", - "name": "SUNLU PLA Marble @BBL X1", - "inherits": "SUNLU PLA Marble @base", - "from": "system", - "setting_id": "GFSNLS06_00", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA Marble @BBL X1", + "inherits": "SUNLU PLA Marble @base", + "from": "system", + "setting_id": "GFSNLS06_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL X1C.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL X1C.json index 17d7143d71..3b0d6858e8 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL X1C.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @BBL X1C.json @@ -1,130 +1,65 @@ { - "type": "filament", - "name": "SUNLU PLA Marble @BBL X1C", - "inherits": "SUNLU PLA Marble @base", - "from": "system", - "setting_id": "GFSNLS06", - "instantiation": "true", - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "SUNLU PLA Marble @BBL X1C", + "inherits": "SUNLU PLA Marble @base", + "from": "system", + "setting_id": "GFSNLS06", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @base.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @base.json index d2f34323a0..65ac195c51 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @base.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Marble PLA @base.json @@ -1,29 +1,29 @@ { - "type": "filament", - "name": "SUNLU PLA Marble @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFxUwUeW", - "instantiation": "false", - "filament_cost": [ - "31.99" - ], - "filament_density": [ - "1.25" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_vendor": [ - "SUNLU" - ], - "nozzle_temperature_range_high": [ - "260" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "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}" - ] -} + "type": "filament", + "name": "SUNLU PLA Marble @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFxUwUeW", + "instantiation": "false", + "filament_cost": [ + "31.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_vendor": [ + "SUNLU" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1 0.2 nozzle.json index d22531c5be..8e75032c56 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1 0.2 nozzle.json @@ -1,17 +1,17 @@ { - "type": "filament", - "name": "SUNLU PETG @BBL A1 0.2 nozzle", - "inherits": "SUNLU PETG @base", - "from": "system", - "setting_id": "GFSNLS08_03", - "instantiation": "true", - "filament_flow_ratio": [ - "0.94" - ], - "filament_max_volumetric_speed": [ - "1" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PETG @BBL A1 0.2 nozzle", + "inherits": "SUNLU PETG @base", + "from": "system", + "setting_id": "GFSNLS08_03", + "instantiation": "true", + "filament_flow_ratio": [ + "0.94" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1 0.8 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1 0.8 nozzle.json index fa85784f11..82e181089b 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1 0.8 nozzle.json @@ -1,24 +1,24 @@ { - "type": "filament", - "name": "SUNLU PETG @BBL A1 0.8 nozzle", - "inherits": "SUNLU PETG @base", - "from": "system", - "setting_id": "GFSNLS08_04", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "20" - ], - "filament_flow_ratio": [ - "0.94" - ], - "filament_max_volumetric_speed": [ - "12" - ], - "compatible_printers": [ - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab A1 0.6 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PETG @BBL A1 0.8 nozzle", + "inherits": "SUNLU PETG @base", + "from": "system", + "setting_id": "GFSNLS08_04", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.94" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "compatible_printers": [ + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab A1 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1.json index 452e5b37df..e58d9fe6af 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1.json @@ -1,17 +1,17 @@ { - "type": "filament", - "name": "SUNLU PETG @BBL A1", - "inherits": "SUNLU PETG @base", - "from": "system", - "setting_id": "GFSNLS08_02", - "instantiation": "true", - "filament_flow_ratio": [ - "0.94" - ], - "filament_max_volumetric_speed": [ - "9" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PETG @BBL A1", + "inherits": "SUNLU PETG @base", + "from": "system", + "setting_id": "GFSNLS08_02", + "instantiation": "true", + "filament_flow_ratio": [ + "0.94" + ], + "filament_max_volumetric_speed": [ + "9" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1M 0.2 nozzle.json index 8f9a075819..d3814b6e17 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1M 0.2 nozzle.json @@ -1,17 +1,17 @@ { - "type": "filament", - "name": "SUNLU PETG @BBL A1M 0.2 nozzle", - "inherits": "SUNLU PETG @base", - "from": "system", - "setting_id": "GFSNLS08_06", - "instantiation": "true", - "filament_flow_ratio": [ - "0.94" - ], - "filament_max_volumetric_speed": [ - "1" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PETG @BBL A1M 0.2 nozzle", + "inherits": "SUNLU PETG @base", + "from": "system", + "setting_id": "GFSNLS08_06", + "instantiation": "true", + "filament_flow_ratio": [ + "0.94" + ], + "filament_max_volumetric_speed": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1M 0.8 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1M 0.8 nozzle.json index 70e66dc87f..31dc5a3066 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1M 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1M 0.8 nozzle.json @@ -1,21 +1,21 @@ { - "type": "filament", - "name": "SUNLU PETG @BBL A1M 0.8 nozzle", - "inherits": "SUNLU PETG @base", - "from": "system", - "setting_id": "GFSNLS08_07", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "20" - ], - "filament_flow_ratio": [ - "0.94" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PETG @BBL A1M 0.8 nozzle", + "inherits": "SUNLU PETG @base", + "from": "system", + "setting_id": "GFSNLS08_07", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_flow_ratio": [ + "0.94" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1M.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1M.json index 12862d015a..aa3c971f2a 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1M.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL A1M.json @@ -1,17 +1,17 @@ { - "type": "filament", - "name": "SUNLU PETG @BBL A1M 0.4 nozzle", - "inherits": "SUNLU PETG @base", - "from": "system", - "setting_id": "GFSNLS08_05", - "instantiation": "true", - "filament_flow_ratio": [ - "0.94" - ], - "filament_max_volumetric_speed": [ - "9" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PETG @BBL A1M 0.4 nozzle", + "inherits": "SUNLU PETG @base", + "from": "system", + "setting_id": "GFSNLS08_05", + "instantiation": "true", + "filament_flow_ratio": [ + "0.94" + ], + "filament_max_volumetric_speed": [ + "9" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL X1C 0.2 nozzle.json index 61b7382140..ef381a8b89 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL X1C 0.2 nozzle.json @@ -1,123 +1,50 @@ { - "type": "filament", - "name": "SUNLU PETG @BBL X1C 0.2 nozzle", - "inherits": "SUNLU PETG @base", - "from": "system", - "setting_id": "GFSNLS08_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1", - "1" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1P 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PETG @BBL X1C 0.2 nozzle", + "inherits": "SUNLU PETG @base", + "from": "system", + "setting_id": "GFSNLS08_00", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "1", + "1" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1P 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL X1C 0.8 nozzle.json index 36c3f0dace..99dc78c918 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL X1C 0.8 nozzle.json @@ -1,134 +1,61 @@ { - "type": "filament", - "name": "SUNLU PETG @BBL X1C 0.8 nozzle", - "inherits": "SUNLU PETG @base", - "from": "system", - "setting_id": "GFSNLS08_01", - "instantiation": "true", - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "20" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab P1P 0.8 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PETG @BBL X1C 0.8 nozzle", + "inherits": "SUNLU PETG @base", + "from": "system", + "setting_id": "GFSNLS08_01", + "instantiation": "true", + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "20" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL X1C.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL X1C.json index eb8150137d..80b85c3ffc 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL X1C.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @BBL X1C.json @@ -1,123 +1,50 @@ { - "type": "filament", - "name": "SUNLU PETG @BBL X1C", - "inherits": "SUNLU PETG @base", - "from": "system", - "setting_id": "GFSNLS08", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "14", - "14" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_flow_ratio": [ - "0.95", - "0.95" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "245", - "245" - ], - "nozzle_temperature_initial_layer": [ - "250", - "250" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab X1E 0.4 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PETG @BBL X1C", + "inherits": "SUNLU PETG @base", + "from": "system", + "setting_id": "GFSNLS08", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "14", + "14" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "245", + "245" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @base.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @base.json index 6e3eaf356e..2017491981 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @base.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PETG @base.json @@ -1,84 +1,84 @@ { - "type": "filament", - "name": "SUNLU PETG @base", - "inherits": "fdm_filament_pet", - "from": "system", - "filament_id": "OF2GCW1l", - "instantiation": "false", - "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "30" - ], - "fan_min_speed": [ - "10" - ], - "filament_cost": [ - "22.99" - ], - "filament_density": [ - "1.27" - ], - "filament_flow_ratio": [ - "0.95" - ], - "filament_max_volumetric_speed": [ - "12" - ], - "filament_vendor": [ - "SUNLU" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "nozzle_temperature": [ - "245" - ], - "nozzle_temperature_initial_layer": [ - "250" - ], - "nozzle_temperature_range_high": [ - "280" - ], - "nozzle_temperature_range_low": [ - "230" - ], - "overhang_fan_speed": [ - "90" - ], - "overhang_fan_threshold": [ - "10%" - ], - "slow_down_layer_time": [ - "12" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "temperature_vitrification": [ - "68" - ], - "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}" - ] -} + "type": "filament", + "name": "SUNLU PETG @base", + "inherits": "fdm_filament_pet", + "from": "system", + "filament_id": "OF2GCW1l", + "instantiation": "false", + "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "22.99" + ], + "filament_density": [ + "1.27" + ], + "filament_flow_ratio": [ + "0.95" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_vendor": [ + "SUNLU" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "nozzle_temperature": [ + "245" + ], + "nozzle_temperature_initial_layer": [ + "250" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "slow_down_layer_time": [ + "12" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "temperature_vitrification": [ + "68" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL A1 0.2 nozzle.json index 136d9a1a32..a3784f0810 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL A1 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "SUNLU PLA Matte @BBL A1 0.2 nozzle", - "inherits": "SUNLU PLA Matte @base", - "from": "system", - "setting_id": "GFSNLS02_06", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA Matte @BBL A1 0.2 nozzle", + "inherits": "SUNLU PLA Matte @base", + "from": "system", + "setting_id": "GFSNLS02_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL A1.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL A1.json index 8d4bc7b750..c821ebfe15 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL A1.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL A1.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "SUNLU PLA Matte @BBL A1", - "inherits": "SUNLU PLA Matte @base", - "from": "system", - "setting_id": "GFSNLS02_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA Matte @BBL A1", + "inherits": "SUNLU PLA Matte @base", + "from": "system", + "setting_id": "GFSNLS02_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL A1M 0.2 nozzle.json index 3161d71550..b8b97dd984 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL A1M 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "SUNLU PLA Matte @BBL A1M 0.2 nozzle", - "inherits": "SUNLU PLA Matte @base", - "from": "system", - "setting_id": "GFSNLS02_08", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "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" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA Matte @BBL A1M 0.2 nozzle", + "inherits": "SUNLU PLA Matte @base", + "from": "system", + "setting_id": "GFSNLS02_08", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL A1M.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL A1M.json index 3b36e5eec2..54c1a6119e 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL A1M.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL A1M.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "SUNLU PLA Matte @BBL A1M", - "inherits": "SUNLU PLA Matte @base", - "from": "system", - "setting_id": "GFSNLS02_07", - "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": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA Matte @BBL A1M", + "inherits": "SUNLU PLA Matte @base", + "from": "system", + "setting_id": "GFSNLS02_07", + "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": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL P1P 0.2 nozzle.json index da4cd0a24e..464e056c8c 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL P1P 0.2 nozzle.json @@ -1,137 +1,72 @@ { - "type": "filament", - "name": "SUNLU PLA Matte @BBL P1P 0.2 nozzle", - "inherits": "SUNLU PLA Matte @base", - "from": "system", - "setting_id": "GFSNLS02_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA Matte @BBL P1P 0.2 nozzle", + "inherits": "SUNLU PLA Matte @base", + "from": "system", + "setting_id": "GFSNLS02_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL P1P.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL P1P.json index 00b5289533..6054f5fd07 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL P1P.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL P1P.json @@ -1,142 +1,77 @@ { - "type": "filament", - "name": "SUNLU PLA Matte @BBL P1P", - "inherits": "SUNLU PLA Matte @base", - "from": "system", - "setting_id": "GFSNLS02_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA Matte @BBL P1P", + "inherits": "SUNLU PLA Matte @base", + "from": "system", + "setting_id": "GFSNLS02_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL X1.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL X1.json index a21dc559f1..0715879a5e 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL X1.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL X1.json @@ -1,127 +1,62 @@ { - "type": "filament", - "name": "SUNLU PLA Matte @BBL X1", - "inherits": "SUNLU PLA Matte @base", - "from": "system", - "setting_id": "GFSNLS02_01", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "SUNLU PLA Matte @BBL X1", + "inherits": "SUNLU PLA Matte @base", + "from": "system", + "setting_id": "GFSNLS02_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL X1C 0.2 nozzle.json index e47881e2f2..984234aba0 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL X1C 0.2 nozzle.json @@ -1,125 +1,60 @@ { - "type": "filament", - "name": "SUNLU PLA Matte @BBL X1C 0.2 nozzle", - "inherits": "SUNLU PLA Matte @base", - "from": "system", - "setting_id": "GFSNLS02_00", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "SUNLU PLA Matte @BBL X1C 0.2 nozzle", + "inherits": "SUNLU PLA Matte @base", + "from": "system", + "setting_id": "GFSNLS02_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL X1C.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL X1C.json index 06e1cfcd50..d2f04837ed 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL X1C.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @BBL X1C.json @@ -1,130 +1,65 @@ { - "type": "filament", - "name": "SUNLU PLA Matte @BBL X1C", - "inherits": "SUNLU PLA Matte @base", - "from": "system", - "setting_id": "GFSNLS02", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "21", - "21" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "SUNLU PLA Matte @BBL X1C", + "inherits": "SUNLU PLA Matte @base", + "from": "system", + "setting_id": "GFSNLS02", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "21", + "21" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @base.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @base.json index f3b92cdb2f..de4010d324 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @base.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA Matte @base.json @@ -1,53 +1,53 @@ { - "type": "filament", - "name": "SUNLU PLA Matte @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFpW4gdi", - "instantiation": "false", - "filament_cost": [ - "25.99" - ], - "filament_density": [ - "1.3" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "filament_vendor": [ - "SUNLU" - ], - "filament_scarf_seam_type": [ - "none" - ], - "filament_scarf_height": [ - "5%" - ], - "filament_scarf_gap": [ - "0%" - ], - "filament_scarf_length": [ - "10" - ], - "nozzle_temperature_range_high": [ - "245" - ], - "nozzle_temperature_range_low": [ - "205" - ], - "temperature_vitrification": [ - "54" - ], - "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}" - ] -} + "type": "filament", + "name": "SUNLU PLA Matte @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFpW4gdi", + "instantiation": "false", + "filament_cost": [ + "25.99" + ], + "filament_density": [ + "1.3" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_vendor": [ + "SUNLU" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_scarf_height": [ + "5%" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_length": [ + "10" + ], + "nozzle_temperature_range_high": [ + "245" + ], + "nozzle_temperature_range_low": [ + "205" + ], + "temperature_vitrification": [ + "54" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1 0.2 nozzle.json index 746a96be8d..20a3d734d5 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "SUNLU PLA+ 2.0 @BBL A1 0.2 nozzle", - "inherits": "SUNLU PLA+ 2.0 @base", - "from": "system", - "setting_id": "GFSNLS04_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA+ 2.0 @BBL A1 0.2 nozzle", + "inherits": "SUNLU PLA+ 2.0 @base", + "from": "system", + "setting_id": "GFSNLS04_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1.json index 6ee2d24002..19dbeb3614 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "SUNLU PLA+ 2.0 @BBL A1", - "inherits": "SUNLU PLA+ 2.0 @base", - "from": "system", - "setting_id": "GFSNLS04_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA+ 2.0 @BBL A1", + "inherits": "SUNLU PLA+ 2.0 @base", + "from": "system", + "setting_id": "GFSNLS04_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1M 0.2 nozzle.json index 4089650498..a639584679 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1M 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "SUNLU PLA+ 2.0 @BBL A1M 0.2 nozzle", - "inherits": "SUNLU PLA+ 2.0 @base", - "from": "system", - "setting_id": "GFSNLS04_06", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "1.8" - ], - "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" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA+ 2.0 @BBL A1M 0.2 nozzle", + "inherits": "SUNLU PLA+ 2.0 @base", + "from": "system", + "setting_id": "GFSNLS04_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1.8" + ], + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1M.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1M.json index 03e20eeae0..8bd011b007 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1M.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1M.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "SUNLU PLA+ 2.0 @BBL A1M", - "inherits": "SUNLU PLA+ 2.0 @base", - "from": "system", - "setting_id": "GFSNLS04_07", - "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": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA+ 2.0 @BBL A1M", + "inherits": "SUNLU PLA+ 2.0 @base", + "from": "system", + "setting_id": "GFSNLS04_07", + "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": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL P1P 0.2 nozzle.json index e86690c4fa..f8329334a4 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL P1P 0.2 nozzle.json @@ -1,137 +1,72 @@ { - "type": "filament", - "name": "SUNLU PLA+ 2.0 @BBL P1P 0.2 nozzle", - "inherits": "SUNLU PLA+ 2.0 @base", - "from": "system", - "setting_id": "GFSNLS04_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "filament_flow_ratio": [ - "1.0", - "1.0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA+ 2.0 @BBL P1P 0.2 nozzle", + "inherits": "SUNLU PLA+ 2.0 @base", + "from": "system", + "setting_id": "GFSNLS04_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "1.0", + "1.0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL P1P.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL P1P.json index 59431aad39..b6bccf5151 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL P1P.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL P1P.json @@ -1,142 +1,77 @@ { - "type": "filament", - "name": "SUNLU PLA+ 2.0 @BBL P1P", - "inherits": "SUNLU PLA+ 2.0 @base", - "from": "system", - "setting_id": "GFSNLS04_02", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_flow_ratio": [ - "1.0", - "1.0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "22", - "22" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA+ 2.0 @BBL P1P", + "inherits": "SUNLU PLA+ 2.0 @base", + "from": "system", + "setting_id": "GFSNLS04_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "1.0", + "1.0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "22", + "22" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1.json index c07fa6fd28..f4095c084c 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1.json @@ -1,127 +1,62 @@ { - "type": "filament", - "name": "SUNLU PLA+ 2.0 @BBL X1", - "inherits": "SUNLU PLA+ 2.0 @base", - "from": "system", - "setting_id": "GFSNLS04_00", - "instantiation": "true", - "filament_flow_ratio": [ - "1.0", - "1.0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "22", - "22" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "SUNLU PLA+ 2.0 @BBL X1", + "inherits": "SUNLU PLA+ 2.0 @base", + "from": "system", + "setting_id": "GFSNLS04_00", + "instantiation": "true", + "filament_flow_ratio": [ + "1.0", + "1.0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "22", + "22" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1C 0.2 nozzle.json index cf1c66fdd1..15650c2e9f 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1C 0.2 nozzle.json @@ -1,125 +1,60 @@ { - "type": "filament", - "name": "SUNLU PLA+ 2.0 @BBL X1C 0.2 nozzle", - "inherits": "SUNLU PLA+ 2.0 @base", - "from": "system", - "setting_id": "GFSNLS04_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "filament_flow_ratio": [ - "1.0", - "1.0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "SUNLU PLA+ 2.0 @BBL X1C 0.2 nozzle", + "inherits": "SUNLU PLA+ 2.0 @base", + "from": "system", + "setting_id": "GFSNLS04_01", + "instantiation": "true", + "filament_flow_ratio": [ + "1.0", + "1.0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1C.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1C.json index f9b28938c4..4ba9c15f3e 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1C.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1C.json @@ -1,130 +1,65 @@ { - "type": "filament", - "name": "SUNLU PLA+ 2.0 @BBL X1C", - "inherits": "SUNLU PLA+ 2.0 @base", - "from": "system", - "setting_id": "GFSNLS04", - "instantiation": "true", - "filament_flow_ratio": [ - "1.0", - "1.0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "22", - "22" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "SUNLU PLA+ 2.0 @BBL X1C", + "inherits": "SUNLU PLA+ 2.0 @base", + "from": "system", + "setting_id": "GFSNLS04", + "instantiation": "true", + "filament_flow_ratio": [ + "1.0", + "1.0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "22", + "22" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @base.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @base.json index d2b1087f28..b7c3ad36f0 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @base.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ 2.0 @base.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "SUNLU PLA+ 2.0 @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFHmPYRy", - "instantiation": "false", - "filament_cost": [ - "18.99" - ], - "filament_density": [ - "1.21" - ], - "filament_flow_ratio": [ - "1.0" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_max_volumetric_speed": [ - "22" - ], - "filament_vendor": [ - "SUNLU" - ], - "filament_scarf_seam_type": [ - "none" - ], - "filament_scarf_height": [ - "5%" - ], - "filament_scarf_gap": [ - "0%" - ], - "filament_scarf_length": [ - "10" - ], - "temperature_vitrification": [ - "54" - ], - "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}" - ] -} + "type": "filament", + "name": "SUNLU PLA+ 2.0 @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFHmPYRy", + "instantiation": "false", + "filament_cost": [ + "18.99" + ], + "filament_density": [ + "1.21" + ], + "filament_flow_ratio": [ + "1.0" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_max_volumetric_speed": [ + "22" + ], + "filament_vendor": [ + "SUNLU" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_scarf_height": [ + "5%" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_length": [ + "10" + ], + "temperature_vitrification": [ + "54" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL A1 0.2 nozzle.json index 6aeee35734..d64023ebed 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL A1 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "SUNLU PLA+ @BBL A1 0.2 nozzle", - "inherits": "SUNLU PLA+ @base", - "from": "system", - "setting_id": "GFSNLS03_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA+ @BBL A1 0.2 nozzle", + "inherits": "SUNLU PLA+ @base", + "from": "system", + "setting_id": "GFSNLS03_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL A1.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL A1.json index c77349c9ac..28a92ffbcd 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL A1.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL A1.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "SUNLU PLA+ @BBL A1", - "inherits": "SUNLU PLA+ @base", - "from": "system", - "setting_id": "GFSNLS03_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA+ @BBL A1", + "inherits": "SUNLU PLA+ @base", + "from": "system", + "setting_id": "GFSNLS03_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL A1M 0.2 nozzle.json index cec61b3a90..ab27e92d49 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL A1M 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "SUNLU PLA+ @BBL A1M 0.2 nozzle", - "inherits": "SUNLU PLA+ @base", - "from": "system", - "setting_id": "GFSNLS03_06", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "1.8" - ], - "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" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA+ @BBL A1M 0.2 nozzle", + "inherits": "SUNLU PLA+ @base", + "from": "system", + "setting_id": "GFSNLS03_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1.8" + ], + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL A1M.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL A1M.json index 40488898f6..1adf40a022 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL A1M.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL A1M.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "SUNLU PLA+ @BBL A1M", - "inherits": "SUNLU PLA+ @base", - "from": "system", - "setting_id": "GFSNLS03_07", - "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": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA+ @BBL A1M", + "inherits": "SUNLU PLA+ @base", + "from": "system", + "setting_id": "GFSNLS03_07", + "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": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL P1P 0.2 nozzle.json index 5856a69870..23227067a2 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL P1P 0.2 nozzle.json @@ -1,137 +1,72 @@ { - "type": "filament", - "name": "SUNLU PLA+ @BBL P1P 0.2 nozzle", - "inherits": "SUNLU PLA+ @base", - "from": "system", - "setting_id": "GFSNLS03_03", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "filament_flow_ratio": [ - "1.0", - "1.0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA+ @BBL P1P 0.2 nozzle", + "inherits": "SUNLU PLA+ @base", + "from": "system", + "setting_id": "GFSNLS03_03", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "1.0", + "1.0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL P1P.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL P1P.json index 11336bfb68..092d213cca 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL P1P.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL P1P.json @@ -1,142 +1,77 @@ { - "type": "filament", - "name": "SUNLU PLA+ @BBL P1P", - "inherits": "SUNLU PLA+ @base", - "from": "system", - "setting_id": "GFSNLS03_02", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_flow_ratio": [ - "1.0", - "1.0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU PLA+ @BBL P1P", + "inherits": "SUNLU PLA+ @base", + "from": "system", + "setting_id": "GFSNLS03_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_flow_ratio": [ + "1.0", + "1.0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL X1.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL X1.json index b37471ed79..72d5e42f96 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL X1.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL X1.json @@ -1,127 +1,62 @@ { - "type": "filament", - "name": "SUNLU PLA+ @BBL X1", - "inherits": "SUNLU PLA+ @base", - "from": "system", - "setting_id": "GFSNLS03_00", - "instantiation": "true", - "filament_flow_ratio": [ - "1.0", - "1.0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "SUNLU PLA+ @BBL X1", + "inherits": "SUNLU PLA+ @base", + "from": "system", + "setting_id": "GFSNLS03_00", + "instantiation": "true", + "filament_flow_ratio": [ + "1.0", + "1.0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL X1C 0.2 nozzle.json index 8774c874ce..8e9428f1dd 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL X1C 0.2 nozzle.json @@ -1,125 +1,60 @@ { - "type": "filament", - "name": "SUNLU PLA+ @BBL X1C 0.2 nozzle", - "inherits": "SUNLU PLA+ @base", - "from": "system", - "setting_id": "GFSNLS03_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "filament_flow_ratio": [ - "1.0", - "1.0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "SUNLU PLA+ @BBL X1C 0.2 nozzle", + "inherits": "SUNLU PLA+ @base", + "from": "system", + "setting_id": "GFSNLS03_01", + "instantiation": "true", + "filament_flow_ratio": [ + "1.0", + "1.0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL X1C.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL X1C.json index da293f6b48..d6e52505a1 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL X1C.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @BBL X1C.json @@ -1,127 +1,62 @@ { - "type": "filament", - "name": "SUNLU PLA+ @BBL X1C", - "inherits": "SUNLU PLA+ @base", - "from": "system", - "setting_id": "GFSNLS03", - "instantiation": "true", - "filament_flow_ratio": [ - "1.0", - "1.0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "12", - "12" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "SUNLU PLA+ @BBL X1C", + "inherits": "SUNLU PLA+ @base", + "from": "system", + "setting_id": "GFSNLS03", + "instantiation": "true", + "filament_flow_ratio": [ + "1.0", + "1.0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @base.json b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @base.json index c46fb9affc..ad0170f289 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @base.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU PLA+ @base.json @@ -1,47 +1,47 @@ { - "type": "filament", - "name": "SUNLU PLA+ @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFMUWNkp", - "instantiation": "false", - "filament_cost": [ - "18.99" - ], - "filament_density": [ - "1.23" - ], - "filament_flow_ratio": [ - "1.0" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_max_volumetric_speed": [ - "12" - ], - "filament_vendor": [ - "SUNLU" - ], - "filament_scarf_seam_type": [ - "none" - ], - "filament_scarf_height": [ - "5%" - ], - "filament_scarf_gap": [ - "0%" - ], - "filament_scarf_length": [ - "10" - ], - "temperature_vitrification": [ - "54" - ], - "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}" - ] -} + "type": "filament", + "name": "SUNLU PLA+ @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFMUWNkp", + "instantiation": "false", + "filament_cost": [ + "18.99" + ], + "filament_density": [ + "1.23" + ], + "filament_flow_ratio": [ + "1.0" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_vendor": [ + "SUNLU" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_scarf_height": [ + "5%" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_length": [ + "10" + ], + "temperature_vitrification": [ + "54" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL A1 0.2 nozzle.json index 2f524eef2b..51aef0f369 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL A1 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "SUNLU Silk PLA+ @BBL A1 0.2 nozzle", - "inherits": "SUNLU Silk PLA+ @base", - "from": "system", - "setting_id": "GFSNLS05_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "filament", + "name": "SUNLU Silk PLA+ @BBL A1 0.2 nozzle", + "inherits": "SUNLU Silk PLA+ @base", + "from": "system", + "setting_id": "GFSNLS05_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL A1.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL A1.json index 526bc5d716..842b07f125 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL A1.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL A1.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "SUNLU Silk PLA+ @BBL A1", - "inherits": "SUNLU Silk PLA+ @base", - "from": "system", - "setting_id": "GFSNLS05_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU Silk PLA+ @BBL A1", + "inherits": "SUNLU Silk PLA+ @base", + "from": "system", + "setting_id": "GFSNLS05_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL A1M 0.2 nozzle.json index 570f5a0de5..bfa3187978 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL A1M 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "filament", - "name": "SUNLU Silk PLA+ @BBL A1M 0.2 nozzle", - "inherits": "SUNLU Silk PLA+ @base", - "from": "system", - "setting_id": "GFSNLS05_07", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "2" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "filament", + "name": "SUNLU Silk PLA+ @BBL A1M 0.2 nozzle", + "inherits": "SUNLU Silk PLA+ @base", + "from": "system", + "setting_id": "GFSNLS05_07", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "2" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL A1M.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL A1M.json index fed22243bd..470fb3880a 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL A1M.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL A1M.json @@ -1,37 +1,37 @@ { - "type": "filament", - "name": "SUNLU Silk PLA+ @BBL A1M", - "inherits": "SUNLU Silk PLA+ @base", - "from": "system", - "setting_id": "GFSNLS05_06", - "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": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU Silk PLA+ @BBL A1M", + "inherits": "SUNLU Silk PLA+ @base", + "from": "system", + "setting_id": "GFSNLS05_06", + "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": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL P1P 0.2 nozzle.json index e6c41c46c9..76ee99930e 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL P1P 0.2 nozzle.json @@ -1,131 +1,66 @@ { - "type": "filament", - "name": "SUNLU Silk PLA+ @BBL P1P 0.2 nozzle", - "inherits": "SUNLU Silk PLA+ @base", - "from": "system", - "setting_id": "GFSNLS05_03", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" - ] -} + "type": "filament", + "name": "SUNLU Silk PLA+ @BBL P1P 0.2 nozzle", + "inherits": "SUNLU Silk PLA+ @base", + "from": "system", + "setting_id": "GFSNLS05_03", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL P1P.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL P1P.json index b98d0ed67f..afb63f8fd3 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL P1P.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL P1P.json @@ -1,136 +1,71 @@ { - "type": "filament", - "name": "SUNLU Silk PLA+ @BBL P1P", - "inherits": "SUNLU Silk PLA+ @base", - "from": "system", - "setting_id": "GFSNLS05_02", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU Silk PLA+ @BBL P1P", + "inherits": "SUNLU Silk PLA+ @base", + "from": "system", + "setting_id": "GFSNLS05_02", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL X1.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL X1.json index 980359bb5a..7950b1b749 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL X1.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL X1.json @@ -1,124 +1,59 @@ { - "type": "filament", - "name": "SUNLU Silk PLA+ @BBL X1", - "inherits": "SUNLU Silk PLA+ @base", - "from": "system", - "setting_id": "GFSNLS05_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU Silk PLA+ @BBL X1", + "inherits": "SUNLU Silk PLA+ @base", + "from": "system", + "setting_id": "GFSNLS05_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL X1C 0.2 nozzle.json index ed0ca92a7b..95997d7276 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL X1C 0.2 nozzle.json @@ -1,125 +1,60 @@ { - "type": "filament", - "name": "SUNLU Silk PLA+ @BBL X1C 0.2 nozzle", - "inherits": "SUNLU Silk PLA+ @base", - "from": "system", - "setting_id": "GFSNLS05_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "2", - "2" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "SUNLU Silk PLA+ @BBL X1C 0.2 nozzle", + "inherits": "SUNLU Silk PLA+ @base", + "from": "system", + "setting_id": "GFSNLS05_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "2", + "2" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL X1C.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL X1C.json index 55e8349ec4..592744f786 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL X1C.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @BBL X1C.json @@ -1,130 +1,65 @@ { - "type": "filament", - "name": "SUNLU Silk PLA+ @BBL X1C", - "inherits": "SUNLU Silk PLA+ @base", - "from": "system", - "setting_id": "GFSNLS05", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "230", - "230" - ], - "nozzle_temperature_initial_layer": [ - "230", - "230" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "SUNLU Silk PLA+ @BBL X1C", + "inherits": "SUNLU Silk PLA+ @base", + "from": "system", + "setting_id": "GFSNLS05", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @base.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @base.json index 22e7994783..4368a784e6 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @base.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Silk PLA+ @base.json @@ -1,54 +1,54 @@ { - "type": "filament", - "name": "SUNLU Silk PLA+ @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFpPGSKG", - "instantiation": "false", - "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.", - "filament_cost": [ - "29.99" - ], - "filament_density": [ - "1.25" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_vendor": [ - "SUNLU" - ], - "filament_scarf_height": [ - "5%" - ], - "filament_scarf_gap": [ - "0%" - ], - "nozzle_temperature": [ - "230" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "supertack_plate_temp": [ - "0" - ], - "supertack_plate_temp_initial_layer": [ - "0" - ], - "temperature_vitrification": [ - "54" - ], - "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}" - ] -} + "type": "filament", + "name": "SUNLU Silk PLA+ @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFpPGSKG", + "instantiation": "false", + "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.", + "filament_cost": [ + "29.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_vendor": [ + "SUNLU" + ], + "filament_scarf_height": [ + "5%" + ], + "filament_scarf_gap": [ + "0%" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "54" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL A1.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL A1.json index 224f465980..67ba026aba 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL A1.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL A1.json @@ -1,40 +1,40 @@ { - "type": "filament", - "name": "SUNLU Wood PLA @BBL A1", - "inherits": "SUNLU Wood PLA @base", - "from": "system", - "setting_id": "GFSNLS07_02", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ], - "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}" - ] -} + "type": "filament", + "name": "SUNLU Wood PLA @BBL A1", + "inherits": "SUNLU Wood PLA @base", + "from": "system", + "setting_id": "GFSNLS07_02", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL A1M.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL A1M.json index e5943c3222..5318be2d56 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL A1M.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL A1M.json @@ -1,40 +1,40 @@ { - "type": "filament", - "name": "SUNLU Wood PLA @BBL A1M", - "inherits": "SUNLU Wood PLA @base", - "from": "system", - "setting_id": "GFSNLS07_03", - "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": [ - "6" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ], - "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}" - ] -} + "type": "filament", + "name": "SUNLU Wood PLA @BBL A1M", + "inherits": "SUNLU Wood PLA @base", + "from": "system", + "setting_id": "GFSNLS07_03", + "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": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL P1P.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL P1P.json index 5ecdb93c9c..ff61f6d3ce 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL P1P.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL P1P.json @@ -1,145 +1,92 @@ { - "type": "filament", - "name": "SUNLU Wood PLA @BBL P1P", - "inherits": "SUNLU Wood PLA @base", - "from": "system", - "setting_id": "GFSNLS07_01", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_min_speed": [ - "50" - ], - "filament_flow_ratio": [ - "1.0", - "1.0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_retraction_length": [ - "4", - "4" - ], - "filament_retraction_speed": [ - "50", - "50" - ], - "filament_deretraction_speed": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab P1P 0.8 nozzle" - ], - "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}" - ] -} + "type": "filament", + "name": "SUNLU Wood PLA @BBL P1P", + "inherits": "SUNLU Wood PLA @base", + "from": "system", + "setting_id": "GFSNLS07_01", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_min_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "0", + "0" + ], + "filament_flow_ratio": [ + "1.0", + "1.0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "4", + "4" + ], + "filament_retraction_speed": [ + "50", + "50" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL X1.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL X1.json index cd3b48f9af..ec47af1a1f 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL X1.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL X1.json @@ -1,127 +1,74 @@ { - "type": "filament", - "name": "SUNLU Wood PLA @BBL X1", - "inherits": "SUNLU Wood PLA @base", - "from": "system", - "setting_id": "GFSNLS07_00", - "instantiation": "true", - "filament_flow_ratio": [ - "1.0", - "1.0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_retraction_length": [ - "4", - "4" - ], - "filament_retraction_speed": [ - "50", - "50" - ], - "filament_deretraction_speed": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "8" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ], - "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}" - ] -} + "type": "filament", + "name": "SUNLU Wood PLA @BBL X1", + "inherits": "SUNLU Wood PLA @base", + "from": "system", + "setting_id": "GFSNLS07_00", + "instantiation": "true", + "filament_deretraction_speed": [ + "0", + "0" + ], + "filament_flow_ratio": [ + "1.0", + "1.0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "4", + "4" + ], + "filament_retraction_speed": [ + "50", + "50" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL X1C.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL X1C.json index f99e4d0815..166a646452 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL X1C.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @BBL X1C.json @@ -1,127 +1,74 @@ { - "type": "filament", - "name": "SUNLU Wood PLA @BBL X1C", - "inherits": "SUNLU Wood PLA @base", - "from": "system", - "setting_id": "GFSNLS07", - "instantiation": "true", - "filament_flow_ratio": [ - "1.0", - "1.0" - ], - "filament_long_retractions_when_cut": [ - "1", - "1" - ], - "filament_retraction_distances_when_cut": [ - "18", - "18" - ], - "filament_retraction_length": [ - "4", - "4" - ], - "filament_retraction_speed": [ - "50", - "50" - ], - "filament_deretraction_speed": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "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": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} + "type": "filament", + "name": "SUNLU Wood PLA @BBL X1C", + "inherits": "SUNLU Wood PLA @base", + "from": "system", + "setting_id": "GFSNLS07", + "instantiation": "true", + "filament_deretraction_speed": [ + "0", + "0" + ], + "filament_flow_ratio": [ + "1.0", + "1.0" + ], + "filament_long_retractions_when_cut": [ + "1", + "1" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_retraction_distances_when_cut": [ + "18", + "18" + ], + "filament_retraction_length": [ + "4", + "4" + ], + "filament_retraction_speed": [ + "50", + "50" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @base.json b/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @base.json index e13c06ceb8..643b47bab5 100644 --- a/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @base.json +++ b/resources/profiles/BBL/filament/SUNLU/SUNLU Wood PLA @base.json @@ -1,62 +1,62 @@ { - "type": "filament", - "name": "SUNLU Wood PLA @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFLJ8S6I", - "instantiation": "false", - "filament_cost": [ - "26.99" - ], - "filament_density": [ - "1.10" - ], - "filament_flow_ratio": [ - "1.0" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "filament_retraction_length": [ - "4" - ], - "filament_retraction_speed": [ - "50" - ], - "filament_deretraction_speed": [ - "0" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_vendor": [ - "SUNLU" - ], - "filament_scarf_seam_type": [ - "none" - ], - "filament_scarf_height": [ - "5%" - ], - "filament_scarf_gap": [ - "0%" - ], - "filament_scarf_length": [ - "10" - ], - "nozzle_temperature_range_high": [ - "260" - ], - "nozzle_temperature_range_low": [ - "195" - ], - "temperature_vitrification": [ - "54" - ], - "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} + "type": "filament", + "name": "SUNLU Wood PLA @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFLJ8S6I", + "instantiation": "false", + "filament_cost": [ + "26.99" + ], + "filament_density": [ + "1.10" + ], + "filament_flow_ratio": [ + "1.0" + ], + "filament_long_retractions_when_cut": [ + "1" + ], + "filament_retraction_distances_when_cut": [ + "18" + ], + "filament_retraction_length": [ + "4" + ], + "filament_retraction_speed": [ + "50" + ], + "filament_deretraction_speed": [ + "0" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_vendor": [ + "SUNLU" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_scarf_height": [ + "5%" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_length": [ + "10" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature_range_low": [ + "195" + ], + "temperature_vitrification": [ + "54" + ], + "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}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/eSUN PLA+ @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/eSUN PLA+ @BBL A1 0.2 nozzle.json new file mode 100644 index 0000000000..d6e8e925bd --- /dev/null +++ b/resources/profiles/BBL/filament/eSUN PLA+ @BBL A1 0.2 nozzle.json @@ -0,0 +1,38 @@ +{ + "type": "filament", + "name": "eSUN PLA+ @BBL A1 0.2 nozzle", + "inherits": "eSUN PLA+ @base", + "from": "system", + "setting_id": "GFSL03_06", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1.8" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/eSUN PLA+ @BBL A1.json b/resources/profiles/BBL/filament/eSUN PLA+ @BBL A1.json new file mode 100644 index 0000000000..072c2c94cc --- /dev/null +++ b/resources/profiles/BBL/filament/eSUN PLA+ @BBL A1.json @@ -0,0 +1,37 @@ +{ + "type": "filament", + "name": "eSUN PLA+ @BBL A1", + "inherits": "eSUN PLA+ @base", + "from": "system", + "setting_id": "GFSL03_05", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/eSUN PLA+ @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/eSUN PLA+ @BBL A1M 0.2 nozzle.json new file mode 100644 index 0000000000..ced8418038 --- /dev/null +++ b/resources/profiles/BBL/filament/eSUN PLA+ @BBL A1M 0.2 nozzle.json @@ -0,0 +1,38 @@ +{ + "type": "filament", + "name": "eSUN PLA+ @BBL A1M 0.2 nozzle", + "inherits": "eSUN PLA+ @base", + "from": "system", + "setting_id": "GFSL03_04", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "1.8" + ], + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/eSUN PLA+ @BBL A1M.json b/resources/profiles/BBL/filament/eSUN PLA+ @BBL A1M.json new file mode 100644 index 0000000000..9b71d17e27 --- /dev/null +++ b/resources/profiles/BBL/filament/eSUN PLA+ @BBL A1M.json @@ -0,0 +1,37 @@ +{ + "type": "filament", + "name": "eSUN PLA+ @BBL A1M", + "inherits": "eSUN PLA+ @base", + "from": "system", + "setting_id": "GFSL03_03", + "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" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2D 0.2 nozzle.json new file mode 100644 index 0000000000..fa909a3fd2 --- /dev/null +++ b/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2D 0.2 nozzle.json @@ -0,0 +1,54 @@ +{ + "type": "filament", + "name": "eSUN PLA+ @BBL H2D 0.2 nozzle", + "inherits": "eSUN PLA+ @base", + "from": "system", + "setting_id": "GFSL03_08", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2D.json b/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2D.json new file mode 100644 index 0000000000..a2343c6b4e --- /dev/null +++ b/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2D.json @@ -0,0 +1,63 @@ +{ + "type": "filament", + "name": "eSUN PLA+ @BBL H2D", + "inherits": "eSUN PLA+ @base", + "from": "system", + "setting_id": "GFSL03_07", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2DP 0.2 nozzle.json index 5089f0a41f..e9c9c8caa5 100644 --- a/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2DP 0.2 nozzle.json @@ -1,131 +1,54 @@ { - "type": "filament", - "name": "eSUN PLA+ @BBL H2DP 0.2 nozzle", - "inherits": "eSUN PLA+ @base", - "from": "system", - "setting_id": "GFSL03_16", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "eSUN PLA+ @BBL H2DP 0.2 nozzle", + "inherits": "eSUN PLA+ @base", + "from": "system", + "setting_id": "GFSL03_16", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2DP.json b/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2DP.json index f1cc7cfa13..0b1ef208ab 100644 --- a/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2DP.json +++ b/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2DP.json @@ -1,133 +1,56 @@ { - "type": "filament", - "name": "eSUN PLA+ @BBL H2DP", - "inherits": "eSUN PLA+ @base", - "from": "system", - "setting_id": "GFSL03_15", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "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.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "eSUN PLA+ @BBL H2DP", + "inherits": "eSUN PLA+ @base", + "from": "system", + "setting_id": "GFSL03_15", + "instantiation": "true", + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2S 0.2 nozzle.json index 13bc6f4cf7..eb6e63dd5c 100644 --- a/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2S 0.2 nozzle.json @@ -1,134 +1,73 @@ { - "type": "filament", - "name": "eSUN PLA+ @BBL H2S 0.2 nozzle", - "inherits": "eSUN PLA+ @base", - "from": "system", - "setting_id": "GFSL03_12", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "3", - "3" - ], - "filament_long_retractions_when_cut": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "eSUN PLA+ @BBL H2S 0.2 nozzle", + "inherits": "eSUN PLA+ @base", + "from": "system", + "setting_id": "GFSL03_12", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_flush_volumetric_speed": [ + "3", + "3" + ], + "filament_long_retractions_when_cut": [ + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2S.json b/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2S.json index fe5752183a..0a60b92b11 100644 --- a/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2S.json +++ b/resources/profiles/BBL/filament/eSUN PLA+ @BBL H2S.json @@ -1,136 +1,81 @@ { - "type": "filament", - "name": "eSUN PLA+ @BBL H2S", - "inherits": "eSUN PLA+ @base", - "from": "system", - "setting_id": "GFSL03_09", - "instantiation": "true", - "additional_cooling_fan_speed": [ - "75" - ], - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "0", - "0" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2S 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} + "type": "filament", + "name": "eSUN PLA+ @BBL H2S", + "inherits": "eSUN PLA+ @base", + "from": "system", + "setting_id": "GFSL03_09", + "instantiation": "true", + "additional_cooling_fan_speed": [ + "75" + ], + "eng_plate_temp": [ + "55" + ], + "eng_plate_temp_initial_layer": [ + "55" + ], + "filament_cooling_before_tower": [ + "10", + "10", + "10" + ], + "filament_flow_ratio": [ + "0.98", + "0.98", + "0.98" + ], + "filament_long_retractions_when_cut": [ + "0", + "0", + "0" + ], + "filament_max_volumetric_speed": [ + "16", + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual_e3d" + ], + "long_retractions_when_ec": [ + "0", + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle" + ], + "filament_start_gcode": [ + "; filament start gcode\n" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/eSUN PLA+ @BBL X1.json b/resources/profiles/BBL/filament/eSUN PLA+ @BBL X1.json new file mode 100644 index 0000000000..df1c6a5e5d --- /dev/null +++ b/resources/profiles/BBL/filament/eSUN PLA+ @BBL X1.json @@ -0,0 +1,51 @@ +{ + "type": "filament", + "name": "eSUN PLA+ @BBL X1", + "inherits": "eSUN PLA+ @base", + "from": "system", + "setting_id": "GFSL03_02", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/eSUN PLA+ @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/eSUN PLA+ @BBL X1C 0.2 nozzle.json new file mode 100644 index 0000000000..7e3c941a9f --- /dev/null +++ b/resources/profiles/BBL/filament/eSUN PLA+ @BBL X1C 0.2 nozzle.json @@ -0,0 +1,49 @@ +{ + "type": "filament", + "name": "eSUN PLA+ @BBL X1C 0.2 nozzle", + "inherits": "eSUN PLA+ @base", + "from": "system", + "setting_id": "GFSL03_01", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "1.8", + "1.8" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/eSUN PLA+ @BBL X1C.json b/resources/profiles/BBL/filament/eSUN PLA+ @BBL X1C.json new file mode 100644 index 0000000000..712a1335d4 --- /dev/null +++ b/resources/profiles/BBL/filament/eSUN PLA+ @BBL X1C.json @@ -0,0 +1,54 @@ +{ + "type": "filament", + "name": "eSUN PLA+ @BBL X1C", + "inherits": "eSUN PLA+ @base", + "from": "system", + "setting_id": "GFSL03_00", + "instantiation": "true", + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_max_volumetric_speed": [ + "16", + "16" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "include": [ + "fdm_filament_template_direct_dual" + ], + "long_retractions_when_ec": [ + "0", + "0" + ], + "nozzle_temperature": [ + "220", + "220" + ], + "nozzle_temperature_initial_layer": [ + "220", + "220" + ], + "retraction_distances_when_ec": [ + "0", + "0" + ], + "slow_down_min_speed": [ + "20", + "20" + ], + "compatible_printers": [ + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/eSUN PLA+ @base.json b/resources/profiles/BBL/filament/eSUN PLA+ @base.json new file mode 100644 index 0000000000..7a40d0187f --- /dev/null +++ b/resources/profiles/BBL/filament/eSUN PLA+ @base.json @@ -0,0 +1,29 @@ +{ + "type": "filament", + "name": "eSUN PLA+ @base", + "inherits": "fdm_filament_pla", + "from": "system", + "filament_id": "OFqINlYj", + "instantiation": "false", + "filament_cost": [ + "22.99" + ], + "filament_density": [ + "1.25" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_vendor": [ + "eSUN" + ], + "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}" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL A1 0.2 nozzle.json deleted file mode 100644 index 7ec0d0250e..0000000000 --- a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL A1 0.2 nozzle.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "type": "filament", - "name": "eSUN PLA+ @BBL A1 0.2 nozzle", - "inherits": "eSUN PLA+ @base", - "from": "system", - "setting_id": "GFSL03_06", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "1.8" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL A1.json b/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL A1.json deleted file mode 100644 index 9831a42950..0000000000 --- a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL A1.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "type": "filament", - "name": "eSUN PLA+ @BBL A1", - "inherits": "eSUN PLA+ @base", - "from": "system", - "setting_id": "GFSL03_05", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "hot_plate_temp": [ - "65" - ], - "hot_plate_temp_initial_layer": [ - "65" - ], - "slow_down_layer_time": [ - "8" - ], - "textured_plate_temp": [ - "65" - ], - "textured_plate_temp_initial_layer": [ - "65" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab A1 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL A1M 0.2 nozzle.json deleted file mode 100644 index d8ad009b96..0000000000 --- a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL A1M 0.2 nozzle.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "type": "filament", - "name": "eSUN PLA+ @BBL A1M 0.2 nozzle", - "inherits": "eSUN PLA+ @base", - "from": "system", - "setting_id": "GFSL03_04", - "instantiation": "true", - "fan_cooling_layer_time": [ - "80" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "1.8" - ], - "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" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL A1M.json b/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL A1M.json deleted file mode 100644 index a7ab593c50..0000000000 --- a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL A1M.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "type": "filament", - "name": "eSUN PLA+ @BBL A1M", - "inherits": "eSUN PLA+ @base", - "from": "system", - "setting_id": "GFSL03_03", - "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" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle", - "Bambu Lab A1 mini 0.6 nozzle", - "Bambu Lab A1 mini 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL H2D 0.2 nozzle.json deleted file mode 100644 index 32f2e2c009..0000000000 --- a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL H2D 0.2 nozzle.json +++ /dev/null @@ -1,131 +0,0 @@ -{ - "type": "filament", - "name": "eSUN PLA+ @BBL H2D 0.2 nozzle", - "inherits": "eSUN PLA+ @base", - "from": "system", - "setting_id": "GFSL03_08", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} diff --git a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL H2D.json b/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL H2D.json deleted file mode 100644 index 1589c492cc..0000000000 --- a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL H2D.json +++ /dev/null @@ -1,133 +0,0 @@ -{ - "type": "filament", - "name": "eSUN PLA+ @BBL H2D", - "inherits": "eSUN PLA+ @base", - "from": "system", - "setting_id": "GFSL03_07", - "instantiation": "true", - "eng_plate_temp": [ - "55" - ], - "eng_plate_temp_initial_layer": [ - "55" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "1", - "1" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "10", - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D 0.8 nozzle" - ], - "filament_start_gcode": [ - "; filament start gcode\n" - ], - "filament_end_gcode": [ - "; filament end gcode \n" - ] -} diff --git a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL X1.json b/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL X1.json deleted file mode 100644 index 553c2ea312..0000000000 --- a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL X1.json +++ /dev/null @@ -1,124 +0,0 @@ -{ - "type": "filament", - "name": "eSUN PLA+ @BBL X1", - "inherits": "eSUN PLA+ @base", - "from": "system", - "setting_id": "GFSL03_02", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "slow_down_layer_time": [ - "10" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL X1C 0.2 nozzle.json deleted file mode 100644 index e0de21b614..0000000000 --- a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL X1C 0.2 nozzle.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "type": "filament", - "name": "eSUN PLA+ @BBL X1C 0.2 nozzle", - "inherits": "eSUN PLA+ @base", - "from": "system", - "setting_id": "GFSL03_01", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "1.8", - "1.8" - ], - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL X1C.json b/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL X1C.json deleted file mode 100644 index 5975af1cb2..0000000000 --- a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @BBL X1C.json +++ /dev/null @@ -1,127 +0,0 @@ -{ - "type": "filament", - "name": "eSUN PLA+ @BBL X1C", - "inherits": "eSUN PLA+ @base", - "from": "system", - "setting_id": "GFSL03_00", - "instantiation": "true", - "filament_flow_ratio": [ - "0.98", - "0.98" - ], - "filament_max_volumetric_speed": [ - "16", - "16" - ], - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_flush_temp": [ - "0", - "0" - ], - "filament_flush_volumetric_speed": [ - "0", - "0" - ], - "filament_long_retractions_when_cut": [ - "nil", - "nil" - ], - "filament_ramming_volumetric_speed": [ - "-1", - "-1" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_restart_extra": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_pre_cooling_temperature": [ - "0", - "0" - ], - "filament_ramming_travel_time": [ - "0", - "0" - ], - "filament_adaptive_volumetric_speed": [ - "0", - "0" - ], - "long_retractions_when_ec": [ - "0", - "0" - ], - "nozzle_temperature": [ - "220", - "220" - ], - "nozzle_temperature_initial_layer": [ - "220", - "220" - ], - "retraction_distances_when_ec": [ - "0", - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0", - "0 0 0 0 0 0" - ], - "compatible_printers": [ - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab X1E 0.8 nozzle" - ] -} diff --git a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @base.json b/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @base.json deleted file mode 100644 index 6820e79489..0000000000 --- a/resources/profiles/BBL/filament/eSUN/eSUN PLA+ @base.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "type": "filament", - "name": "eSUN PLA+ @base", - "inherits": "fdm_filament_pla", - "from": "system", - "filament_id": "OFqINlYj", - "instantiation": "false", - "filament_cost": [ - "22.99" - ], - "filament_density": [ - "1.25" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "filament_vendor": [ - "eSUN" - ], - "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}" - ] -} diff --git a/resources/profiles/BBL/filament/fdm_filament_abs.json b/resources/profiles/BBL/filament/fdm_filament_abs.json index 4eb47ce0bd..4b8086b836 100644 --- a/resources/profiles/BBL/filament/fdm_filament_abs.json +++ b/resources/profiles/BBL/filament/fdm_filament_abs.json @@ -1,48 +1,48 @@ { - "type": "filament", - "name": "fdm_filament_abs", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "activate_air_filtration": [ - "1" - ], - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "90" - ], - "eng_plate_temp_initial_layer": [ - "90" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "10" - ], - "filament_cost": [ - "20" - ], - "filament_density": [ - "1.04" - ], - "filament_max_volumetric_speed": [ - "28.6" - ], - "filament_type": [ - "ABS" - ], - "filament_adhesiveness_category": [ - "200" - ], + "type": "filament", + "name": "fdm_filament_abs", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "activate_air_filtration": [ + "1" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "90" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.04" + ], + "filament_max_volumetric_speed": [ + "28.6" + ], + "filament_type": [ + "ABS" + ], + "filament_adhesiveness_category": [ + "200" + ], "filament_dev_ams_drying_time": [ "12", "8.0", @@ -64,52 +64,52 @@ "filament_dev_drying_softening_temperature": [ "80" ], - "hot_plate_temp": [ - "90" - ], - "hot_plate_temp_initial_layer": [ - "90" - ], - "nozzle_temperature": [ - "270" - ], - "nozzle_temperature_initial_layer": [ - "260" - ], - "nozzle_temperature_range_high": [ - "280" - ], - "nozzle_temperature_range_low": [ - "240" - ], - "overhang_fan_speed": [ - "80" - ], - "overhang_fan_threshold": [ - "25%" - ], - "reduce_fan_stop_start_freq": [ - "1" - ], - "slow_down_layer_time": [ - "3" - ], - "slow_down_min_speed": [ - "20" - ], - "supertack_plate_temp": [ - "0" - ], - "supertack_plate_temp_initial_layer": [ - "0" - ], - "textured_plate_temp": [ - "90" - ], - "textured_plate_temp_initial_layer": [ - "90" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "80" + ], + "overhang_fan_threshold": [ + "25%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_layer_time": [ + "3" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "90" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_asa.json b/resources/profiles/BBL/filament/fdm_filament_asa.json index b5ae3ad8b5..b3d8d48b54 100644 --- a/resources/profiles/BBL/filament/fdm_filament_asa.json +++ b/resources/profiles/BBL/filament/fdm_filament_asa.json @@ -1,48 +1,48 @@ { - "type": "filament", - "name": "fdm_filament_asa", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "activate_air_filtration": [ - "1" - ], - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "90" - ], - "eng_plate_temp_initial_layer": [ - "90" - ], - "fan_cooling_layer_time": [ - "35" - ], - "fan_max_speed": [ - "80" - ], - "fan_min_speed": [ - "10" - ], - "filament_cost": [ - "20" - ], - "filament_density": [ - "1.04" - ], - "filament_max_volumetric_speed": [ - "28.6" - ], - "filament_type": [ - "ASA" - ], - "filament_adhesiveness_category": [ - "200" - ], + "type": "filament", + "name": "fdm_filament_asa", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "activate_air_filtration": [ + "1" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "90" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "fan_cooling_layer_time": [ + "35" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.04" + ], + "filament_max_volumetric_speed": [ + "28.6" + ], + "filament_type": [ + "ASA" + ], + "filament_adhesiveness_category": [ + "200" + ], "filament_dev_ams_drying_time": [ "12", "8.0", @@ -64,55 +64,55 @@ "filament_dev_drying_softening_temperature": [ "85" ], - "hot_plate_temp": [ - "90" - ], - "hot_plate_temp_initial_layer": [ - "90" - ], - "impact_strength_z": [ - "4.9" - ], - "nozzle_temperature": [ - "260" - ], - "nozzle_temperature_initial_layer": [ - "260" - ], - "nozzle_temperature_range_high": [ - "280" - ], - "nozzle_temperature_range_low": [ - "240" - ], - "overhang_fan_speed": [ - "80" - ], - "overhang_fan_threshold": [ - "25%" - ], - "reduce_fan_stop_start_freq": [ - "1" - ], - "slow_down_layer_time": [ - "3" - ], - "slow_down_min_speed": [ - "20" - ], - "supertack_plate_temp": [ - "0" - ], - "supertack_plate_temp_initial_layer": [ - "0" - ], - "textured_plate_temp": [ - "90" - ], - "textured_plate_temp_initial_layer": [ - "90" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "impact_strength_z": [ + "4.9" + ], + "nozzle_temperature": [ + "260" + ], + "nozzle_temperature_initial_layer": [ + "260" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "80" + ], + "overhang_fan_threshold": [ + "25%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_layer_time": [ + "3" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "90" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_bvoh.json b/resources/profiles/BBL/filament/fdm_filament_bvoh.json index ee15cc5e30..5755e3bdbb 100644 --- a/resources/profiles/BBL/filament/fdm_filament_bvoh.json +++ b/resources/profiles/BBL/filament/fdm_filament_bvoh.json @@ -1,48 +1,51 @@ { - "type": "filament", - "name": "fdm_filament_bvoh", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "additional_cooling_fan_speed": [ - "70" - ], - "close_fan_the_first_x_layers": [ - "1" - ], - "cool_plate_temp": [ - "40" - ], - "cool_plate_temp_initial_layer": [ - "40" - ], - "eng_plate_temp": [ - "0" - ], - "eng_plate_temp_initial_layer": [ - "0" - ], - "fan_cooling_layer_time": [ - "100" - ], - "fan_min_speed": [ - "100" - ], - "filament_cost": [ - "69.99" - ], - "filament_density": [ - "1.13" - ], - "filament_is_support": [ - "1" - ], - "filament_max_volumetric_speed": [ - "8" - ], - "filament_type": [ - "BVOH" - ], + "type": "filament", + "name": "fdm_filament_bvoh", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "1" + ], + "cool_plate_temp": [ + "40" + ], + "cool_plate_temp_initial_layer": [ + "40" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "69.99" + ], + "filament_density": [ + "1.13" + ], + "filament_is_support": [ + "1" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_type": [ + "BVOH" + ], "filament_dev_chamber_drying_bed_temperature": [ "80" ], @@ -71,46 +74,46 @@ "filament_dev_drying_softening_temperature": [ "50" ], - "hot_plate_temp": [ - "55" - ], - "hot_plate_temp_initial_layer": [ - "55" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "overhang_fan_threshold": [ - "50%" - ], - "reduce_fan_stop_start_freq": [ - "1" - ], - "supertack_plate_temp": [ - "0" - ], - "supertack_plate_temp_initial_layer": [ - "0" - ], - "slow_down_min_speed": [ - "20" - ], - "temperature_vitrification": [ - "45" - ], - "textured_plate_temp": [ - "55" - ], - "textured_plate_temp_initial_layer": [ - "55" - ], - "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_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "overhang_fan_threshold": [ + "50%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "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_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_common.json b/resources/profiles/BBL/filament/fdm_filament_common.json index caa037c74b..29f0d6a529 100644 --- a/resources/profiles/BBL/filament/fdm_filament_common.json +++ b/resources/profiles/BBL/filament/fdm_filament_common.json @@ -1,301 +1,400 @@ { - "type": "filament", - "name": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "activate_air_filtration": [ - "0" - ], - "additional_cooling_fan_speed": [ - "0" - ], - "chamber_temperatures": [ - "0" - ], - "close_fan_the_first_x_layers": [ - "3" - ], - "close_additional_fan_first_x_layers": [ - "3" - ], - "complete_print_exhaust_fan_speed": [ - "70" - ], - "cool_plate_temp": [ - "60" - ], - "cool_plate_temp_initial_layer": [ - "60" - ], - "counter_coef_1": [ - "0" - ], - "counter_coef_2": [ - "0.008" - ], - "counter_coef_3": [ - "-0.041" - ], - "counter_limit_min": [ - "-0.035" - ], - "counter_limit_max": [ - "0.033" - ], - "circle_compensation_speed": [ - "200" - ], - "during_print_exhaust_fan_speed": [ - "70" - ], - "diameter_limit": [ - "50" - ], - "eng_plate_temp": [ - "60" - ], - "eng_plate_temp_initial_layer": [ - "60" - ], - "fan_cooling_layer_time": [ - "60" - ], - "fan_max_speed": [ - "100" - ], - "fan_min_speed": [ - "35" - ], - "filament_cost": [ - "0" - ], - "filament_density": [ - "0" - ], - "filament_deretraction_speed": [ - "nil" - ], - "filament_diameter": [ - "1.75" - ], - "filament_flow_ratio": [ - "1" - ], - "filament_flush_temp": [ - "0" - ], - "filament_flush_volumetric_speed": [ - "0" - ], - "filament_is_support": [ - "0" - ], - "filament_long_retractions_when_cut": [ - "nil" - ], - "filament_long_retractions_when_ec": [ - "nil" - ], - "filament_max_volumetric_speed": [ - "12" - ], - "filament_ramming_volumetric_speed": [ - "-1" - ], - "filament_minimal_purge_on_wipe_tower": [ - "15" - ], - "filament_tower_interface_pre_extrusion_dist": [ - "10" - ], - "filament_tower_interface_pre_extrusion_length": [ - "0" - ], - "filament_tower_ironing_area": [ - "4" - ], - "filament_tower_interface_purge_volume": [ - "20" - ], - "filament_tower_interface_print_temp": [ - "-1" - ], - "filament_printable": [ - "3" - ], - "filament_retract_before_wipe": [ - "nil" - ], - "filament_retract_restart_extra": [ - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil" - ], - "filament_retraction_distances_when_ec": [ - "nil" - ], - "filament_retraction_length": [ - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil" - ], - "filament_retraction_speed": [ - "nil" - ], - "filament_settings_id": [ - "" - ], - "filament_soluble": [ - "0" - ], - "filament_type": [ - "PLA" - ], - "filament_vendor": [ - "Generic" - ], - "filament_wipe": [ - "nil" - ], - "filament_wipe_distance": [ - "nil" - ], - "filament_prime_volume": [ - "45" - ], - "filament_z_hop": [ - "nil" - ], - "filament_z_hop_types": [ - "nil" - ], - "full_fan_speed_layer": [ - "0" - ], - "additional_fan_full_speed_layer": [ - "0" - ], - "filament_extruder_variant": [ - "Direct Drive Standard" - ], - "filament_scarf_seam_type": [ - "none" - ], - "filament_scarf_height": [ - "10%" - ], - "filament_scarf_gap": [ - "0%" - ], - "filament_scarf_length": [ - "10" - ], - "filament_shrink": [ - "100%" - ], - "filament_pre_cooling_temperature": [ - "0" - ], - "filament_ramming_travel_time": [ - "0" - ], - "hot_plate_temp": [ - "60" - ], - "hot_plate_temp_initial_layer": [ - "60" - ], - "hole_coef_1": [ - "0" - ], - "hole_coef_2": [ - "-0.008" - ], - "hole_coef_3": [ - "0.23415" - ], - "hole_limit_min": [ - "0.088" - ], - "hole_limit_max": [ - "0.22" - ], - "impact_strength_z": [ - "10" - ], - "long_retractions_when_ec": [ - "0" - ], - "nozzle_temperature_range_low": [ - "190" - ], - "nozzle_temperature_range_high": [ - "240" - ], - "nozzle_temperature": [ - "200" - ], - "nozzle_temperature_initial_layer": [ - "200" - ], - "overhang_fan_speed": [ - "100" - ], - "overhang_fan_threshold": [ - "95%" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "required_nozzle_HRC": [ - "3" - ], - "retraction_distances_when_ec": [ - "0" - ], - "supertack_plate_temp": [ - "45" - ], - "supertack_plate_temp_initial_layer": [ - "45" - ], - "slow_down_for_layer_cooling": [ - "1" - ], - "slow_down_layer_time": [ - "8" - ], - "slow_down_min_speed": [ - "10" - ], - "temperature_vitrification": [ - "100" - ], - "textured_plate_temp": [ - "60" - ], - "textured_plate_temp_initial_layer": [ - "60" - ], - "filament_velocity_adaptation_factor": [ - "1" - ], - "compatible_printers": [], - "filament_start_gcode": [ - "; Filament gcode\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ], - "filament_end_gcode": [ - "; filament end gcode \nM106 P3 S0\n" - ], - "filament_adaptive_volumetric_speed": [ - "0" - ], - "volumetric_speed_coefficients": [ - "0 0 0 0 0 0" - ] + "type": "filament", + "name": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "close_additional_fan_first_x_layers": [ + "3" + ], + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "60" + ], + "cool_plate_temp_initial_layer": [ + "60" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "eng_plate_temp": [ + "60" + ], + "eng_plate_temp_initial_layer": [ + "60" + ], + "fan_cooling_layer_time": [ + "60" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "35" + ], + "filament_adaptive_volumetric_speed": [ + "0" + ], + "filament_extruder_compatibility": [ + "0" + ], + "filament_cooling_before_tower": [ + "0" + ], + "filament_preheat_temperature_delta":[ + "0" + ], + "filament_tower_interface_pre_extrusion_dist": [ + "10" + ], + "filament_tower_interface_pre_extrusion_length": [ + "0" + ], + "filament_tower_ironing_area": [ + "4" + ], + "filament_tower_interface_purge_volume": [ + "20" + ], + "filament_tower_interface_print_temp": [ + "-1" + ], + "filament_cost": [ + "0" + ], + "filament_density": [ + "0" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_dev_ams_drying_ams_limitations": [ + "1" + ], + "filament_dev_ams_drying_heat_distortion_temperature": [ + "45.0" + ], + "filament_dev_ams_drying_temperature": [ + "40.0", + "40.0", + "40.0", + "40.0" + ], + "filament_dev_ams_drying_time": [ + "8.0", + "8.0", + "8.0", + "8.0" + ], + "filament_dev_chamber_drying_bed_temperature": [ + "90.0" + ], + "filament_dev_chamber_drying_time": [ + "12.0" + ], + "filament_dev_drying_cooling_temperature": [ + "35.0" + ], + "filament_dev_drying_softening_temperature": [ + "40.0" + ], + "filament_diameter": [ + "1.75" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "1" + ], + "filament_flush_temp": [ + "0" + ], + "filament_flush_temp_fast": [ + "0" + ], + "filament_flush_volumetric_speed": [ + "0" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil" + ], + "filament_long_retractions_when_ec": [ + "nil" + ], + "filament_max_volumetric_speed": [ + "0" + ], + "filament_metal_stickiness": [ + "None" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_pre_cooling_temperature": [ + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_prime_volume_nc": [ + "60" + ], + "filament_printable": [ + "3" + ], + "filament_ramming_travel_time_nc": [ + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-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_distances_when_ec": [ + "nil" + ], + "filament_retraction_length": [ + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil" + ], + "filament_retraction_speed": [ + "nil" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "Generic" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "additional_fan_full_speed_layer": [ + "0" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_ramming_travel_time": [ + "0" + ], + "filament_retract_length_nc": [ + "14" + ], + "filament_enable_overhang_speed": [ + "1" + ], + "filament_overhang_1_4_speed": [ + "0" + ], + "filament_overhang_2_4_speed": [ + "50" + ], + "filament_overhang_3_4_speed": [ + "30" + ], + "filament_overhang_4_4_speed": [ + "10" + ], + "filament_overhang_totally_speed": [ + "10" + ], + "filament_bridge_speed": [ + "25" + ], + "filament_change_length": [ + "10" + ], + "filament_velocity_adaptation_factor": [ + "1" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "filament_ingredients_safe": "1", + "filament_emission_safe": "1", + "filament_contact_safe": "1", + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "impact_strength_z": [ + "10" + ], + "long_retractions_when_ec": [ + "0" + ], + "no_slow_down_for_cooling_on_outwalls": [ + "0" + ], + "nozzle_temperature": [ + "200" + ], + "nozzle_temperature_initial_layer": [ + "200" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "95%" + ], + "override_process_overhang_speed": [ + "0" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "required_nozzle_HRC": [ + "3" + ], + "retraction_distances_when_ec": [ + "0" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "cooling_slowdown_logic": [ + "uniform_cooling" + ], + "cooling_perimeter_transition_distance": [ + "10" + ], + "slow_down_layer_time": [ + "8" + ], + "slow_down_min_speed": [ + "10" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "100" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0" + ], + "compatible_printers": [], + "filament_start_gcode": [ + "; Filament gcode\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \nM106 P3 S0\n" + ] } diff --git a/resources/profiles/BBL/filament/fdm_filament_dual_common.json b/resources/profiles/BBL/filament/fdm_filament_dual_common.json deleted file mode 100644 index c36dc19ffc..0000000000 --- a/resources/profiles/BBL/filament/fdm_filament_dual_common.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "type": "filament", - "name": "fdm_filament_dual_common", - "from": "system", - "instantiation": "false", - "filament_deretraction_speed": [ - "nil", - "nil" - ], - "filament_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "filament_max_volumetric_speed": [ - "", - "" - ], - "filament_retract_before_wipe": [ - "nil", - "nil" - ], - "filament_retract_when_changing_layer": [ - "nil", - "nil" - ], - "filament_retraction_length": [ - "nil", - "nil" - ], - "filament_retraction_minimum_travel": [ - "nil", - "nil" - ], - "filament_retraction_speed": [ - "nil", - "nil" - ], - "filament_wipe": [ - "nil", - "nil" - ], - "filament_wipe_distance": [ - "nil", - "nil" - ], - "filament_prime_volume": [ - "45" - ], - "filament_z_hop": [ - "nil", - "nil" - ], - "filament_z_hop_types": [ - "nil", - "nil" - ], - "filament_flow_ratio": [ - "", - "" - ], - "filament_change_length": [ - "10" - ], - "nozzle_temperature": [ - "", - "" - ], - "nozzle_temperature_initial_layer": [ - "", - "" - ], - "filament_velocity_adaptation_factor": [ - "1" - ] -} diff --git a/resources/profiles/BBL/filament/fdm_filament_eva.json b/resources/profiles/BBL/filament/fdm_filament_eva.json index a3f9ab0011..8edbe3f6ff 100644 --- a/resources/profiles/BBL/filament/fdm_filament_eva.json +++ b/resources/profiles/BBL/filament/fdm_filament_eva.json @@ -1,12 +1,12 @@ { - "type": "filament", - "name": "fdm_filament_eva", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "filament_type": [ - "EVA" - ], + "type": "filament", + "name": "fdm_filament_eva", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "filament_type": [ + "EVA" + ], "filament_dev_chamber_drying_bed_temperature": [ "70" ], @@ -35,13 +35,13 @@ "filament_dev_drying_softening_temperature": [ "50" ], - "supertack_plate_temp": [ - "0" - ], - "supertack_plate_temp_initial_layer": [ - "0" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_hips.json b/resources/profiles/BBL/filament/fdm_filament_hips.json index 7016a866f6..ff43b5f174 100644 --- a/resources/profiles/BBL/filament/fdm_filament_hips.json +++ b/resources/profiles/BBL/filament/fdm_filament_hips.json @@ -1,44 +1,44 @@ { - "type": "filament", - "name": "fdm_filament_hips", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "90" - ], - "eng_plate_temp_initial_layer": [ - "90" - ], - "fan_cooling_layer_time": [ - "10" - ], - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "0" - ], - "filament_cost": [ - "22.99" - ], - "filament_density": [ - "1.06" - ], - "filament_max_volumetric_speed": [ - "8" - ], - "filament_type": [ - "HIPS" - ], - "filament_adhesiveness_category": [ - "798" + "type": "filament", + "name": "fdm_filament_hips", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "90" + ], + "eng_plate_temp_initial_layer": [ + "90" + ], + "fan_cooling_layer_time": [ + "10" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "22.99" + ], + "filament_density": [ + "1.06" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_type": [ + "HIPS" + ], + "filament_adhesiveness_category": [ + "798" ], "filament_dev_ams_drying_time": [ "12", @@ -60,50 +60,50 @@ ], "filament_dev_drying_softening_temperature": [ "80" - ], - "hot_plate_temp": [ - "90" - ], - "hot_plate_temp_initial_layer": [ - "90" - ], - "nozzle_temperature": [ - "240" - ], - "nozzle_temperature_initial_layer": [ - "240" - ], - "nozzle_temperature_range_high": [ - "270" - ], - "nozzle_temperature_range_low": [ - "220" - ], - "overhang_fan_speed": [ - "80" - ], - "overhang_fan_threshold": [ - "25%" - ], - "slow_down_layer_time": [ - "6" - ], - "slow_down_min_speed": [ - "20" - ], - "supertack_plate_temp": [ - "0" - ], - "supertack_plate_temp_initial_layer": [ - "0" - ], - "textured_plate_temp": [ - "90" - ], - "textured_plate_temp_initial_layer": [ - "90" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ] -} + ], + "hot_plate_temp": [ + "90" + ], + "hot_plate_temp_initial_layer": [ + "90" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "overhang_fan_speed": [ + "80" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "textured_plate_temp": [ + "90" + ], + "textured_plate_temp_initial_layer": [ + "90" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_pa.json b/resources/profiles/BBL/filament/fdm_filament_pa.json index 61aeed66ce..361b84bf3b 100644 --- a/resources/profiles/BBL/filament/fdm_filament_pa.json +++ b/resources/profiles/BBL/filament/fdm_filament_pa.json @@ -1,48 +1,51 @@ { - "type": "filament", - "name": "fdm_filament_pa", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "activate_air_filtration": [ - "1" - ], - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "100" - ], - "eng_plate_temp_initial_layer": [ - "100" - ], - "fan_cooling_layer_time": [ - "4" - ], - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "0" - ], - "filament_cost": [ - "20" - ], - "filament_density": [ - "1.04" - ], - "filament_max_volumetric_speed": [ - "8" - ], - "filament_type": [ - "PA" - ], - "filament_adhesiveness_category": [ - "400" - ], + "type": "filament", + "name": "fdm_filament_pa", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "activate_air_filtration": [ + "1" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "4" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "0" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.04" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_metal_stickiness": [ + "High" + ], + "filament_type": [ + "PA" + ], + "filament_adhesiveness_category": [ + "400" + ], "filament_dev_ams_drying_time": [ "12", "12", @@ -67,52 +70,52 @@ "filament_dev_drying_softening_temperature": [ "150" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "nozzle_temperature": [ - "290" - ], - "nozzle_temperature_initial_layer": [ - "290" - ], - "nozzle_temperature_range_high": [ - "300" - ], - "nozzle_temperature_range_low": [ - "260" - ], - "overhang_fan_speed": [ - "30" - ], - "required_nozzle_HRC": [ - "40" - ], - "slow_down_layer_time": [ - "2" - ], - "slow_down_min_speed": [ - "20" - ], - "supertack_plate_temp": [ - "0" - ], - "supertack_plate_temp_initial_layer": [ - "0" - ], - "temperature_vitrification": [ - "108" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "nozzle_temperature_range_high": [ + "300" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "30" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "108" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_pc.json b/resources/profiles/BBL/filament/fdm_filament_pc.json index a73a56b440..7a61e458cc 100644 --- a/resources/profiles/BBL/filament/fdm_filament_pc.json +++ b/resources/profiles/BBL/filament/fdm_filament_pc.json @@ -1,45 +1,45 @@ { - "type": "filament", - "name": "fdm_filament_pc", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "110" - ], - "eng_plate_temp_initial_layer": [ - "110" - ], - "fan_cooling_layer_time": [ - "30" - ], - "fan_max_speed": [ - "60" - ], - "fan_min_speed": [ - "10" - ], - "filament_cost": [ - "20" - ], - "filament_density": [ - "1.04" - ], - "filament_max_volumetric_speed": [ - "18" - ], - "filament_type": [ - "PC" - ], - "filament_adhesiveness_category": [ - "500" - ], + "type": "filament", + "name": "fdm_filament_pc", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "60" + ], + "fan_min_speed": [ + "10" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.04" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "filament_type": [ + "PC" + ], + "filament_adhesiveness_category": [ + "500" + ], "filament_dev_ams_drying_time": [ "12", "8.0", @@ -61,55 +61,55 @@ "filament_dev_drying_softening_temperature": [ "90" ], - "hot_plate_temp": [ - "110" - ], - "hot_plate_temp_initial_layer": [ - "110" - ], - "nozzle_temperature": [ - "280" - ], - "nozzle_temperature_initial_layer": [ - "270" - ], - "nozzle_temperature_range_high": [ - "290" - ], - "nozzle_temperature_range_low": [ - "260" - ], - "overhang_fan_speed": [ - "60" - ], - "overhang_fan_threshold": [ - "25%" - ], - "reduce_fan_stop_start_freq": [ - "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": [ - "110" - ], - "textured_plate_temp_initial_layer": [ - "110" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "nozzle_temperature": [ + "280" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "60" + ], + "overhang_fan_threshold": [ + "25%" + ], + "reduce_fan_stop_start_freq": [ + "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": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_pctg.json b/resources/profiles/BBL/filament/fdm_filament_pctg.json index 01810a2ddc..0f6e163ba0 100644 --- a/resources/profiles/BBL/filament/fdm_filament_pctg.json +++ b/resources/profiles/BBL/filament/fdm_filament_pctg.json @@ -1,33 +1,36 @@ { - "type": "filament", - "name": "fdm_filament_pctg", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "eng_plate_temp": [ - "0" - ], - "eng_plate_temp_initial_layer": [ - "0" - ], - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_cost": [ - "30" - ], - "filament_density": [ - "1.27" - ], - "filament_max_volumetric_speed": [ - "25" - ], - "filament_type": [ - "PCTG" - ], + "type": "filament", + "name": "fdm_filament_pctg", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_cost": [ + "30" + ], + "filament_density": [ + "1.27" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_metal_stickiness": [ + "High" + ], + "filament_type": [ + "PCTG" + ], "filament_dev_chamber_drying_bed_temperature": [ "80" ], @@ -59,46 +62,46 @@ "filament_dev_drying_softening_temperature": [ "60" ], - "hot_plate_temp": [ - "80" - ], - "hot_plate_temp_initial_layer": [ - "80" - ], - "nozzle_temperature_range_low": [ - "220" - ], - "nozzle_temperature_range_high": [ - "260" - ], - "nozzle_temperature": [ - "255" - ], - "nozzle_temperature_initial_layer": [ - "255" - ], - "reduce_fan_stop_start_freq": [ - "1" - ], - "supertack_plate_temp": [ - "0" - ], - "supertack_plate_temp_initial_layer": [ - "0" - ], - "temperature_vitrification": [ - "70" - ], - "textured_plate_temp": [ - "80" - ], - "textured_plate_temp_initial_layer": [ - "80" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S255\n{endif};Prevent PLA from jamming\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature": [ + "255" + ], + "nozzle_temperature_initial_layer": [ + "255" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "70" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S255\n{endif};Prevent PLA from jamming\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_pe.json b/resources/profiles/BBL/filament/fdm_filament_pe.json index 9235c3301e..0de7d887a7 100644 --- a/resources/profiles/BBL/filament/fdm_filament_pe.json +++ b/resources/profiles/BBL/filament/fdm_filament_pe.json @@ -1,45 +1,48 @@ { - "type": "filament", - "name": "fdm_filament_pe", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "additional_cooling_fan_speed": [ - "70" - ], - "close_fan_the_first_x_layers": [ - "1" - ], - "cool_plate_temp": [ - "35" - ], - "cool_plate_temp_initial_layer": [ - "35" - ], - "eng_plate_temp": [ - "0" - ], - "eng_plate_temp_initial_layer": [ - "0" - ], - "fan_cooling_layer_time": [ - "100" - ], - "fan_min_speed": [ - "100" - ], - "filament_cost": [ - "20" - ], - "filament_density": [ - "1.24" - ], - "filament_max_volumetric_speed": [ - "12" - ], - "filament_type": [ - "PE" - ], + "type": "filament", + "name": "fdm_filament_pe", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "1" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_type": [ + "PE" + ], "filament_dev_chamber_drying_bed_temperature": [ "70" ], @@ -65,49 +68,49 @@ "filament_dev_drying_softening_temperature": [ "50" ], - "hot_plate_temp": [ - "55" - ], - "hot_plate_temp_initial_layer": [ - "55" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "overhang_fan_threshold": [ - "50%" - ], - "reduce_fan_stop_start_freq": [ - "1" - ], - "supertack_plate_temp": [ - "0" - ], - "supertack_plate_temp_initial_layer": [ - "0" - ], - "slow_down_layer_time": [ - "4" - ], - "slow_down_min_speed": [ - "20" - ], - "temperature_vitrification": [ - "45" - ], - "textured_plate_temp": [ - "55" - ], - "textured_plate_temp_initial_layer": [ - "55" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "overhang_fan_threshold": [ + "50%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_pet.json b/resources/profiles/BBL/filament/fdm_filament_pet.json index 23a8f73fe4..fe1d01694a 100644 --- a/resources/profiles/BBL/filament/fdm_filament_pet.json +++ b/resources/profiles/BBL/filament/fdm_filament_pet.json @@ -1,36 +1,39 @@ { - "type": "filament", - "name": "fdm_filament_pet", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "eng_plate_temp": [ - "0" - ], - "eng_plate_temp_initial_layer": [ - "0" - ], - "fan_cooling_layer_time": [ - "20" - ], - "fan_min_speed": [ - "20" - ], - "filament_cost": [ - "30" - ], - "filament_density": [ - "1.27" - ], - "filament_max_volumetric_speed": [ - "25" - ], - "filament_type": [ - "PETG" - ], - "filament_adhesiveness_category": [ - "300" - ], + "type": "filament", + "name": "fdm_filament_pet", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "20" + ], + "fan_min_speed": [ + "20" + ], + "filament_cost": [ + "30" + ], + "filament_density": [ + "1.27" + ], + "filament_max_volumetric_speed": [ + "25" + ], + "filament_metal_stickiness": [ + "High" + ], + "filament_type": [ + "PETG" + ], + "filament_adhesiveness_category": [ + "300" + ], "filament_dev_chamber_drying_bed_temperature": [ "80" ], @@ -59,46 +62,46 @@ "filament_dev_drying_softening_temperature": [ "60" ], - "hot_plate_temp": [ - "80" - ], - "hot_plate_temp_initial_layer": [ - "80" - ], - "nozzle_temperature_range_low": [ - "220" - ], - "nozzle_temperature_range_high": [ - "260" - ], - "nozzle_temperature": [ - "255" - ], - "nozzle_temperature_initial_layer": [ - "255" - ], - "reduce_fan_stop_start_freq": [ - "1" - ], - "supertack_plate_temp": [ - "70" - ], - "supertack_plate_temp_initial_layer": [ - "70" - ], - "temperature_vitrification": [ - "70" - ], - "textured_plate_temp": [ - "80" - ], - "textured_plate_temp_initial_layer": [ - "80" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S255\n{endif};Prevent PLA from jamming\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature": [ + "255" + ], + "nozzle_temperature_initial_layer": [ + "255" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "supertack_plate_temp": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "temperature_vitrification": [ + "70" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S255\n{endif};Prevent PLA from jamming\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_pha.json b/resources/profiles/BBL/filament/fdm_filament_pha.json index 2bd348e2de..8edb5389be 100644 --- a/resources/profiles/BBL/filament/fdm_filament_pha.json +++ b/resources/profiles/BBL/filament/fdm_filament_pha.json @@ -1,45 +1,48 @@ { - "type": "filament", - "name": "fdm_filament_pha", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "additional_cooling_fan_speed": [ - "70" - ], - "close_fan_the_first_x_layers": [ - "1" - ], - "cool_plate_temp": [ - "35" - ], - "cool_plate_temp_initial_layer": [ - "35" - ], - "eng_plate_temp": [ - "0" - ], - "eng_plate_temp_initial_layer": [ - "0" - ], - "fan_cooling_layer_time": [ - "100" - ], - "fan_min_speed": [ - "100" - ], - "filament_cost": [ - "27.99" - ], - "filament_density": [ - "1.24" - ], - "filament_max_volumetric_speed": [ - "6" - ], - "filament_type": [ - "PHA" - ], + "type": "filament", + "name": "fdm_filament_pha", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "1" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "27.99" + ], + "filament_density": [ + "1.24" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "filament_type": [ + "PHA" + ], "filament_dev_chamber_drying_bed_temperature": [ "70" ], @@ -65,49 +68,49 @@ "filament_dev_drying_softening_temperature": [ "50" ], - "hot_plate_temp": [ - "55" - ], - "hot_plate_temp_initial_layer": [ - "55" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "overhang_fan_threshold": [ - "50%" - ], - "reduce_fan_stop_start_freq": [ - "1" - ], - "supertack_plate_temp": [ - "0" - ], - "supertack_plate_temp_initial_layer": [ - "0" - ], - "slow_down_layer_time": [ - "4" - ], - "slow_down_min_speed": [ - "20" - ], - "temperature_vitrification": [ - "120" - ], - "textured_plate_temp": [ - "55" - ], - "textured_plate_temp_initial_layer": [ - "55" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "overhang_fan_threshold": [ + "50%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "120" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_pla.json b/resources/profiles/BBL/filament/fdm_filament_pla.json index f1e1c9a244..eb0ee310d1 100644 --- a/resources/profiles/BBL/filament/fdm_filament_pla.json +++ b/resources/profiles/BBL/filament/fdm_filament_pla.json @@ -1,47 +1,50 @@ { - "type": "filament", - "name": "fdm_filament_pla", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "additional_cooling_fan_speed": [ - "70" - ], - "close_fan_the_first_x_layers": [ - "1" - ], - "cool_plate_temp": [ - "35" - ], - "cool_plate_temp_initial_layer": [ - "35" - ], - "eng_plate_temp": [ - "0" - ], - "eng_plate_temp_initial_layer": [ - "0" - ], - "fan_cooling_layer_time": [ - "100" - ], - "fan_min_speed": [ - "100" - ], - "filament_cost": [ - "20" - ], - "filament_density": [ - "1.24" - ], - "filament_max_volumetric_speed": [ - "12" - ], - "filament_scarf_gap": [ - "15%" - ], - "filament_adhesiveness_category": [ - "100" + "type": "filament", + "name": "fdm_filament_pla", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "1" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_adhesiveness_category": [ + "100" ], "filament_dev_chamber_drying_bed_temperature": [ "70" @@ -70,47 +73,47 @@ ], "filament_dev_drying_softening_temperature": [ "50" - ], - "hot_plate_temp": [ - "55" - ], - "hot_plate_temp_initial_layer": [ - "55" - ], - "impact_strength_z": [ - "10.0" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "overhang_fan_threshold": [ - "50%" - ], - "reduce_fan_stop_start_freq": [ - "1" - ], - "slow_down_layer_time": [ - "4" - ], - "slow_down_min_speed": [ - "20" - ], - "temperature_vitrification": [ - "45" - ], - "textured_plate_temp": [ - "55" - ], - "textured_plate_temp_initial_layer": [ - "55" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ] -} + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "impact_strength_z": [ + "10.0" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "overhang_fan_threshold": [ + "50%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_pp.json b/resources/profiles/BBL/filament/fdm_filament_pp.json index 2d8c3772ba..ce6b887c8a 100644 --- a/resources/profiles/BBL/filament/fdm_filament_pp.json +++ b/resources/profiles/BBL/filament/fdm_filament_pp.json @@ -1,48 +1,51 @@ { - "type": "filament", - "name": "fdm_filament_pp", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "additional_cooling_fan_speed": [ - "70" - ], - "close_fan_the_first_x_layers": [ - "1" - ], - "cool_plate_temp": [ - "35" - ], - "cool_plate_temp_initial_layer": [ - "35" - ], - "eng_plate_temp": [ - "0" - ], - "eng_plate_temp_initial_layer": [ - "0" - ], - "fan_cooling_layer_time": [ - "100" - ], - "fan_min_speed": [ - "100" - ], - "filament_cost": [ - "34.99" - ], - "filament_density": [ - "0.93" - ], - "filament_max_volumetric_speed": [ - "12" - ], - "filament_type": [ - "PP" - ], - "filament_adhesiveness_category": [ - "902" - ], + "type": "filament", + "name": "fdm_filament_pp", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "1" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "34.99" + ], + "filament_density": [ + "0.93" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "filament_type": [ + "PP" + ], + "filament_adhesiveness_category": [ + "902" + ], "filament_dev_chamber_drying_bed_temperature": [ "70" ], @@ -71,55 +74,55 @@ "filament_dev_drying_softening_temperature": [ "55" ], - "hot_plate_temp": [ - "55" - ], - "hot_plate_temp_initial_layer": [ - "55" - ], - "nozzle_temperature_range_low": [ - "220" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "nozzle_temperature": [ - "235" - ], - "nozzle_temperature_initial_layer": [ - "235" - ], - "overhang_fan_threshold": [ - "50%" - ], - "reduce_fan_stop_start_freq": [ - "1" - ], - "supertack_plate_temp": [ - "0" - ], - "supertack_plate_temp_initial_layer": [ - "0" - ], - "slow_down_layer_time": [ - "4" - ], - "slow_down_min_speed": [ - "20" - ], - "temperature_vitrification": [ - "110" - ], - "textured_plate_temp": [ - "55" - ], - "textured_plate_temp_initial_layer": [ - "55" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "nozzle_temperature_range_low": [ + "220" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature": [ + "235" + ], + "nozzle_temperature_initial_layer": [ + "235" + ], + "overhang_fan_threshold": [ + "50%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "20" + ], + "temperature_vitrification": [ + "110" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_ppa.json b/resources/profiles/BBL/filament/fdm_filament_ppa.json index 3bba318bc5..f14397aa6e 100644 --- a/resources/profiles/BBL/filament/fdm_filament_ppa.json +++ b/resources/profiles/BBL/filament/fdm_filament_ppa.json @@ -1,51 +1,54 @@ { - "type": "filament", - "name": "fdm_filament_ppa", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "activate_air_filtration": [ - "1" - ], - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "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_cost": [ - "20" - ], - "filament_density": [ - "1.17" - ], - "filament_flow_ratio": [ - "0.96" - ], - "filament_max_volumetric_speed": [ - "8" - ], - "filament_type": [ - "PPA-CF" - ], - "filament_vendor": [ - "Bambu Lab" - ], + "type": "filament", + "name": "fdm_filament_ppa", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "activate_air_filtration": [ + "1" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "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_cost": [ + "20" + ], + "filament_density": [ + "1.17" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "filament_metal_stickiness": [ + "High" + ], + "filament_type": [ + "PPA-CF" + ], + "filament_vendor": [ + "Bambu Lab" + ], "filament_dev_chamber_drying_bed_temperature": [ "100" ], @@ -55,7 +58,9 @@ "12", "12" ], - "filament_dev_ams_drying_ams_limitations": [], + "filament_dev_ams_drying_ams_limitations": [ + "-1" + ], "filament_dev_chamber_drying_time": [ "18" ], @@ -74,55 +79,55 @@ "filament_dev_drying_softening_temperature": [ "150" ], - "hot_plate_temp": [ - "100" - ], - "hot_plate_temp_initial_layer": [ - "100" - ], - "nozzle_temperature": [ - "290" - ], - "nozzle_temperature_initial_layer": [ - "290" - ], - "nozzle_temperature_range_high": [ - "320" - ], - "nozzle_temperature_range_low": [ - "280" - ], - "overhang_fan_speed": [ - "40" - ], - "overhang_fan_threshold": [ - "0%" - ], - "required_nozzle_HRC": [ - "40" - ], - "slow_down_layer_time": [ - "2" - ], - "slow_down_min_speed": [ - "20" - ], - "supertack_plate_temp": [ - "0" - ], - "supertack_plate_temp_initial_layer": [ - "0" - ], - "temperature_vitrification": [ - "210" - ], - "textured_plate_temp": [ - "100" - ], - "textured_plate_temp_initial_layer": [ - "100" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "nozzle_temperature_range_high": [ + "320" + ], + "nozzle_temperature_range_low": [ + "280" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "210" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_pps.json b/resources/profiles/BBL/filament/fdm_filament_pps.json index d1c6a6aed2..6df9a8f8d7 100644 --- a/resources/profiles/BBL/filament/fdm_filament_pps.json +++ b/resources/profiles/BBL/filament/fdm_filament_pps.json @@ -1,48 +1,48 @@ { - "type": "filament", - "name": "fdm_filament_pps", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "chamber_temperatures": [ - "60" - ], - "cool_plate_temp": [ - "0" - ], - "cool_plate_temp_initial_layer": [ - "0" - ], - "eng_plate_temp": [ - "110" - ], - "eng_plate_temp_initial_layer": [ - "110" - ], - "fan_cooling_layer_time": [ - "5" - ], - "fan_max_speed": [ - "50" - ], - "fan_min_speed": [ - "0" - ], - "filament_density": [ - "1.36" - ], - "filament_flow_ratio": [ - "0.96" - ], - "filament_max_volumetric_speed": [ - "4" - ], - "filament_type": [ - "PPS" - ], - "filament_adhesiveness_category": [ - "801" - ], + "type": "filament", + "name": "fdm_filament_pps", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "chamber_temperatures": [ + "60" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "eng_plate_temp": [ + "110" + ], + "eng_plate_temp_initial_layer": [ + "110" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "50" + ], + "fan_min_speed": [ + "0" + ], + "filament_density": [ + "1.36" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "4" + ], + "filament_type": [ + "PPS" + ], + "filament_adhesiveness_category": [ + "801" + ], "filament_dev_chamber_drying_bed_temperature": [ "100" ], @@ -52,7 +52,9 @@ "12", "12" ], - "filament_dev_ams_drying_ams_limitations": [], + "filament_dev_ams_drying_ams_limitations": [ + "-1" + ], "filament_dev_ams_drying_heat_distortion_temperature": [ "165" ], @@ -68,49 +70,49 @@ "filament_dev_drying_softening_temperature": [ "150" ], - "hot_plate_temp": [ - "110" - ], - "hot_plate_temp_initial_layer": [ - "110" - ], - "nozzle_temperature": [ - "320" - ], - "nozzle_temperature_initial_layer": [ - "320" - ], - "nozzle_temperature_range_high": [ - "340" - ], - "nozzle_temperature_range_low": [ - "300" - ], - "overhang_fan_speed": [ - "30" - ], - "overhang_fan_threshold": [ - "0%" - ], - "slow_down_layer_time": [ - "2" - ], - "supertack_plate_temp": [ - "0" - ], - "supertack_plate_temp_initial_layer": [ - "0" - ], - "temperature_vitrification": [ - "125" - ], - "textured_plate_temp": [ - "110" - ], - "textured_plate_temp_initial_layer": [ - "110" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "hot_plate_temp": [ + "110" + ], + "hot_plate_temp_initial_layer": [ + "110" + ], + "nozzle_temperature": [ + "320" + ], + "nozzle_temperature_initial_layer": [ + "320" + ], + "nozzle_temperature_range_high": [ + "340" + ], + "nozzle_temperature_range_low": [ + "300" + ], + "overhang_fan_speed": [ + "30" + ], + "overhang_fan_threshold": [ + "0%" + ], + "slow_down_layer_time": [ + "2" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "125" + ], + "textured_plate_temp": [ + "110" + ], + "textured_plate_temp_initial_layer": [ + "110" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_pva.json b/resources/profiles/BBL/filament/fdm_filament_pva.json index 55d83517ce..55801ab222 100644 --- a/resources/profiles/BBL/filament/fdm_filament_pva.json +++ b/resources/profiles/BBL/filament/fdm_filament_pva.json @@ -1,54 +1,57 @@ { - "type": "filament", - "name": "fdm_filament_pva", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "additional_cooling_fan_speed": [ - "70" - ], - "close_fan_the_first_x_layers": [ - "1" - ], - "cool_plate_temp": [ - "45" - ], - "cool_plate_temp_initial_layer": [ - "45" - ], - "eng_plate_temp": [ - "0" - ], - "eng_plate_temp_initial_layer": [ - "0" - ], - "fan_cooling_layer_time": [ - "100" - ], - "fan_min_speed": [ - "100" - ], - "filament_cost": [ - "20" - ], - "filament_density": [ - "1.24" - ], - "filament_is_support": [ - "1" - ], - "filament_max_volumetric_speed": [ - "15" - ], - "filament_soluble": [ - "1" - ], - "filament_type": [ - "PVA" - ], - "filament_adhesiveness_category": [ - "704" - ], + "type": "filament", + "name": "fdm_filament_pva", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "1" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_is_support": [ + "1" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_soluble": [ + "1" + ], + "filament_type": [ + "PVA" + ], + "filament_adhesiveness_category": [ + "704" + ], "filament_dev_ams_drying_time": [ "12", "18", @@ -70,49 +73,49 @@ "filament_dev_drying_softening_temperature": [ "75" ], - "hot_plate_temp": [ - "55" - ], - "hot_plate_temp_initial_layer": [ - "55" - ], - "nozzle_temperature": [ - "220" - ], - "nozzle_temperature_initial_layer": [ - "220" - ], - "overhang_fan_threshold": [ - "50%" - ], - "reduce_fan_stop_start_freq": [ - "1" - ], - "supertack_plate_temp": [ - "35" - ], - "supertack_plate_temp_initial_layer": [ - "35" - ], - "slow_down_layer_time": [ - "4" - ], - "slow_down_min_speed": [ - "50" - ], - "temperature_vitrification": [ - "45" - ], - "textured_plate_temp": [ - "55" - ], - "textured_plate_temp_initial_layer": [ - "55" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "overhang_fan_threshold": [ + "50%" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "supertack_plate_temp": [ + "35" + ], + "supertack_plate_temp_initial_layer": [ + "35" + ], + "slow_down_layer_time": [ + "4" + ], + "slow_down_min_speed": [ + "50" + ], + "temperature_vitrification": [ + "45" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_sbs.json b/resources/profiles/BBL/filament/fdm_filament_sbs.json deleted file mode 100644 index 4aef177e14..0000000000 --- a/resources/profiles/BBL/filament/fdm_filament_sbs.json +++ /dev/null @@ -1,85 +0,0 @@ -{ - "type": "filament", - "name": "fdm_filament_sbs", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "fan_cooling_layer_time": [ - "100" - ], - "filament_max_volumetric_speed": [ - "23" - ], - "filament_type": [ - "SBS" - ], - "filament_density": [ - "1.02" - ], - "filament_cost": [ - "15" - ], - "cool_plate_temp": [ - "70" - ], - "eng_plate_temp": [ - "70" - ], - "hot_plate_temp": [ - "70" - ], - "textured_plate_temp": [ - "70" - ], - "cool_plate_temp_initial_layer": [ - "70" - ], - "eng_plate_temp_initial_layer": [ - "70" - ], - "hot_plate_temp_initial_layer": [ - "70" - ], - "textured_plate_temp_initial_layer": [ - "70" - ], - "nozzle_temperature_initial_layer": [ - "235" - ], - "reduce_fan_stop_start_freq": [ - "0" - ], - "fan_min_speed": [ - "0" - ], - "overhang_fan_threshold": [ - "50%" - ], - "close_fan_the_first_x_layers": [ - "3" - ], - "nozzle_temperature": [ - "235" - ], - "temperature_vitrification": [ - "70" - ], - "nozzle_temperature_range_low": [ - "215" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "slow_down_min_speed": [ - "20" - ], - "slow_down_layer_time": [ - "4" - ], - "additional_cooling_fan_speed": [ - "40" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ] -} diff --git a/resources/profiles/BBL/filament/fdm_filament_template_direct_bowden.json b/resources/profiles/BBL/filament/fdm_filament_template_direct_bowden.json new file mode 100644 index 0000000000..152b0ade59 --- /dev/null +++ b/resources/profiles/BBL/filament/fdm_filament_template_direct_bowden.json @@ -0,0 +1,228 @@ +{ + "type": "filament", + "name": "fdm_filament_template_direct_bowden", + "from": "system", + "instantiation": "false", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "0", + "0", + "0", + "0" + ], + "filament_preheat_temperature_delta":[ + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "10", + "10", + "10", + "10" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_template_direct_bowden_e3d.json b/resources/profiles/BBL/filament/fdm_filament_template_direct_bowden_e3d.json new file mode 100644 index 0000000000..dbc34809ab --- /dev/null +++ b/resources/profiles/BBL/filament/fdm_filament_template_direct_bowden_e3d.json @@ -0,0 +1,302 @@ +{ + "type": "filament", + "name": "fdm_filament_template_direct_bowden_e3d", + "from": "system", + "instantiation": "false", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_preheat_temperature_delta": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil", + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive E3D High Flow", + "Bowden Standard", + "Bowden High Flow", + "Bowden E3D High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil", + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50", + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30", + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25", + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14", + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1", + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1", + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil", + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil", + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil", + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil", + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil", + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "slow_down_min_speed": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_template_direct_dual.json b/resources/profiles/BBL/filament/fdm_filament_template_direct_dual.json new file mode 100644 index 0000000000..45a531cdbb --- /dev/null +++ b/resources/profiles/BBL/filament/fdm_filament_template_direct_dual.json @@ -0,0 +1,162 @@ +{ + "type": "filament", + "name": "fdm_filament_template_direct_dual", + "from": "system", + "instantiation": "false", + "filament_adaptive_volumetric_speed": [ + "0", + "0" + ], + "filament_cooling_before_tower": [ + "0", + "0" + ], + "filament_preheat_temperature_delta":[ + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "filament_flush_temp": [ + "0", + "0" + ], + "filament_flush_temp_fast": [ + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "override_process_overhang_speed": [ + "0", + "0" + ], + "long_retractions_when_ec": [ + "1", + "1" + ], + "retraction_distances_when_ec": [ + "10", + "10" + ], + "slow_down_min_speed": [ + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/fdm_filament_template_direct_dual_e3d.json b/resources/profiles/BBL/filament/fdm_filament_template_direct_dual_e3d.json new file mode 100644 index 0000000000..814597c4e5 --- /dev/null +++ b/resources/profiles/BBL/filament/fdm_filament_template_direct_dual_e3d.json @@ -0,0 +1,201 @@ +{ + "type": "filament", + "name": "fdm_filament_template_direct_dual_e3d", + "from": "system", + "instantiation": "false", + "filament_adaptive_volumetric_speed": [ + "0", + "0", + "0" + ], + "filament_cooling_before_tower": [ + "0", + "0", + "0" + ], + "filament_preheat_temperature_delta":[ + "10", + "10", + "10" + ], + "filament_deretraction_speed": [ + "nil", + "nil", + "nil" + ], + "filament_enable_overhang_speed": [ + "1", + "1", + "1" + ], + "filament_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive E3D High Flow" + ], + "filament_flush_temp": [ + "0", + "0", + "0" + ], + "filament_flush_temp_fast": [ + "0", + "0", + "0" + ], + "filament_flush_volumetric_speed": [ + "0", + "0", + "0" + ], + "filament_flow_ratio": [ + "0.95", + "0.95", + "0.95" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil", + "nil" + ], + "filament_overhang_1_4_speed": [ + "0", + "0", + "0" + ], + "filament_overhang_2_4_speed": [ + "50", + "50", + "50" + ], + "filament_overhang_3_4_speed": [ + "30", + "30", + "30" + ], + "filament_overhang_4_4_speed": [ + "10", + "10", + "10" + ], + "filament_overhang_totally_speed": [ + "10", + "10", + "10" + ], + "filament_bridge_speed": [ + "25", + "25", + "25" + ], + "filament_pre_cooling_temperature": [ + "0", + "0", + "0" + ], + "filament_pre_cooling_temperature_nc": [ + "0", + "0", + "0" + ], + "filament_ramming_travel_time_nc": [ + "0", + "0", + "0" + ], + "filament_retract_length_nc": [ + "14", + "14", + "14" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1", + "-1" + ], + "filament_ramming_volumetric_speed_nc": [ + "-1", + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil", + "nil" + ], + "filament_wipe": [ + "nil", + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil", + "nil" + ], + "long_retractions_when_ec": [ + "1", + "1", + "1" + ], + "override_process_overhang_speed": [ + "0", + "0", + "0" + ], + "retraction_distances_when_ec": [ + "10", + "10", + "10" + ], + "slow_down_min_speed": [ + "10", + "10", + "10" + ], + "volumetric_speed_coefficients": [ + "0 0 0 0 0 0", + "0 0 0 0 0 0", + "0 0 0 0 0 0" + ] +} diff --git a/resources/profiles/BBL/filament/fdm_filament_tpu.json b/resources/profiles/BBL/filament/fdm_filament_tpu.json index d2ef5db84e..6c37a7873d 100644 --- a/resources/profiles/BBL/filament/fdm_filament_tpu.json +++ b/resources/profiles/BBL/filament/fdm_filament_tpu.json @@ -1,51 +1,57 @@ { - "type": "filament", - "name": "fdm_filament_tpu", - "inherits": "fdm_filament_common", - "from": "system", - "instantiation": "false", - "additional_cooling_fan_speed": [ - "70" - ], - "close_fan_the_first_x_layers": [ - "1" - ], - "cool_plate_temp": [ - "30" - ], - "cool_plate_temp_initial_layer": [ - "30" - ], - "eng_plate_temp": [ - "30" - ], - "eng_plate_temp_initial_layer": [ - "30" - ], - "fan_cooling_layer_time": [ - "100" - ], - "fan_min_speed": [ - "100" - ], - "filament_cost": [ - "20" - ], - "filament_density": [ - "1.24" - ], - "filament_max_volumetric_speed": [ - "15" - ], - "filament_retraction_length": [ - "0.4" - ], - "filament_type": [ - "TPU" - ], - "filament_adhesiveness_category": [ - "600" - ], + "type": "filament", + "name": "fdm_filament_tpu", + "inherits": "fdm_filament_common", + "from": "system", + "instantiation": "false", + "additional_cooling_fan_speed": [ + "70" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "close_additional_fan_first_x_layers": [ + "1" + ], + "cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "eng_plate_temp": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "30" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_metal_stickiness": [ + "High" + ], + "filament_retraction_length": [ + "0.4" + ], + "filament_type": [ + "TPU" + ], + "filament_adhesiveness_category": [ + "600" + ], "filament_dev_ams_drying_time": [ "12", "18", @@ -70,46 +76,46 @@ "filament_dev_drying_softening_temperature": [ "50" ], - "hot_plate_temp": [ - "35" - ], - "hot_plate_temp_initial_layer": [ - "35" - ], - "nozzle_temperature": [ - "240" - ], - "nozzle_temperature_initial_layer": [ - "240" - ], - "nozzle_temperature_range_high": [ - "250" - ], - "nozzle_temperature_range_low": [ - "200" - ], - "reduce_fan_stop_start_freq": [ - "1" - ], - "supertack_plate_temp": [ - "0" - ], - "supertack_plate_temp_initial_layer": [ - "0" - ], - "temperature_vitrification": [ - "30" - ], - "textured_plate_temp": [ - "35" - ], - "textured_plate_temp_initial_layer": [ - "35" - ], - "filament_start_gcode": [ - "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" - ], - "filament_end_gcode": [ - "; filament end gcode \n\n" - ] -} + "hot_plate_temp": [ + "35" + ], + "hot_plate_temp_initial_layer": [ + "35" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "30" + ], + "textured_plate_temp": [ + "35" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/filament_id_map.json b/resources/profiles/BBL/filament/filament_id_map.json new file mode 100644 index 0000000000..3e7f151a18 --- /dev/null +++ b/resources/profiles/BBL/filament/filament_id_map.json @@ -0,0 +1,242 @@ +{ + "type": "filament", + "GM004": { + "GFSN05_02": "GFSN05_13", + "GFSN04": "GFSN04_12", + "GFSN06_00": "GFSN06_10" + }, + "GM007": { + "GFSG96_00": "GFSG96_27" + }, + "GM003": { + "GFSG96_00": "GFSG96_27" + }, + "GM005": { + "GFSB00": "GFSB00_40", + "GFSN05_02": "GFSN05_13", + "GFSN04": "GFSN04_12", + "GFSG02_02": "GFSG02_37", + "GFSG01_01": "GFSG01_30", + "GFSA00": "GFSA00_33", + "GFSA13_00": "GFSA13_28", + "GFSA15_00": "GFSA15_28", + "GFSA12_00": "GFSA12_30", + "GFSA18_00": "GFSA18_31", + "GFSA07_00": "GFSA07_15", + "GFSA01": "GFSA01_33", + "GFSA02": "GFSA02_28", + "GFSA06_00": "GFSA06_27", + "GFSA08_00": "GFSA08_16", + "GFSA10_32": "GFSA10_37", + "GFSA16_00": "GFSA16_20", + "GFSN06_00": "GFSN06_10", + "GFSU02_00": "GFSU02_13" + }, + "GM006": { + "GFSG96_00": "GFSG96_27" + }, + "GM014": { + "GFSB00": "GFSB00_38", + "GFSG02_00": "GFSG02_36", + "GFSA00": "GFSA00_34", + "GFSA01": "GFSA01_34", + "GFSA06_00": "GFSA06_29", + "GFSG96_00": "GFSG96_26" + }, + "GM016": { + "GFSB00": "GFSB00_39", + "GFSA00": "GFSA00_35", + "GFSA01": "GFSA01_35", + "GFSA06_00": "GFSA06_28", + "GFSG96_00": "GFSG96_25" + }, + "GM012": { + "GFSN04_10": "GFSN04_15", + "GFSA07_10": "GFSA07_18" + }, + "GM011": { + "GFSA13_03": "GFSA13_31", + "GFSA15_03": "GFSA15_31", + "GFSA12_02": "GFSA12_33", + "GFSA18_03": "GFSA18_34", + "GFSA06_03": "GFSA06_30", + "GFSA16_03": "GFSA16_23", + "GFSU02_01": "GFSU02_16", + "GFSB00_03": "GFSB00_41", + "GFSN04_10": "GFSN04_15", + "GFSC00_04": "GFSC00_42", + "GFSA04_10": "GFSA04_11", + "GFSA07_10": "GFSA07_18", + "GFSA05_10": "GFSA05_28", + "GFSA02_10": "GFSA02_29", + "GFSA08_10": "GFSA08_19", + "GFSA10_34": "GFSA10_38" + }, + "GM013": { + "GFSG02_00": "GFSG02_35" + }, + "GM033": { + "GFSU00_08": "GFSU00_20", + "GFSU00_11": "GFSU00_21" + }, + "GM035": { + "GFSU03_02": "GFSU03_24", + "GFSN05_04": "GFSN05_19", + "GFSN04_01": "GFSN04_21", + "GFSA18_09": "GFSA18_45", + "GFSA19_12": "GFSA19_44", + "GFSA06_09": "GFSA06_41", + "GFSA17_13": "GFSA17_45", + "GFSS04_10": "GFSS04_29", + "GFSS02_07": "GFSS02_35", + "GFSS05_08": "GFSS05_32", + "GFSS06_02": "GFSS06_15", + "GFSU02_04": "GFSU02_26" + }, + "GM036": { + "GFSU03_02": "GFSU03_26", + "GFSN05_04": "GFSN05_20", + "GFSN04_01": "GFSN04_22", + "GFSG00_16": "GFSG00_45", + "GFSG01_11": "GFSG01_41", + "GFSG50_07": "GFSG50_31", + "GFSA06_09": "GFSA06_42", + "GFSA50_06": "GFSA50_27", + "GFSS04_10": "GFSS04_30", + "GFSS02_07": "GFSS02_36", + "GFSS05_08": "GFSS05_33", + "GFSS06_02": "GFSS06_16", + "GFSU00_08": "GFSU00_27", + "GFSU02_04": "GFSU02_27" + }, + "GM053": { + "GFSU03_03": "GFSU03_25", + "GFSN05_06": "GFSN05_21", + "GFSN04_03": "GFSN04_23", + "GFSA19_15": "GFSA19_45", + "GFSA06_13": "GFSA06_43", + "GFSA17_32": "GFSA17_46", + "GFSS04_14": "GFSS04_31", + "GFSS02_18": "GFSS02_37", + "GFSS05_12": "GFSS05_39", + "GFSS06_04": "GFSS06_17", + "GFSU02_06": "GFSU02_28" + }, + "GM054": { + "GFSU03_03": "GFSU03_27", + "GFSN05_06": "GFSN05_22", + "GFSN04_03": "GFSN04_24", + "GFSG00_21": "GFSG00_46", + "GFSG01_17": "GFSG01_42", + "GFSG50_14": "GFSG50_32", + "GFSA06_13": "GFSA06_44", + "GFSA50_13": "GFSA50_28", + "GFSS04_14": "GFSS04_32", + "GFSS02_18": "GFSS02_38", + "GFSS05_12": "GFSS05_40", + "GFSS06_04": "GFSS06_18", + "GFSU00_11": "GFSU00_28", + "GFSU02_06": "GFSU02_29" + }, + "GM048": { + "GFSB01_20": "GFSB01_50", + "GFSN05_07": "GFSN05_27", + "GFSN04_05": "GFSN04_29", + "GFSG00_22": "GFSG00_49", + "GFSG02_22": "GFSG02_51", + "GFSA18_13": "GFSA18_48", + "GFSA01_11": "GFSA01_49", + "GFSA06_16": "GFSA06_47", + "GFSA10_18": "GFSA10_52", + "GFSA50_15": "GFSA50_31", + "GFSS04_09": "GFSS04_35", + "GFSS02_19": "GFSS02_43", + "GFSS05_15": "GFSS05_38", + "GFSS06_06": "GFSS06_23", + "GFSU00_12": "GFSU00_33", + "GFSU02_08": "GFSU02_32", + "GFSA00_09": "GFSA00_55" + }, + "GM044": { + "GFSN05_09": "GFSN05_18", + "GFSN04_07": "GFSN04_20", + "GFSG00_25": "GFSG00_44", + "GFSG01_23": "GFSG01_40", + "GFSG50_18": "GFSG50_30", + "GFSA18_16": "GFSA18_44", + "GFSA19_10": "GFSA19_43", + "GFSA06_19": "GFSA06_40", + "GFSA17_29": "GFSA17_44", + "GFSA50_17": "GFSA50_26", + "GFSS04_18": "GFSS04_28", + "GFSS02_22": "GFSS02_34", + "GFSS05_18": "GFSS05_31", + "GFSS06_08": "GFSS06_14", + "GFSU00_14": "GFSU00_26", + "GFSU02_10": "GFSU02_25" + }, + "GM039": { + "GFSN05_10": "GFSN05_23", + "GFSN04_08": "GFSN04_25", + "GFSG01_08": "GFSG01_44", + "GFSG50_09": "GFSG50_34", + "GFSA18_18": "GFSA18_46", + "GFSA19_18": "GFSA19_46", + "GFSA06_21": "GFSA06_45", + "GFSA17_15": "GFSA17_47", + "GFSA50_07": "GFSA50_29", + "GFSS04_20": "GFSS04_36", + "GFSS02_08": "GFSS02_39", + "GFSS05_20": "GFSS05_34", + "GFSS06_09": "GFSS06_19", + "GFSU00_09": "GFSU00_29", + "GFSU02_11": "GFSU02_24" + }, + "GM040": { + "GFSN05_10": "GFSN05_24", + "GFSN04_08": "GFSN04_26", + "GFSG00_32": "GFSG00_47", + "GFSG01_08": "GFSG01_45", + "GFSG50_09": "GFSG50_35", + "GFSA18_18": "GFSA18_47", + "GFSA19_18": "GFSA19_47", + "GFSA06_21": "GFSA06_46", + "GFSA17_15": "GFSA17_48", + "GFSA50_07": "GFSA50_30", + "GFSS04_20": "GFSS04_37", + "GFSS02_08": "GFSS02_40", + "GFSS05_20": "GFSS05_35", + "GFSS06_09": "GFSS06_20", + "GFSU00_09": "GFSU00_30", + "GFSU02_11": "GFSU02_23" + }, + "GM009": { + "GFSN05_05": "GFSN05_25", + "GFSN04_02": "GFSN04_27", + "GFSS04_12": "GFSS04_33", + "GFSS02_16": "GFSS02_41", + "GFSS05_10": "GFSS05_36", + "GFSS06_03": "GFSS06_21", + "GFSU00_10": "GFSU00_31", + "GFSU02_05": "GFSU02_30" + }, + "GM018": { + "GFSN05_05": "GFSN05_26", + "GFSN04_02": "GFSN04_28", + "GFSG00_18": "GFSG00_48", + "GFSG02_18": "GFSG02_50", + "GFSG01_14": "GFSG01_43", + "GFSG50_12": "GFSG50_33", + "GFSA50_09": "GFSA50_32", + "GFSS04_12": "GFSS04_34", + "GFSS02_16": "GFSS02_42", + "GFSS05_10": "GFSS05_37", + "GFSS06_03": "GFSS06_22", + "GFSU00_10": "GFSU00_32", + "GFSU02_05": "GFSU02_31" + }, + "GM043": { + "GFSA19_10": "GFSA19_42", + "GFSA17_29": "GFSA17_43" + } +} diff --git a/resources/profiles/BBL/filament/filament_name_map.json b/resources/profiles/BBL/filament/filament_name_map.json new file mode 100644 index 0000000000..dc7168b749 --- /dev/null +++ b/resources/profiles/BBL/filament/filament_name_map.json @@ -0,0 +1,245 @@ +{ + "type": "filament", + "Bambu Lab X1 Carbon 0.8 nozzle": { + "Bambu PA6-CF @BBL X1C": "Bambu PA6-CF @BBL X1C 0.6 nozzle", + "Bambu PAHT-CF @BBL X1C": "Bambu PAHT-CF @BBL X1C 0.6 nozzle", + "Bambu PPA-CF @BBL X1C": "Bambu PPA-CF @BBL X1C 0.6 nozzle" + }, + "Bambu Lab X1 0.8 nozzle": { + "Generic PETG HF @BBL X1C": "Generic PETG HF @BBL X1 0.6 nozzle" + }, + "Bambu Lab X1 0.4 nozzle": { + "Generic PETG HF @BBL X1C": "Generic PETG HF @BBL X1 0.6 nozzle" + }, + "Bambu Lab X1 Carbon 0.6 nozzle": { + "Bambu ABS @BBL X1C": "Bambu ABS @BBL X1C 0.6 nozzle", + "Bambu PA6-CF @BBL X1C": "Bambu PA6-CF @BBL X1C 0.6 nozzle", + "Bambu PAHT-CF @BBL X1C": "Bambu PAHT-CF @BBL X1C 0.6 nozzle", + "Bambu PETG HF @BBL X1C 0.8 nozzle": "Bambu PETG HF @BBL X1C 0.6 nozzle", + "Bambu PETG Translucent @BBL X1C 0.8 nozzle": "Bambu PETG Translucent @BBL X1C 0.6 nozzle", + "Bambu PLA Basic @BBL X1C": "Bambu PLA Basic @BBL X1C 0.6 nozzle", + "Bambu PLA Dynamic @BBL X1C": "Bambu PLA Dynamic @BBL X1C 0.6 nozzle", + "Bambu PLA Galaxy @BBL X1C": "Bambu PLA Galaxy @BBL X1C 0.6 nozzle", + "Bambu PLA Glow @BBL X1C": "Bambu PLA Glow @BBL X1C 0.6 nozzle", + "Bambu PLA Lite @BBL X1C": "Bambu PLA Lite @BBL X1C 0.6 nozzle", + "Bambu PLA Marble @BBL X1C": "Bambu PLA Marble @BBL X1C 0.6 nozzle", + "Bambu PLA Matte @BBL X1C": "Bambu PLA Matte @BBL X1C 0.6 nozzle", + "Bambu PLA Metal @BBL X1C": "Bambu PLA Metal @BBL X1C 0.6 nozzle", + "Bambu PLA Silk+ @BBL X1C": "Bambu PLA Silk+ @BBL X1C 0.6 nozzle", + "Bambu PLA Sparkle @BBL X1C": "Bambu PLA Sparkle @BBL X1C 0.6 nozzle", + "Bambu PLA Tough+ @BBL X1C": "Bambu PLA Tough+ @BBL X1C 0.6 nozzle", + "Bambu PLA Wood @BBL X1C": "Bambu PLA Wood @BBL X1C 0.6 nozzle", + "Bambu PPA-CF @BBL X1C": "Bambu PPA-CF @BBL X1C 0.6 nozzle", + "Bambu TPU for AMS @BBL X1C": "Bambu TPU for AMS @BBL X1C 0.6 nozzle" + }, + "Bambu Lab X1 0.6 nozzle": { + "Generic PETG HF @BBL X1C": "Generic PETG HF @BBL X1 0.6 nozzle" + }, + "Bambu Lab P1S 0.4 nozzle": { + "Bambu ABS @BBL X1C": "Bambu ABS @BBL P1S 0.4 nozzle", + "Bambu PETG HF @BBL X1C": "Bambu PETG HF @BBL P1S 0.4 nozzle", + "Bambu PLA Basic @BBL X1C": "Bambu PLA Basic @BBL P1S 0.4 nozzle", + "Bambu PLA Matte @BBL X1C": "Bambu PLA Matte @BBL P1S 0.4 nozzle", + "Bambu PLA Silk+ @BBL X1C": "Bambu PLA Silk+ @BBL P1S 0.4 nozzle", + "Generic PETG HF @BBL X1C": "Generic PETG HF @BBL P1S 0.4 nozzle" + }, + "Bambu Lab P1S 0.6 nozzle": { + "Bambu ABS @BBL X1C": "Bambu ABS @BBL P1S 0.6 nozzle", + "Bambu PLA Basic @BBL X1C": "Bambu PLA Basic @BBL P1S 0.6 nozzle", + "Bambu PLA Matte @BBL X1C": "Bambu PLA Matte @BBL P1S 0.6 nozzle", + "Bambu PLA Silk+ @BBL X1C": "Bambu PLA Silk+ @BBL P1S 0.6 nozzle", + "Generic PETG HF @BBL X1C": "Generic PETG HF @BBL P1S 0.6 nozzle" + }, + "Bambu Lab P1P 0.8 nozzle": { + "Bambu PAHT-CF @BBL P1P": "Bambu PAHT-CF @BBL P1P 0.6 nozzle", + "Bambu PLA Marble @BBL P1P": "Bambu PLA Marble @BBL P1P 0.6 nozzle" + }, + "Bambu Lab P1P 0.6 nozzle": { + "Bambu PLA Dynamic @BBL P1P": "Bambu PLA Dynamic @BBL P1P 0.6 nozzle", + "Bambu PLA Galaxy @BBL P1P": "Bambu PLA Galaxy @BBL P1P 0.6 nozzle", + "Bambu PLA Glow @BBL P1P": "Bambu PLA Glow @BBL P1P 0.6 nozzle", + "Bambu PLA Lite @BBL P1P": "Bambu PLA Lite @BBL P1P 0.6 nozzle", + "Bambu PLA Silk+ @BBL P1P": "Bambu PLA Silk+ @BBL P1P 0.6 nozzle", + "Bambu PLA Wood @BBL P1P": "Bambu PLA Wood @BBL P1P 0.6 nozzle", + "Bambu TPU for AMS @BBL P1P": "Bambu TPU for AMS @BBL P1P 0.6 nozzle", + "Bambu ABS @BBL P1P": "Bambu ABS @BBL P1P 0.6 nozzle", + "Bambu PAHT-CF @BBL P1P": "Bambu PAHT-CF @BBL P1P 0.6 nozzle", + "Bambu PC @BBL P1P": "Bambu PC @BBL P1P 0.6 nozzle", + "Bambu PLA Basic @BBL P1P": "Bambu PLA Basic @BBL P1P 0.6 nozzle", + "Bambu PLA Marble @BBL P1P": "Bambu PLA Marble @BBL P1P 0.6 nozzle", + "Bambu PLA Matte @BBL P1P": "Bambu PLA Matte @BBL P1P 0.6 nozzle", + "Bambu PLA Metal @BBL P1P": "Bambu PLA Metal @BBL P1P 0.6 nozzle", + "Bambu PLA Sparkle @BBL P1P": "Bambu PLA Sparkle @BBL P1P 0.6 nozzle", + "Bambu PLA Tough+ @BBL P1P": "Bambu PLA Tough+ @BBL P1P 0.6 nozzle" + }, + "Bambu Lab P1P 0.4 nozzle": { + "Bambu PETG HF @BBL X1C": "Bambu PETG HF @BBL P1P 0.4 nozzle" + }, + "Bambu Lab H2D 0.4 nozzle": { + "Bambu TPU 95A HF @BBL H2D": "Bambu TPU 95A HF @BBL H2D 0.4 nozzle", + "Bambu TPU 95A HF @BBL H2DP": "Bambu TPU 95A HF @BBL H2DP 0.4 nozzle" + }, + "Bambu Lab H2D 0.6 nozzle": { + "Bambu TPU 90A @BBL H2D": "Bambu TPU 90A @BBL H2D 0.6 nozzle", + "Bambu PA6-CF @BBL H2D": "Bambu PA6-CF @BBL H2D 0.6 nozzle", + "Bambu PAHT-CF @BBL H2D": "Bambu PAHT-CF @BBL H2D 0.6 nozzle", + "Bambu PLA Lite @BBL H2D": "Bambu PLA Lite @BBL H2D 0.6 nozzle", + "Bambu PLA Pure @BBL H2D 0.8 nozzle": "Bambu PLA Pure @BBL H2D 0.6 nozzle", + "Bambu PLA Silk+ @BBL H2D": "Bambu PLA Silk+ @BBL H2D 0.6 nozzle", + "Bambu PLA Translucent @BBL H2D 0.8 nozzle": "Bambu PLA Translucent @BBL H2D 0.6 nozzle", + "Bambu PVA @BBL H2D": "Bambu PVA @BBL H2D 0.6 nozzle", + "Bambu Support For PLA @BBL H2D": "Bambu Support For PLA @BBL H2D 0.6 nozzle", + "Bambu Support For PLA/PETG @BBL H2D": "Bambu Support For PLA/PETG @BBL H2D 0.6 nozzle", + "Bambu Support for ABS @BBL H2D": "Bambu Support for ABS @BBL H2D 0.6 nozzle", + "Bambu TPU for AMS @BBL H2D": "Bambu TPU for AMS @BBL H2D 0.6 nozzle" + }, + "Bambu Lab H2D 0.8 nozzle": { + "Bambu TPU 90A @BBL H2D": "Bambu TPU 90A @BBL H2D 0.8 nozzle", + "Bambu PA6-CF @BBL H2D": "Bambu PA6-CF @BBL H2D 0.8 nozzle", + "Bambu PAHT-CF @BBL H2D": "Bambu PAHT-CF @BBL H2D 0.8 nozzle", + "Bambu PETG Basic @BBL H2D 0.6 nozzle": "Bambu PETG Basic @BBL H2D 0.8 nozzle", + "Bambu PETG Translucent @BBL H2D 0.6 nozzle": "Bambu PETG Translucent @BBL H2D 0.8 nozzle", + "Bambu PETG-CF @BBL H2D 0.6 nozzle": "Bambu PETG-CF @BBL H2D 0.8 nozzle", + "Bambu PLA Silk+ @BBL H2D": "Bambu PLA Silk+ @BBL H2D 0.8 nozzle", + "Bambu PLA-CF @BBL H2D 0.6 nozzle": "Bambu PLA-CF @BBL H2D 0.8 nozzle", + "Bambu PVA @BBL H2D": "Bambu PVA @BBL H2D 0.8 nozzle", + "Bambu Support For PLA @BBL H2D": "Bambu Support For PLA @BBL H2D 0.8 nozzle", + "Bambu Support For PLA/PETG @BBL H2D": "Bambu Support For PLA/PETG @BBL H2D 0.8 nozzle", + "Bambu Support for ABS @BBL H2D": "Bambu Support for ABS @BBL H2D 0.8 nozzle", + "Bambu TPU 95A HF @BBL H2D": "Bambu TPU 95A HF @BBL H2D 0.8 nozzle", + "Bambu TPU for AMS @BBL H2D": "Bambu TPU for AMS @BBL H2D 0.8 nozzle" + }, + "Bambu Lab H2D Pro 0.6 nozzle": { + "Bambu TPU 90A @BBL H2DP": "Bambu TPU 90A @BBL H2DP 0.6 nozzle", + "Bambu PA6-CF @BBL H2DP": "Bambu PA6-CF @BBL H2DP 0.6 nozzle", + "Bambu PAHT-CF @BBL H2DP": "Bambu PAHT-CF @BBL H2DP 0.6 nozzle", + "Bambu PLA Pure @BBL H2DP 0.8 nozzle": "Bambu PLA Pure @BBL H2DP 0.6 nozzle", + "Bambu PLA Silk+ @BBL H2DP": "Bambu PLA Silk+ @BBL H2DP 0.6 nozzle", + "Bambu PLA Translucent @BBL H2DP 0.8 nozzle": "Bambu PLA Translucent @BBL H2DP 0.6 nozzle", + "Bambu PVA @BBL H2DP": "Bambu PVA @BBL H2DP 0.6 nozzle", + "Bambu Support For PLA @BBL H2DP": "Bambu Support For PLA @BBL H2DP 0.6 nozzle", + "Bambu Support For PLA/PETG @BBL H2DP": "Bambu Support For PLA/PETG @BBL H2DP 0.6 nozzle", + "Bambu Support for ABS @BBL H2DP": "Bambu Support for ABS @BBL H2DP 0.6 nozzle", + "Bambu TPU for AMS @BBL H2DP": "Bambu TPU for AMS @BBL H2DP 0.6 nozzle" + }, + "Bambu Lab H2D Pro 0.8 nozzle": { + "Bambu TPU 90A @BBL H2DP": "Bambu TPU 90A @BBL H2DP 0.8 nozzle", + "Bambu PA6-CF @BBL H2DP": "Bambu PA6-CF @BBL H2DP 0.8 nozzle", + "Bambu PAHT-CF @BBL H2DP": "Bambu PAHT-CF @BBL H2DP 0.8 nozzle", + "Bambu PETG Basic @BBL H2DP 0.6 nozzle": "Bambu PETG Basic @BBL H2DP 0.8 nozzle", + "Bambu PETG Translucent @BBL H2DP 0.6 nozzle": "Bambu PETG Translucent @BBL H2DP 0.8 nozzle", + "Bambu PETG-CF @BBL H2DP 0.6 nozzle": "Bambu PETG-CF @BBL H2DP 0.8 nozzle", + "Bambu PLA Silk+ @BBL H2DP": "Bambu PLA Silk+ @BBL H2DP 0.8 nozzle", + "Bambu PLA-CF @BBL H2DP 0.6 nozzle": "Bambu PLA-CF @BBL H2DP 0.8 nozzle", + "Bambu PVA @BBL H2DP": "Bambu PVA @BBL H2DP 0.8 nozzle", + "Bambu Support For PLA @BBL H2DP": "Bambu Support For PLA @BBL H2DP 0.8 nozzle", + "Bambu Support For PLA/PETG @BBL H2DP": "Bambu Support For PLA/PETG @BBL H2DP 0.8 nozzle", + "Bambu Support for ABS @BBL H2DP": "Bambu Support for ABS @BBL H2DP 0.8 nozzle", + "Bambu TPU 95A HF @BBL H2DP": "Bambu TPU 95A HF @BBL H2DP 0.8 nozzle", + "Bambu TPU for AMS @BBL H2DP": "Bambu TPU for AMS @BBL H2DP 0.8 nozzle" + }, + "Bambu Lab X2D 0.8 nozzle": { + "Bambu ASA @BBL X2D": "Bambu ASA @BBL X2D 0.8 nozzle", + "Bambu PA6-CF @BBL X2D": "Bambu PA6-CF @BBL X2D 0.8 nozzle", + "Bambu PAHT-CF @BBL X2D": "Bambu PAHT-CF @BBL X2D 0.8 nozzle", + "Bambu PETG Basic @BBL X2D": "Bambu PETG Basic @BBL X2D 0.8 nozzle", + "Bambu PETG HF @BBL X2D": "Bambu PETG HF @BBL X2D 0.8 nozzle", + "Bambu PLA Basic @BBL X2D": "Bambu PLA Basic @BBL X2D 0.8 nozzle", + "Bambu PLA Lite @BBL X2D": "Bambu PLA Lite @BBL X2D 0.8 nozzle", + "Bambu PLA Matte @BBL X2D": "Bambu PLA Matte @BBL X2D 0.8 nozzle", + "Bambu PLA Silk+ @BBL X2D": "Bambu PLA Silk+ @BBL X2D 0.8 nozzle", + "Bambu PLA Tough+ @BBL X2D": "Bambu PLA Tough+ @BBL X2D 0.8 nozzle", + "Bambu PLA-CF @BBL X2D": "Bambu PLA-CF @BBL X2D 0.8 nozzle", + "Bambu PVA @BBL X2D": "Bambu PVA @BBL X2D 0.8 nozzle", + "Bambu Support For PLA @BBL X2D": "Bambu Support For PLA @BBL X2D 0.8 nozzle", + "Bambu Support For PLA/PETG @BBL X2D": "Bambu Support For PLA/PETG @BBL X2D 0.8 nozzle", + "Bambu Support for ABS @BBL X2D": "Bambu Support for ABS @BBL X2D 0.8 nozzle", + "Bambu TPU 95A HF @BBL X2D": "Bambu TPU 95A HF @BBL X2D 0.8 nozzle", + "Bambu TPU for AMS @BBL X2D": "Bambu TPU for AMS @BBL X2D 0.8 nozzle" + }, + "Bambu Lab H2C 0.8 nozzle": { + "Bambu PA6-CF @BBL H2C": "Bambu PA6-CF @BBL H2C 0.8 nozzle", + "Bambu PAHT-CF @BBL H2C": "Bambu PAHT-CF @BBL H2C 0.8 nozzle", + "Bambu PETG Basic @BBL H2C": "Bambu PETG Basic @BBL H2C 0.8 nozzle", + "Bambu PETG Translucent @BBL H2C": "Bambu PETG Translucent @BBL H2C 0.8 nozzle", + "Bambu PETG-CF @BBL H2C": "Bambu PETG-CF @BBL H2C 0.8 nozzle", + "Bambu PLA Lite @BBL H2C": "Bambu PLA Lite @BBL H2C 0.8 nozzle", + "Bambu PLA Pure @BBL H2C": "Bambu PLA Pure @BBL H2C 0.8 nozzle", + "Bambu PLA Silk+ @BBL H2C": "Bambu PLA Silk+ @BBL H2C 0.8 nozzle", + "Bambu PLA Translucent @BBL H2C": "Bambu PLA Translucent @BBL H2C 0.8 nozzle", + "Bambu PLA-CF @BBL H2C": "Bambu PLA-CF @BBL H2C 0.8 nozzle", + "Bambu PVA @BBL H2C": "Bambu PVA @BBL H2C 0.8 nozzle", + "Bambu Support For PLA @BBL H2C": "Bambu Support For PLA @BBL H2C 0.8 nozzle", + "Bambu Support For PLA/PETG @BBL H2C": "Bambu Support For PLA/PETG @BBL H2C 0.8 nozzle", + "Bambu Support for ABS @BBL H2C": "Bambu Support for ABS @BBL H2C 0.8 nozzle", + "Bambu TPU 95A HF @BBL H2C": "Bambu TPU 95A HF @BBL H2C 0.8 nozzle", + "Bambu TPU for AMS @BBL H2C": "Bambu TPU for AMS @BBL H2C 0.8 nozzle" + }, + "Bambu Lab H2S 0.6 nozzle": { + "Bambu PA6-CF @BBL H2S": "Bambu PA6-CF @BBL H2S 0.6 nozzle", + "Bambu PAHT-CF @BBL H2S": "Bambu PAHT-CF @BBL H2S 0.6 nozzle", + "Bambu PETG Translucent @BBL H2S": "Bambu PETG Translucent @BBL H2S 0.6 nozzle", + "Bambu PETG-CF @BBL H2S": "Bambu PETG-CF @BBL H2S 0.6 nozzle", + "Bambu PLA Lite @BBL H2S": "Bambu PLA Lite @BBL H2S 0.6 nozzle", + "Bambu PLA Pure @BBL H2S": "Bambu PLA Pure @BBL H2S 0.6 nozzle", + "Bambu PLA Silk+ @BBL H2S": "Bambu PLA Silk+ @BBL H2S 0.6 nozzle", + "Bambu PLA Translucent @BBL H2S": "Bambu PLA Translucent @BBL H2S 0.6 nozzle", + "Bambu PLA-CF @BBL H2S": "Bambu PLA-CF @BBL H2S 0.6 nozzle", + "Bambu PVA @BBL H2S": "Bambu PVA @BBL H2S 0.6 nozzle", + "Bambu Support For PLA @BBL H2S": "Bambu Support For PLA @BBL H2S 0.6 nozzle", + "Bambu Support For PLA/PETG @BBL H2S": "Bambu Support For PLA/PETG @BBL H2S 0.6 nozzle", + "Bambu Support for ABS @BBL H2S": "Bambu Support for ABS @BBL H2S 0.6 nozzle", + "Bambu TPU 95A HF @BBL H2S": "Bambu TPU 95A HF @BBL H2S 0.6 nozzle", + "Bambu TPU for AMS @BBL H2S": "Bambu TPU for AMS @BBL H2S 0.6 nozzle" + }, + "Bambu Lab H2S 0.8 nozzle": { + "Bambu PA6-CF @BBL H2S": "Bambu PA6-CF @BBL H2S 0.8 nozzle", + "Bambu PAHT-CF @BBL H2S": "Bambu PAHT-CF @BBL H2S 0.8 nozzle", + "Bambu PETG Basic @BBL H2S 0.6 nozzle": "Bambu PETG Basic @BBL H2S 0.8 nozzle", + "Bambu PETG Translucent @BBL H2S": "Bambu PETG Translucent @BBL H2S 0.8 nozzle", + "Bambu PETG-CF @BBL H2S": "Bambu PETG-CF @BBL H2S 0.8 nozzle", + "Bambu PLA Lite @BBL H2S": "Bambu PLA Lite @BBL H2S 0.8 nozzle", + "Bambu PLA Pure @BBL H2S": "Bambu PLA Pure @BBL H2S 0.8 nozzle", + "Bambu PLA Silk+ @BBL H2S": "Bambu PLA Silk+ @BBL H2S 0.8 nozzle", + "Bambu PLA Translucent @BBL H2S": "Bambu PLA Translucent @BBL H2S 0.8 nozzle", + "Bambu PLA-CF @BBL H2S": "Bambu PLA-CF @BBL H2S 0.8 nozzle", + "Bambu PVA @BBL H2S": "Bambu PVA @BBL H2S 0.8 nozzle", + "Bambu Support For PLA @BBL H2S": "Bambu Support For PLA @BBL H2S 0.8 nozzle", + "Bambu Support For PLA/PETG @BBL H2S": "Bambu Support For PLA/PETG @BBL H2S 0.8 nozzle", + "Bambu Support for ABS @BBL H2S": "Bambu Support for ABS @BBL H2S 0.8 nozzle", + "Bambu TPU 95A HF @BBL H2S": "Bambu TPU 95A HF @BBL H2S 0.8 nozzle", + "Bambu TPU for AMS @BBL H2S": "Bambu TPU for AMS @BBL H2S 0.8 nozzle" + }, + "Bambu Lab P2S 0.6 nozzle": { + "Bambu PA6-CF @BBL P2S": "Bambu PA6-CF @BBL P2S 0.6 nozzle", + "Bambu PAHT-CF @BBL P2S": "Bambu PAHT-CF @BBL P2S 0.6 nozzle", + "Bambu PVA @BBL P2S": "Bambu PVA @BBL P2S 0.6 nozzle", + "Bambu Support For PLA @BBL P2S": "Bambu Support For PLA @BBL P2S 0.6 nozzle", + "Bambu Support For PLA/PETG @BBL P2S": "Bambu Support For PLA/PETG @BBL P2S 0.6 nozzle", + "Bambu Support for ABS @BBL P2S": "Bambu Support for ABS @BBL P2S 0.6 nozzle", + "Bambu TPU 95A HF @BBL P2S": "Bambu TPU 95A HF @BBL P2S 0.6 nozzle", + "Bambu TPU for AMS @BBL P2S": "Bambu TPU for AMS @BBL P2S 0.6 nozzle" + }, + "Bambu Lab P2S 0.8 nozzle": { + "Bambu PA6-CF @BBL P2S": "Bambu PA6-CF @BBL P2S 0.8 nozzle", + "Bambu PAHT-CF @BBL P2S": "Bambu PAHT-CF @BBL P2S 0.8 nozzle", + "Bambu PETG Basic @BBL P2S 0.6 nozzle": "Bambu PETG Basic @BBL P2S 0.8 nozzle", + "Bambu PETG HF @BBL P2S 0.6 nozzle": "Bambu PETG HF @BBL P2S 0.8 nozzle", + "Bambu PETG Translucent @BBL P2S 0.6 nozzle": "Bambu PETG Translucent @BBL P2S 0.8 nozzle", + "Bambu PETG-CF @BBL P2S 0.6 nozzle": "Bambu PETG-CF @BBL P2S 0.8 nozzle", + "Bambu PLA-CF @BBL P2S 0.6 nozzle": "Bambu PLA-CF @BBL P2S 0.8 nozzle", + "Bambu PVA @BBL P2S": "Bambu PVA @BBL P2S 0.8 nozzle", + "Bambu Support For PLA @BBL P2S": "Bambu Support For PLA @BBL P2S 0.8 nozzle", + "Bambu Support For PLA/PETG @BBL P2S": "Bambu Support For PLA/PETG @BBL P2S 0.8 nozzle", + "Bambu Support for ABS @BBL P2S": "Bambu Support for ABS @BBL P2S 0.8 nozzle", + "Bambu TPU 95A HF @BBL P2S": "Bambu TPU 95A HF @BBL P2S 0.8 nozzle", + "Bambu TPU for AMS @BBL P2S": "Bambu TPU for AMS @BBL P2S 0.8 nozzle" + }, + "Bambu Lab X2D 0.6 nozzle": { + "Bambu PLA Basic @BBL X2D": "Bambu PLA Basic @BBL X2D 0.6 nozzle" + }, + "Bambu Lab H2C 0.6 nozzle": { + "Bambu PLA Pure @BBL H2C": "Bambu PLA Pure @BBL H2C 0.6 nozzle", + "Bambu PLA Translucent @BBL H2C": "Bambu PLA Translucent @BBL H2C 0.6 nozzle" + } +} diff --git a/resources/profiles/BBL/filament/filaments_color_codes.json b/resources/profiles/BBL/filament/filaments_color_codes.json index 5c4cfa7570..f236cab20b 100644 --- a/resources/profiles/BBL/filament/filaments_color_codes.json +++ b/resources/profiles/BBL/filament/filaments_color_codes.json @@ -1,7081 +1,7659 @@ { - "data": [ - { - "fila_color_code": "10300", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Orange", - "sv": "Orange", - "pt": "Laranja", - "ko": "오렌지", - "ja": "オレンジ", - "en": "Orange", - "ru": "Оранжевый", - "it": "Arancione", - "fr": "Orange", - "hu": "Narancssárga", - "zh": "橙色", - "nl": "Oranje", - "es": "Naranja" - }, - "fila_color": [ - "#FF6A13FF" - ] - }, - { - "fila_color_code": "10301", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Kürbis-Orange", - "sv": "Pumpaorange", - "pt": "Abóbora Laranja", - "ko": "펌프킨 오렌지", - "ja": "パンプキン オレンジ", - "en": "Pumpkin Orange", - "ru": "Тыквенно-оранжевый", - "it": "Arancione zucca", - "fr": "Orange citrouille", - "hu": "Sütőtök", - "zh": "南瓜橙", - "nl": "Pompoenoranje", - "es": "Naranja calabaza" - }, - "fila_color": [ - "#FF9016FF" - ] - }, - { - "fila_color_code": "10602", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Blau-Grau", - "sv": "Blågrå", - "pt": "Azul-Cinza", - "ko": "블루 그레이", - "ja": "ブルー グレー", - "en": "Blue Gray", - "ru": "Серо-голубой", - "it": "Grigio blu", - "fr": "Bleu gris", - "hu": "Kékesszürke", - "zh": "蓝灰", - "nl": "Blauwgrijs", - "es": "Gris azulado" - }, - "fila_color": [ - "#5B6579FF" - ] - }, - { - "fila_color_code": "10604", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Kobaltblau", - "sv": "Koboltblå", - "pt": "Azul-cobalto", - "ko": "코발트 블루", - "ja": "コバルト ブルー", - "en": "Cobalt Blue", - "ru": "Синий кобальт", - "it": "Blu cobalto", - "fr": "Bleu cobalt", - "hu": "Kobaltkék", - "zh": "钴蓝色", - "nl": "Kobaltblauw", - "es": "Azul cobalto" - }, - "fila_color": [ - "#0056B8FF" - ] - }, - { - "fila_color_code": "10605", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Türkis", - "sv": "Turkos", - "pt": "Turquesa", - "ko": "터쿼이즈", - "ja": "ターコイズ", - "en": "Turquoise", - "ru": "Бирюзовый", - "it": "Turchese", - "fr": "Turquoise", - "hu": "Türkiz", - "zh": "松石绿", - "nl": "Turkoois", - "es": "Turquesa" - }, - "fila_color": [ - "#00B1B7FF" - ] - }, - { - "fila_color_code": "10603", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Cyan", - "sv": "Cyan", - "pt": "Ciano", - "ko": "시안", - "ja": "シアン", - "en": "Cyan", - "ru": "Голубой", - "it": "Ciano", - "fr": "Cyan", - "hu": "Cián", - "zh": "青色", - "nl": "Cyaan", - "es": "Cian" - }, - "fila_color": [ - "#0086D6FF" - ] - }, - { - "fila_color_code": "10601", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Blau", - "sv": "Blå", - "pt": "Azul", - "ko": "블루", - "ja": "ブルー", - "en": "Blue", - "ru": "Синий", - "it": "Blu", - "fr": "Bleu", - "hu": "Kék", - "zh": "蓝色", - "nl": "Blauw", - "es": "Azul" - }, - "fila_color": [ - "#0A2989FF" - ] - }, - { - "fila_color_code": "10103", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Grau", - "sv": "Grå", - "pt": "Cinza", - "ko": "그레이", - "ja": "グレー", - "en": "Gray", - "ru": "Серый", - "it": "Grigio", - "fr": "Gris", - "hu": "Szürke", - "zh": "灰色", - "nl": "Grijs", - "es": "Gris" - }, - "fila_color": [ - "#8E9089FF" - ] - }, - { - "fila_color_code": "10102", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Silber", - "sv": "Silver", - "pt": "Prateado", - "ko": "실버", - "ja": "シルバー", - "en": "Silver", - "ru": "Серебристый", - "it": "Argento", - "fr": "Argenté", - "hu": "Ezüst", - "zh": "银色", - "nl": "Zilver", - "es": "Plateado" - }, - "fila_color": [ - "#A6A9AAFF" - ] - }, - { - "fila_color_code": "10104", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Hellgrau", - "sv": "Ljusgrå", - "pt": "Cinza-claro", - "ko": "라이트 그레이", - "ja": "ライト グレー", - "en": "Light Gray", - "ru": "Светло-серый", - "it": "Grigio chiaro", - "fr": "Gris clair", - "hu": "Világosszürke", - "zh": "浅灰", - "nl": "Lichtgrijs", - "es": "Gris claro" - }, - "fila_color": [ - "#D1D3D5FF" - ] - }, - { - "fila_color_code": "10105", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Dunkelgrau", - "sv": "Mörkgrå", - "pt": "Cinza-escuro", - "ko": "다크 그레이", - "ja": "ダーク グレー", - "en": "Dark Gray", - "ru": "Тёмно-серый", - "it": "Grigio scuro", - "fr": "Gris foncé", - "hu": "Sötétszürke", - "zh": "深灰", - "nl": "Donkergrijs", - "es": "Gris oscuro" - }, - "fila_color": [ - "#545454FF" - ] - }, - { - "fila_color_code": "10500", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Grün", - "sv": "Grön", - "pt": "Verde", - "ko": "그린", - "ja": "グリーン", - "en": "Green", - "ru": "Зелёный", - "it": "Verde", - "fr": "Vert", - "hu": "Zöld", - "zh": "墨绿", - "nl": "Groen", - "es": "Verde" - }, - "fila_color": [ - "#164B35FF" - ] - }, - { - "fila_color_code": "10502", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Mistelzweig-Grün", - "sv": "Mistelgrön", - "pt": "Mistletoe Green", - "ko": "미슬토 그린", - "ja": "ミスルトー グリーン", - "en": "Mistletoe Green", - "ru": "Зелёная омела", - "it": "Verde vischio", - "fr": "Vert gui", - "hu": "Fagyöngyzöld", - "zh": "圣诞绿", - "nl": "Maretakgroen", - "es": "Verde muérdago" - }, - "fila_color": [ - "#3F8E43FF" - ] - }, - { - "fila_color_code": "10503", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Hellgrün", - "sv": "Ljusgrön", - "pt": "Verde Brilhante", - "ko": "브라이트 그린", - "ja": "ブライト グリーン", - "en": "Bright Green", - "ru": "Салатовый", - "it": "Verde brillante", - "fr": "Vert vif", - "hu": "Világoszöld", - "zh": "苹果绿", - "nl": "Felgroen", - "es": "Verde brillante" - }, - "fila_color": [ - "#BECF00FF" - ] - }, - { - "fila_color_code": "10501", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Bambusgrün", - "sv": "Bambugrön", - "pt": "Verde-bambu", - "ko": "뱀부 그린", - "ja": "バンブー グリーン", - "en": "Bambu Green", - "ru": "Зелёный бамбук", - "it": "Verde bambù", - "fr": "Vert bambou", - "hu": "Bambu-zöld", - "zh": "拓竹绿", - "nl": "Bamboegroen", - "es": "Verde bambú" - }, - "fila_color": [ - "#00AE42FF" - ] - }, - { - "fila_color_code": "10101", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "10900", - "fila_id": "GFA00", - "fila_color_type": "渐变色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Arktisches Flüstern", - "sv": "Arktisk viskning", - "pt": "Arctic Whisper", - "ko": "아크틱 위스퍼", - "ja": "アークティック ウィスパー", - "en": "Arctic Whisper", - "ru": "Арктический шёпот", - "it": "Arctic Whisper", - "fr": "Murmure arctique", - "hu": "Sarkköri suttogás", - "zh": "蓝白渐变", - "nl": "Vleugje noordpool", - "es": "Susurro ártico" - }, - "fila_color": [ - "#FFFFFFFF", - "#9CDBD9FF" - ] - }, - { - "fila_color_code": "10901", - "fila_id": "GFA00", - "fila_color_type": "渐变色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Sonnenbrise", - "sv": "Solbris", - "pt": "Brisa Solar", - "ko": "솔라 브리즈", - "ja": "ソーラー ブリーズ", - "en": "Solar Breeze", - "ru": "Солнечный бриз", - "it": "Solar Breeze", - "fr": "Brise solaire", - "hu": "Napszellő", - "zh": "红白渐变", - "nl": "Zonnebries", - "es": "Brisa solar" - }, - "fila_color": [ - "#E94B3CFF", - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "10902", - "fila_id": "GFA00", - "fila_color_type": "渐变色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Meer und Wiese", - "sv": "Ocean till äng", - "pt": "Ocean to Meadow", - "ko": "오션에서 메도우로", - "ja": "オーシャン トゥ メドウ", - "en": "Ocean to Meadow", - "ru": "Из глубин к морским лугам (Ocean to Meadow)", - "it": "Azzurro/verde con gradazione", - "fr": "Océan à Prairie", - "hu": "Óceántól a rétig", - "zh": "蓝绿渐变", - "nl": "Van oceaanblauw naar weidegroen", - "es": "Del océano a la pradera" - }, - "fila_color": [ - "#307FE2FF", - "#54FF9BFF" - ] - }, - { - "fila_color_code": "10903", - "fila_id": "GFA00", - "fila_color_type": "渐变色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Zitrus-Pink", - "sv": "Rosa citrus", - "pt": "Pink Citrus", - "ko": "핑크 시트러스", - "ja": "ピンク シトラス", - "en": "Pink Citrus", - "ru": "Розовый цитрус", - "it": "Rosa citrus", - "fr": "Agrume rose", - "hu": "Rózsaszín-citrus", - "zh": "霞光粉", - "nl": "Roze citrus", - "es": "Rosa cítrico" - }, - "fila_color": [ - "#F78F77FF", - "#E4505AFF" - ] - }, - { - "fila_color_code": "10904", - "fila_id": "GFA00", - "fila_color_type": "渐变色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Minze-Limette", - "sv": "Mintlime", - "pt": "Menta-lima", - "ko": "민트 라임", - "ja": "ミント ライム", - "en": "Mint Lime", - "ru": "Мятный лайм", - "it": "Lime menta", - "fr": "Menthe citron vert", - "hu": "Menta-lime", - "zh": "青柠绿", - "nl": "Muntlimoen", - "es": "Lima menta" - }, - "fila_color": [ - "#4EC939FF", - "#B6FF43FF" - ] - }, - { - "fila_color_code": "10905", - "fila_id": "GFA00", - "fila_color_type": "渐变色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Blaubeere-Bubblegum", - "sv": "Blåbärsbubbelgum", - "pt": "Chiclete de Mirtilo", - "ko": "블루베리 버블검", - "ja": "ブルーベリー バブルガム", - "en": "Blueberry Bubblegum", - "ru": "Черничная жвачка", - "it": "Mirtillo", - "fr": "Chewing-gum myrtilles", - "hu": "Áfonyás rágógumi", - "zh": "泡泡紫", - "nl": "Bosbessenkauwgum", - "es": "Chicle de arándano" - }, - "fila_color": [ - "#6FCAEFFF", - "#8573DDFF" - ] - }, - { - "fila_color_code": "10906", - "fila_id": "GFA00", - "fila_color_type": "渐变色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Leuchtende Abenddämmerung", - "sv": "Skymningsljus", - "pt": "Brilho do Crepúsculo", - "ko": "더스크 글래어", - "ja": "ダスク グレア", - "en": "Dusk Glare", - "ru": "Сумеречный блик", - "it": "Dusk Glare", - "fr": "Éclat crépusculaire", - "hu": "Alkonyati csillámlás", - "zh": "日落橙", - "nl": "Schemerlicht", - "es": "Resplandor del crepúsculo" - }, - "fila_color": [ - "#CE4406FF", - "#ED9558FF" - ] - }, - { - "fila_color_code": "10907", - "fila_id": "GFA00", - "fila_color_type": "渐变色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Zuckerwatten-Wolke", - "sv": "Sockervaddsmoln", - "pt": "Cotton Candy Cloud", - "ko": "코튼 캔디 클라우드", - "ja": "コットン キャンディ クラウド", - "en": "Cotton Candy Cloud", - "ru": "Сахарная вата", - "it": "Zucchero filato", - "fr": "Nuage de barbe à papa", - "hu": "Vattacukorfelhő", - "zh": "多巴胺(粉蓝渐变)", - "nl": "Suikerspinwolk", - "es": "Nube de algodón de azúcar" - }, - "fila_color": [ - "#8EC9E9FF", - "#E7C1D5FF" - ] - }, - { - "fila_color_code": "10800", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Braun", - "sv": "Brun", - "pt": "Marrom", - "ko": "브라운", - "ja": "ブラウン", - "en": "Brown", - "ru": "Коричневый", - "it": "Marrone", - "fr": "Marron", - "hu": "Barna", - "zh": "棕色", - "nl": "Bruin", - "es": "Marrón" - }, - "fila_color": [ - "#9D432CFF" - ] - }, - { - "fila_color_code": "10802", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Kakaobraun", - "sv": "Kakaobrun", - "pt": "Cacau Marrom", - "ko": "코코아 브라운", - "ja": "ココア ブラウン", - "en": "Cocoa Brown", - "ru": "Коричневый какао", - "it": "Marrone cacao", - "fr": "Marron cacao", - "hu": "Kakaóbarna", - "zh": "可可棕", - "nl": "Chocoladebruin", - "es": "Marrón cacao" - }, - "fila_color": [ - "#6F5034FF" - ] - }, - { - "fila_color_code": "10201", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Beige", - "sv": "Beige", - "pt": "Bege", - "ko": "베이지", - "ja": "ベージュ", - "en": "Beige", - "ru": "Бежевый", - "it": "Beige", - "fr": "Beige", - "hu": "Bézs", - "zh": "杏色", - "nl": "Beige", - "es": "Beis" - }, - "fila_color": [ - "#F7E6DEFF" - ] - }, - { - "fila_color_code": "10203", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Pink", - "sv": "Rosa", - "pt": "Rosa", - "ko": "핑크", - "ja": "ピンク", - "en": "Pink", - "ru": "Розовый", - "it": "Rosa", - "fr": "Rose", - "hu": "Rózsaszín", - "zh": "粉色", - "nl": "Roze", - "es": "Rosa" - }, - "fila_color": [ - "#F55A74FF" - ] - }, - { - "fila_color_code": "10701", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Indigo-Violett", - "sv": "Indigolila", - "pt": "Indigo Purple", - "ko": "인디고 퍼플", - "ja": "インディゴ パープル", - "en": "Indigo Purple", - "ru": "Тёмный индиго", - "it": "Viola indaco", - "fr": "Violet indigo", - "hu": "Indigólila", - "zh": "绀紫色", - "nl": "Indigopaars", - "es": "Púrpura índigo" - }, - "fila_color": [ - "#482960FF" - ] - }, - { - "fila_color_code": "10700", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Lila", - "sv": "Lila", - "pt": "Roxo", - "ko": "퍼플", - "ja": "パープル", - "en": "Purple", - "ru": "Пурпурный", - "it": "Viola", - "fr": "Violet", - "hu": "Lila", - "zh": "紫色", - "nl": "Paars", - "es": "Púrpura" - }, - "fila_color": [ - "#5E43B7FF" - ] - }, - { - "fila_color_code": "10202", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Magenta", - "sv": "Magenta", - "pt": "Magenta", - "ko": "마젠타", - "ja": "マゼンタ", - "en": "Magenta", - "ru": "Малиновый", - "it": "Magenta", - "fr": "Magenta", - "hu": "Magenta", - "zh": "品红", - "nl": "Magenta", - "es": "Magenta" - }, - "fila_color": [ - "#EC008CFF" - ] - }, - { - "fila_color_code": "10200", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Rot", - "sv": "Röd", - "pt": "Vermelho", - "ko": "레드", - "ja": "レッド", - "en": "Red", - "ru": "Красный", - "it": "Rosso", - "fr": "Rouge", - "hu": "Piros", - "zh": "红色", - "nl": "Rood", - "es": "Rojo" - }, - "fila_color": [ - "#C12E1FFF" - ] - }, - { - "fila_color_code": "10205", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Kastanienrot", - "sv": "Rödbrun", - "pt": "Maroon Red", - "ko": "마룬 레드", - "ja": "マルーン レッド", - "en": "Maroon Red", - "ru": "Бордовый", - "it": "Rosso bordeaux", - "fr": "Rouge marron", - "hu": "Gesztenyés vörös", - "zh": "胭脂红", - "nl": "Kastanjerood", - "es": "Rojo granate" - }, - "fila_color": [ - "#9D2235FF" - ] - }, - { - "fila_color_code": "10204", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Heißes Pink", - "sv": "Neonrosa", - "pt": "Rosa-choque", - "ko": "핫핑크", - "ja": "ホット ピンク", - "en": "Hot Pink", - "ru": "Ярко-розовый", - "it": "Fucsia", - "fr": "Rose vif", - "hu": "Forró rózsaszín", - "zh": "桃红色", - "nl": "Felroze", - "es": "Rosa fucsia" - }, - "fila_color": [ - "#F5547CFF" - ] - }, - { - "fila_color_code": "10100", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Jade-Weiß", - "sv": "Jadevit", - "pt": "Jade Branco", - "ko": "제이드 화이트", - "ja": "ジェイド ホワイト", - "en": "Jade White", - "ru": "Белый нефрит", - "it": "Bianco giada", - "fr": "Blanc de jade", - "hu": "Jádefehér", - "zh": "玉石白", - "nl": "Jadewit", - "es": "Blanco jade" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "10400", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Gelb", - "sv": "Gul", - "pt": "Amarelo", - "ko": "옐로우", - "ja": "イエロー", - "en": "Yellow", - "ru": "Жёлтый", - "it": "Giallo", - "fr": "Jaune", - "hu": "Sárga", - "zh": "黄色", - "nl": "Geel", - "es": "Amarillo" - }, - "fila_color": [ - "#F4EE2AFF" - ] - }, - { - "fila_color_code": "10402", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Sonnenblumen-Gelb", - "sv": "Solrosgul", - "pt": "Girassol Amarelo", - "ko": "썬플라워 옐로우", - "ja": "サンフラワー イエロー", - "en": "Sunflower Yellow", - "ru": "Жёлтый подсолнух", - "it": "Giallo girasole", - "fr": "Jaune tournesol", - "hu": "Napraforgósárga", - "zh": "暖黄色", - "nl": "Zonnebloemgeel", - "es": "Amarillo girasol" - }, - "fila_color": [ - "#FEC600FF" - ] - }, - { - "fila_color_code": "10801", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Bronze", - "sv": "Brons", - "pt": "Bronze", - "ko": "브론즈", - "ja": "ブロンズ", - "en": "Bronze", - "ru": "Бронзовый", - "it": "Bronzo", - "fr": "Bronze", - "hu": "Bronz", - "zh": "青铜", - "nl": "Bronskleurig", - "es": "Bronce" - }, - "fila_color": [ - "#847D48FF" - ] - }, - { - "fila_color_code": "10401", - "fila_id": "GFA00", - "fila_color_type": "单色", - "fila_type": "PLA Basic", - "fila_color_name": { - "de": "Gold", - "sv": "Guld", - "pt": "Dourado", - "ko": "골드", - "ja": "ゴールド", - "en": "Gold", - "ru": "Золотистый", - "it": "Oro", - "fr": "Doré", - "hu": "Arany", - "zh": "金色", - "nl": "Goud", - "es": "Dorado" - }, - "fila_color": [ - "#E4BD68FF" - ] - }, - { - "fila_color_code": "11300", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Mandarine-Orange", - "sv": "Mandarinorange", - "pt": "Tangerina", - "ko": "만다린 오렌지", - "ja": "マンダリン オレンジ", - "en": "Mandarin Orange", - "ru": "Оранжевый мандарин", - "it": "Arancio mandarino", - "fr": "Mandarine", - "hu": "Mandarinsárga", - "zh": "橘橙", - "nl": "Mandarijnoranje", - "es": "Naranja Mandarina" - }, - "fila_color": [ - "#F99963FF" - ] - }, - { - "fila_color_code": "11603", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Himmelblau", - "sv": "Himmelsblå", - "pt": "Azul-celeste", - "ko": "스카이 블루", - "ja": "スカイ ブルー", - "en": "Sky Blue", - "ru": "Небесно-голубой", - "it": "Azzurro cielo", - "fr": "Bleu ciel", - "hu": "Égszínkék", - "zh": "天蓝色", - "nl": "Hemelsblauw", - "es": "Azul cielo" - }, - "fila_color": [ - "#56B7E6FF" - ] - }, - { - "fila_color_code": "11600", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Marineblau", - "sv": "Marinblå", - "pt": "Azul-marinho", - "ko": "마린 블루", - "ja": "マリン ブルー", - "en": "Marine Blue", - "ru": "Морской синий", - "it": "Blu marino", - "fr": "Bleu marine", - "hu": "Tengerkék", - "zh": "海蓝", - "nl": "Marineblauw", - "es": "Azul marino" - }, - "fila_color": [ - "#0078BFFF" - ] - }, - { - "fila_color_code": "11601", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Eisblau", - "sv": "Isblå", - "pt": "Azul-gelo", - "ko": "아이스 블루", - "ja": "アイス ブルー", - "en": "Ice Blue", - "ru": "Голубой лёд", - "it": "Blu ghiaccio", - "fr": "Bleu glacier", - "hu": "Jégkék", - "zh": "冰蓝", - "nl": "IJsblauw", - "es": "Azul hielo" - }, - "fila_color": [ - "#A3D8E1FF" - ] - }, - { - "fila_color_code": "11602", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Dunkelblau", - "sv": "Mörkblå", - "pt": "Azul-escuro", - "ko": "다크 블루", - "ja": "ダーク ブルー", - "en": "Dark Blue", - "ru": "Тёмно-синий", - "it": "Blu scuro", - "fr": "Bleu foncé", - "hu": "Sötétkék", - "zh": "暗夜蓝", - "nl": "Donkerblauw", - "es": "Azul oscuro" - }, - "fila_color": [ - "#042F56FF" - ] - }, - { - "fila_color_code": "11104", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Nardo-Grau", - "sv": "Nardogrå", - "pt": "Nardo Gray", - "ko": "나르도 그레이", - "ja": "ナルド グレイ", - "en": "Nardo Gray", - "ru": "Серый Nardo", - "it": "Grigio Nardo", - "fr": "Gris nardo", - "hu": "Matt szürke", - "zh": "枪灰色", - "nl": "Nardogrijs", - "es": "Gris nardo" - }, - "fila_color": [ - "#757575FF" - ] - }, - { - "fila_color_code": "11102", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Aschgrau", - "sv": "Askgrå", - "pt": "Ash Gray", - "ko": "애쉬 그레이", - "ja": "アッシュ グレー", - "en": "Ash Gray", - "ru": "Пепельный", - "it": "Grigio cenere", - "fr": "Gris cendré", - "hu": "Hamuszürke", - "zh": "岩石灰", - "nl": "Asgrijs", - "es": "Gris ceniza" - }, - "fila_color": [ - "#9B9EA0FF" - ] - }, - { - "fila_color_code": "11502", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Apfelgrün", - "sv": "Äppelgrön", - "pt": "Maçã-Verde", - "ko": "애플 그린", - "ja": "アップル グリーン", - "en": "Apple Green", - "ru": "Яблочный", - "it": "Verde mela", - "fr": "Vert pomme", - "hu": "Almazöld", - "zh": "果绿色", - "nl": "Appelgroen", - "es": "Verde manzana" - }, - "fila_color": [ - "#C2E189FF" - ] - }, - { - "fila_color_code": "11500", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Grasgrün", - "sv": "Gräsgrön", - "pt": "Grama Verde", - "ko": "그래스 그린", - "ja": "グラス グリーン", - "en": "Grass Green", - "ru": "Травянистый", - "it": "Verde prato", - "fr": "Vert herbacé", - "hu": "Fűzöld", - "zh": "草绿", - "nl": "Grasgroen", - "es": "Verde hierba" - }, - "fila_color": [ - "#61C680FF" - ] - }, - { - "fila_color_code": "11501", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Dunkelgrün", - "sv": "Mörkgrön", - "pt": "Verde-escuro", - "ko": "다크 그린", - "ja": "ダーク グリーン", - "en": "Dark Green", - "ru": "Тёмно-зелёный", - "it": "Verde scuro", - "fr": "Vert foncé", - "hu": "Sötétzöld", - "zh": "暗夜绿", - "nl": "Donkergroen", - "es": "Verde oscuro" - }, - "fila_color": [ - "#68724DFF" - ] - }, - { - "fila_color_code": "11101", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Kohlschwarz", - "sv": "Kolsvart", - "pt": "Carvão", - "ko": "차콜", - "ja": "チャコール", - "en": "Charcoal", - "ru": "Угольный", - "it": "Carbone", - "fr": "Anthracite", - "hu": "Faszén", - "zh": "炭黑", - "nl": "Donkergrijs", - "es": "Carbón" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "11802", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Dunkel-Schokoladenbraun", - "sv": "Mörk choklad", - "pt": "Chocolate-escuro", - "ko": "다크 초콜릿", - "ja": "ダーク チョコレート", - "en": "Dark Chocolate", - "ru": "Тёмный шоколад", - "it": "Cioccolato", - "fr": "Chocolat noir", - "hu": "Étcsokoládé", - "zh": "深棕色", - "nl": "Donkerchocoladebruin", - "es": "Chocolate oscuro" - }, - "fila_color": [ - "#4D3324FF" - ] - }, - { - "fila_color_code": "11800", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Milchkaffee-Braun", - "sv": "Lattebrun", - "pt": "Café com Leite", - "ko": "라떼 브라운", - "ja": "ラテ ブラウン", - "en": "Latte Brown", - "ru": "Латте", - "it": "Caffelatte", - "fr": "Marron latte", - "hu": "Lattebarna", - "zh": "拿铁褐", - "nl": "Lattebruin", - "es": "Marrón Latte" - }, - "fila_color": [ - "#D3B7A7FF" - ] - }, - { - "fila_color_code": "11801", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Dunkelbraun", - "sv": "Mörkbrun", - "pt": "Marrom-escuro", - "ko": "다크 브라운", - "ja": "ダーク ブラウン", - "en": "Dark Brown", - "ru": "Тёмно-коричневый", - "it": "Marrone scuro", - "fr": "Marron foncé", - "hu": "Sötétbarna", - "zh": "暗夜棕", - "nl": "Donkerbruin", - "es": "Marrón oscuro" - }, - "fila_color": [ - "#7D6556FF" - ] - }, - { - "fila_color_code": "11803", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Karamell", - "sv": "Kola", - "pt": "Caramelo", - "ko": "캐러멜", - "ja": "キャラメル", - "en": "Caramel", - "ru": "Карамельный", - "it": "Caramello", - "fr": "Caramel", - "hu": "Karamella", - "zh": "沙棕色", - "nl": "Karamel", - "es": "Caramelo" - }, - "fila_color": [ - "#AE835BFF" - ] - }, - { - "fila_color_code": "11201", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Sakura-Pink", - "sv": "Körsbärsrosa", - "pt": "Sakura Rosa", - "ko": "사쿠라 핑크", - "ja": "サクラ ピンク", - "en": "Sakura Pink", - "ru": "Розовая сакура", - "it": "Rosa sakura", - "fr": "Rose sakura", - "hu": "Szakurarózsaszín", - "zh": "樱花粉", - "nl": "Sakura-roze", - "es": "Rosa sakura" - }, - "fila_color": [ - "#E8AFCFFF" - ] - }, - { - "fila_color_code": "11700", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Flieder-Violett", - "sv": "Syrenlila", - "pt": "Lilás Roxo", - "ko": "라일락 퍼플", - "ja": "ライラック パープル", - "en": "Lilac Purple", - "ru": "Сиреневый", - "it": "Lilla", - "fr": "Violet lilas", - "hu": "Ibolya", - "zh": "丁香紫", - "nl": "Lilapaars", - "es": "Púrpura lila" - }, - "fila_color": [ - "#AE96D4FF" - ] - }, - { - "fila_color_code": "11200", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Scharlachrot", - "sv": "Scharlakansröd", - "pt": "Vermelho Escarlate", - "ko": "스칼렛 레드", - "ja": "スカーレット レッド", - "en": "Scarlet Red", - "ru": "Алый ", - "it": "Rosso scarlatto", - "fr": "Rouge écarlate", - "hu": "Skarlátvörös", - "zh": "猩红", - "nl": "Scharlakenrood", - "es": "Rojo escarlata" - }, - "fila_color": [ - "#DE4343FF" - ] - }, - { - "fila_color_code": "11203", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Terrakotta", - "sv": "Terrakotta", - "pt": "Terracota", - "ko": "테라코타", - "ja": "テラコッタ", - "en": "Terracotta", - "ru": "Терракотовый", - "it": "Terracotta", - "fr": "Terre cuite", - "hu": "Terrakotta", - "zh": "砖红色", - "nl": "Terracotta", - "es": "Terracota" - }, - "fila_color": [ - "#B15533FF" - ] - }, - { - "fila_color_code": "11204", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Pflaume", - "sv": "Plommon", - "pt": "Ameixa", - "ko": "플럼", - "ja": "プラム", - "en": "Plum", - "ru": "Сливовый", - "it": "Prugna", - "fr": "Prune", - "hu": "Szilva", - "zh": "莓果紫", - "nl": "Pruim", - "es": "Ciruela" - }, - "fila_color": [ - "#950051FF" - ] - }, - { - "fila_color_code": "11202", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Dunkelrot", - "sv": "Mörkröd", - "pt": "Vermelho-escuro", - "ko": "다크 레드", - "ja": "ダーク レッド", - "en": "Dark Red", - "ru": "Тёмно-красный", - "it": "Rosso scuro", - "fr": "Rouge foncé", - "hu": "Sötétvörös", - "zh": "暗夜红", - "nl": "Donkerrood", - "es": "Rojo oscuro" - }, - "fila_color": [ - "#BB3D43FF" - ] - }, - { - "fila_color_code": "11100", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Elfenbeinweiß", - "sv": "Elfenbensvit", - "pt": "Branco Marfim", - "ko": "아이보리 화이트", - "ja": "アイボリー ホワイト", - "en": "Ivory White", - "ru": "Слоновья кость", - "it": "Bianco avorio", - "fr": "Blanc ivoire", - "hu": "Elefántcsontfehér", - "zh": "象牙白", - "nl": "Ivoorwit", - "es": "Blanco marfil" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "11103", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Knochenweiß", - "sv": "Benvit", - "pt": "Bone White", - "ko": "본 화이트", - "ja": "ボーン ホワイト", - "en": "Bone White", - "ru": "Белая кость", - "it": "Bianco osso", - "fr": "Blanc os", - "hu": "Csontfehér", - "zh": "骨白", - "nl": "Beenwit", - "es": "Blanco hueso" - }, - "fila_color": [ - "#CBC6B8FF" - ] - }, - { - "fila_color_code": "11400", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Zitronengelb", - "sv": "Citrongul", - "pt": "Amarelo-limão", - "ko": "레몬 옐로우", - "ja": "レモン イエロー", - "en": "Lemon Yellow", - "ru": "Лимонный", - "it": "Giallo limone", - "fr": "Jaune citron", - "hu": "Citromsárga", - "zh": "柠檬黄", - "nl": "Citroengeel", - "es": "Amarillo limón" - }, - "fila_color": [ - "#F7D959FF" - ] - }, - { - "fila_color_code": "11401", - "fila_id": "GFA01", - "fila_color_type": "单色", - "fila_type": "PLA Matte", - "fila_color_name": { - "de": "Wüstenbraun", - "sv": "Ökenbrun", - "pt": "Desert Tan", - "ko": "데저트 탄", - "ja": "デザート タン", - "en": "Desert Tan", - "ru": "Песочный загар", - "it": "Sabbia", - "fr": "Brun clair du désert", - "hu": "Sivatagi cser", - "zh": "沙漠黄", - "nl": "Woestijnbruin", - "es": "Arena del desierto" - }, - "fila_color": [ - "#E8DBB7FF" - ] - }, - { - "fila_color_code": "13601", - "fila_id": "GFA05", - "fila_color_type": "单色", - "fila_type": "PLA Silk", - "fila_color_name": { - "de": "Blau", - "sv": "Blå", - "pt": "Azul", - "ko": "블루", - "ja": "ブルー", - "en": "Blue", - "ru": "Синий", - "it": "Blu", - "fr": "Bleu", - "hu": "Kék", - "zh": "蓝色", - "nl": "Blauw", - "es": "Azul" - }, - "fila_color": [ - "#147BD1FF" - ] - }, - { - "fila_color_code": "13104", - "fila_id": "GFA05", - "fila_color_type": "单色", - "fila_type": "PLA Silk", - "fila_color_name": { - "de": "Silber", - "sv": "Silver", - "pt": "Prateado", - "ko": "실버", - "ja": "シルバー", - "en": "Silver", - "ru": "Серебристый", - "it": "Argento", - "fr": "Argenté", - "hu": "Ezüst", - "zh": "银色", - "nl": "Zilver", - "es": "Plateado" - }, - "fila_color": [ - "#EAECEBFF" - ] - }, - { - "fila_color_code": "13502", - "fila_id": "GFA05", - "fila_color_type": "单色", - "fila_type": "PLA Silk", - "fila_color_name": { - "de": "Grün", - "sv": "Grön", - "pt": "Verde", - "ko": "그린", - "ja": "グリーン", - "en": "Green", - "ru": "Зелёный", - "it": "Verde", - "fr": "Vert", - "hu": "Zöld", - "zh": "绿色", - "nl": "Groen", - "es": "Verde" - }, - "fila_color": [ - "#4CE4A0FF" - ] - }, - { - "fila_color_code": "13300", - "fila_id": "GFA05", - "fila_color_type": "单色", - "fila_type": "PLA Silk", - "fila_color_name": { - "de": "Kupfer", - "sv": "Koppar", - "pt": "Cobre", - "ko": "코퍼", - "ja": "カッパー", - "en": "Copper", - "ru": "Медный", - "it": "Rame", - "fr": "Cuivre", - "hu": "Réz", - "zh": "铜色", - "nl": "Koperkleurig", - "es": "Cobre" - }, - "fila_color": [ - "#5E4B3CFF" - ] - }, - { - "fila_color_code": "13202", - "fila_id": "GFA05", - "fila_color_type": "单色", - "fila_type": "PLA Silk", - "fila_color_name": { - "de": "Pink", - "sv": "Rosa", - "pt": "Rosa", - "ko": "핑크", - "ja": "ピンク", - "en": "Pink", - "ru": "Розовый", - "it": "Rosa", - "fr": "Rose", - "hu": "Rózsaszín", - "zh": "粉色", - "nl": "Roze", - "es": "Rosa" - }, - "fila_color": [ - "#EEB1C1FF" - ] - }, - { - "fila_color_code": "13701", - "fila_id": "GFA05", - "fila_color_type": "单色", - "fila_type": "PLA Silk", - "fila_color_name": { - "de": "Lila", - "sv": "Lila", - "pt": "Roxo", - "ko": "퍼플", - "ja": "パープル", - "en": "Purple", - "ru": "Пурпурный", - "it": "Viola", - "fr": "Violet", - "hu": "Lila", - "zh": "紫色", - "nl": "Paars", - "es": "Púrpura" - }, - "fila_color": [ - "#854CE4FF" - ] - }, - { - "fila_color_code": "13901", - "fila_id": "GFA05", - "fila_color_type": "多拼色", - "fila_type": "PLA Silk", - "fila_color_name": { - "de": "Goldenes Rosa", - "sv": "Gyllene ros", - "pt": "Rosa Dourada", - "ko": "길디드 로즈", - "ja": "ギルディッド ローズ", - "en": "Gilded Rose", - "ru": "Позолоченная роза", - "it": "Rosa con sfumature dorate", - "fr": "Rose doré", - "hu": "Aranyozott rózsa", - "zh": "金粉双色", - "nl": "Vergulde roos", - "es": "Rosa dorado" - }, - "fila_color": [ - "#FF9425FF", - "#C16784FF" - ] - }, - { - "fila_color_code": "13902", - "fila_id": "GFA05", - "fila_color_type": "多拼色", - "fila_type": "PLA Silk", - "fila_color_name": { - "de": "Mitternachtsglanz", - "sv": "Midnattsflamma", - "pt": "Midnight Blaze", - "ko": "미드나이트 블레이즈", - "ja": "ミッドナイト ブレイズ", - "en": "Midnight Blaze", - "ru": "Ночное пламя", - "it": "Midnight Blaze", - "fr": "Feu de minuit", - "hu": "Éjféli ragyogás", - "zh": "蓝红双色", - "nl": "Middernachtblauw", - "es": "Resplandor de medianoche" - }, - "fila_color": [ - "#0047BBFF", - "#7D1B49FF" - ] - }, - { - "fila_color_code": "13903", - "fila_id": "GFA05", - "fila_color_type": "多拼色", - "fila_type": "PLA Silk", - "fila_color_name": { - "de": "Neon City", - "sv": "Stadsljus", - "pt": "Cidade Neon", - "ko": "네온 시티", - "ja": "ネオン シティ", - "en": "Neon City", - "ru": "Неоновый город", - "it": "Neon City", - "fr": "Ville de Néon", - "hu": "Neonfény", - "zh": "蓝粉双色", - "nl": "Neonstad", - "es": "Ciudad de neón" - }, - "fila_color": [ - "#BB22A3FF", - "#0047BBFF" - ] - }, - { - "fila_color_code": "13904", - "fila_id": "GFA05", - "fila_color_type": "多拼色", - "fila_type": "PLA Silk", - "fila_color_name": { - "de": "Hawaii-Blau", - "sv": "Blå Hawaii", - "pt": "Blue Hawaii", - "ko": "블루 하와이", - "ja": "ブルー ハワイ", - "en": "Blue Hawaii", - "ru": "Гавайский голубой", - "it": "Blue Hawaii", - "fr": "Hawaï bleu", - "hu": "Kék Hawaii", - "zh": "蓝绿双色", - "nl": "Blauw Hawaï", - "es": "Azul Hawái" - }, - "fila_color": [ - "#70C884FF", - "#418FDEFF" - ] - }, - { - "fila_color_code": "13905", - "fila_id": "GFA05", - "fila_color_type": "多拼色", - "fila_type": "PLA Silk", - "fila_color_name": { - "de": "Dunkler Samt (Schwarz-Rot)", - "sv": "Sammetsglans (svart-röd)", - "pt": "Velvet Eclipse (Preto-Vermelho)", - "ko": "벨벳 이클립스(블랙-레드)", - "ja": "ベルベット エクリプス (ブラック レッド)", - "en": "Velvet Eclipse (Black-Red)", - "ru": "Бархатное затмение (чёрно-красный)", - "it": "Velvet Eclipse (nero/rosso)", - "fr": "Éclipse de velours (Noir-Rouge)", - "hu": "Bársony naplemente (fekete-piros)", - "zh": "灰烬红", - "nl": "Fluwelen zonsverduistering (zwart-rood)", - "es": "Eclipse de terciopelo (negro-rojo)" - }, - "fila_color": [ - "#000000FF", - "#A34342FF" - ] - }, - { - "fila_color_code": "13105", - "fila_id": "GFA05", - "fila_color_type": "单色", - "fila_type": "PLA Silk", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "白色", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "13401", - "fila_id": "GFA05", - "fila_color_type": "单色", - "fila_type": "PLA Silk", - "fila_color_name": { - "de": "Gold", - "sv": "Guld", - "pt": "Dourado", - "ko": "골드", - "ja": "ゴールド", - "en": "Gold", - "ru": "Золотой", - "it": "Oro", - "fr": "Doré", - "hu": "Arany", - "zh": "金色", - "nl": "Goud", - "es": "Dorado" - }, - "fila_color": [ - "#E5B03DFF" - ] - }, - { - "fila_color_code": "13603", - "fila_id": "GFA06", - "fila_color_type": "单色", - "fila_type": "PLA Silk+", - "fila_color_name": { - "de": "Babyblau", - "sv": "Babyblå", - "pt": "Azul-bebê", - "ko": "베이비 블루", - "ja": "ベイビー ブルー", - "en": "Baby Blue", - "ru": "Нежно-голубой", - "it": "Blu-turchese chiaro", - "fr": "Bleu layette", - "hu": "Babakék", - "zh": "天空蓝", - "nl": "Babyblauw", - "es": "Azul bebé" - }, - "fila_color": [ - "#A8C6EEFF" - ] - }, - { - "fila_color_code": "13604", - "fila_id": "GFA06", - "fila_color_type": "单色", - "fila_type": "PLA Silk+", - "fila_color_name": { - "de": "Blau", - "sv": "Blå", - "pt": "Azul", - "ko": "블루", - "ja": "ブルー", - "en": "Blue", - "ru": "Синий", - "it": "Blu", - "fr": "Bleu", - "hu": "Kék", - "zh": "丝绸蓝", - "nl": "Blauw", - "es": "Azul" - }, - "fila_color": [ - "#008BDAFF" - ] - }, - { - "fila_color_code": "13108", - "fila_id": "GFA06", - "fila_color_type": "单色", - "fila_type": "PLA Silk+", - "fila_color_name": { - "de": "Titangrau", - "sv": "Titangrå", - "pt": "Titan Gray", - "ko": "타이탄 그레이", - "ja": "チタン グレー", - "en": "Titan Gray", - "ru": "Титановый", - "it": "Grigio titanio", - "fr": "Gris titane", - "hu": "Titánszürke", - "zh": "钛灰色", - "nl": "Titaangrijs", - "es": "Gris titán" - }, - "fila_color": [ - "#5F6367FF" - ] - }, - { - "fila_color_code": "13109", - "fila_id": "GFA06", - "fila_color_type": "单色", - "fila_type": "PLA Silk+", - "fila_color_name": { - "de": "Silber", - "sv": "Silver", - "pt": "Prateado", - "ko": "실버", - "ja": "シルバー", - "en": "Silver", - "ru": "Серебристый", - "it": "Argento", - "fr": "Argenté", - "hu": "Ezüst", - "zh": "丝绸银", - "nl": "Zilver", - "es": "Plateado" - }, - "fila_color": [ - "#C8C8C8FF" - ] - }, - { - "fila_color_code": "13506", - "fila_id": "GFA06", - "fila_color_type": "单色", - "fila_type": "PLA Silk+", - "fila_color_name": { - "de": "Candy-Grün", - "sv": "Godisgrön", - "pt": "Candy Green", - "ko": "캔디 그린", - "ja": "キャンディ グリーン", - "en": "Candy Green", - "ru": "Зелёный леденец", - "it": "Verde caramella", - "fr": "Vert bonbon", - "hu": "Cukorkazöld", - "zh": "糖果绿", - "nl": "Snoepgroen", - "es": "Verde caramelo" - }, - "fila_color": [ - "#018814FF" - ] - }, - { - "fila_color_code": "13507", - "fila_id": "GFA06", - "fila_color_type": "单色", - "fila_type": "PLA Silk+", - "fila_color_name": { - "de": "Minze", - "sv": "Mint", - "pt": "Menta", - "ko": "민트", - "ja": "ミント", - "en": "Mint", - "ru": "Мятный", - "it": "Menta", - "fr": "Menthe", - "hu": "Menta", - "zh": "薄荷绿", - "nl": "Munt", - "es": "Menta" - }, - "fila_color": [ - "#96DCB9FF" - ] - }, - { - "fila_color_code": "13702", - "fila_id": "GFA06", - "fila_color_type": "单色", - "fila_type": "PLA Silk+", - "fila_color_name": { - "de": "Lila", - "sv": "Lila", - "pt": "Roxo", - "ko": "퍼플", - "ja": "パープル", - "en": "Purple", - "ru": "Пурпурный", - "it": "Viola", - "fr": "Violet", - "hu": "Lila", - "zh": "丝绸紫", - "nl": "Paars", - "es": "Púrpura" - }, - "fila_color": [ - "#8671CBFF" - ] - }, - { - "fila_color_code": "13205", - "fila_id": "GFA06", - "fila_color_type": "单色", - "fila_type": "PLA Silk+", - "fila_color_name": { - "de": "Candy-Rot", - "sv": "Godisröd", - "pt": "Candy Red", - "ko": "캔디 레드", - "ja": "キャンディ レッド", - "en": "Candy Red", - "ru": "Красный леденец", - "it": "Rosso caramella", - "fr": "Rouge bonbon", - "hu": "Cukorkapiros", - "zh": "糖果红", - "nl": "Snoeprood", - "es": "Rojo caramelo" - }, - "fila_color": [ - "#D02727FF" - ] - }, - { - "fila_color_code": "13206", - "fila_id": "GFA06", - "fila_color_type": "单色", - "fila_type": "PLA Silk+", - "fila_color_name": { - "de": "Gold-Rosa", - "sv": "Rödguld", - "pt": "Ouro Rosa", - "ko": "로즈 골드", - "ja": "ローズ ゴールド", - "en": "Rose Gold", - "ru": "Розовое золото", - "it": "Oro rosa", - "fr": "Doré rose", - "hu": "Rózsaarany", - "zh": "烟粉色", - "nl": "Roségoud", - "es": "Oro rosa" - }, - "fila_color": [ - "#BA9594FF" - ] - }, - { - "fila_color_code": "13207", - "fila_id": "GFA06", - "fila_color_type": "单色", - "fila_type": "PLA Silk+", - "fila_color_name": { - "de": "Pink", - "sv": "Rosa", - "pt": "Rosa", - "ko": "핑크", - "ja": "ピンク", - "en": "Pink", - "ru": "Розовый", - "it": "Rosa", - "fr": "Rose", - "hu": "Rózsaszín", - "zh": "丝绸粉", - "nl": "Roze", - "es": "Rosa" - }, - "fila_color": [ - "#F7ADA6FF" - ] - }, - { - "fila_color_code": "13110", - "fila_id": "GFA06", - "fila_color_type": "单色", - "fila_type": "PLA Silk+", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "丝绸白", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "13404", - "fila_id": "GFA06", - "fila_color_type": "单色", - "fila_type": "PLA Silk+", - "fila_color_name": { - "de": "Champagner", - "sv": "Champagne", - "pt": "Champagne", - "ko": "샴페인", - "ja": "シャンパン", - "en": "Champagne", - "ru": "Шампань", - "it": "Champagne", - "fr": "Champagne", - "hu": "Pezsgő", - "zh": "香槟色", - "nl": "Champagne", - "es": "Champán" - }, - "fila_color": [ - "#F3CFB2FF" - ] - }, - { - "fila_color_code": "13405", - "fila_id": "GFA06", - "fila_color_type": "单色", - "fila_type": "PLA Silk+", - "fila_color_name": { - "de": "Gold", - "sv": "Guld", - "pt": "Dourado", - "ko": "골드", - "ja": "ゴールド", - "en": "Gold", - "ru": "Золотистый", - "it": "Oro", - "fr": "Doré", - "hu": "Arany", - "zh": "丝绸金", - "nl": "Goud", - "es": "Dorado" - }, - "fila_color": [ - "#F4A925FF" - ] - }, - { - "fila_color_code": "13103", - "fila_id": "GFA07", - "fila_color_type": "单色", - "fila_type": "PLA Marble", - "fila_color_name": { - "de": "Weißer Marmor", - "sv": "Vit marmor", - "pt": "Mármore Branco", - "ko": "화이트 마블", - "ja": "ホワイト マーブル", - "en": "White Marble", - "ru": "Белый мрамор", - "it": "Marmo bianco", - "fr": "Marbre blanc", - "hu": "Fehér márvány", - "zh": "大理石", - "nl": "Wit marmer", - "es": "Mármol blanco" - }, - "fila_color": [ - "#F7F3F0FF" - ] - }, - { - "fila_color_code": "13201", - "fila_id": "GFA07", - "fila_color_type": "单色", - "fila_type": "PLA Marble", - "fila_color_name": { - "de": "Granitrot", - "sv": "Röd granit", - "pt": "Granito Vermelho", - "ko": "레드 그래나이트", - "ja": "レッド グラナイト", - "en": "Red Granite", - "ru": "Красный гранит", - "it": "Rosso granito", - "fr": "Granit rouge", - "hu": "Vörös gránit", - "zh": "砖红", - "nl": "Rood graniet", - "es": "Granate rojo" - }, - "fila_color": [ - "#AD4E38FF" - ] - }, - { - "fila_color_code": "13700", - "fila_id": "GFA08", - "fila_color_type": "单色", - "fila_type": "PLA Sparkle", - "fila_color_name": { - "de": "Glitzerndes Königslila", - "sv": "Kungslila glans", - "pt": "Royal Purple Sparkle", - "ko": "로얄 퍼플 스파클", - "ja": "ロイヤル パープル スパークル", - "en": "Royal Purple Sparkle", - "ru": "Королевский фиолетовый", - "it": "Viola reale con brillantini", - "fr": "Violet royal scintillant", - "hu": "Csillámló királyi lila", - "zh": "深蓝", - "nl": "Sprankelend koningspaars", - "es": "Púrpura real brillante" - }, - "fila_color": [ - "#483D8BFF" - ] - }, - { - "fila_color_code": "13102", - "fila_id": "GFA08", - "fila_color_type": "单色", - "fila_type": "PLA Sparkle", - "fila_color_name": { - "de": "Glitzerndes Schiefergrau", - "sv": "Granitgrå glans", - "pt": "Slate Gray Sparkle", - "ko": "슬레이트 그레이 스파클", - "ja": "スレート グレース パークル", - "en": "Slate Gray Sparkle", - "ru": "Сланцево-серый", - "it": "Grigio ardesia con brillantini", - "fr": "Gris ardoise scintillant", - "hu": "Csillámló palaszürke", - "zh": "灰色", - "nl": "Sprankelend leigrijs", - "es": "Gris pizarra brillante" - }, - "fila_color": [ - "#8E9089FF" - ] - }, - { - "fila_color_code": "13501", - "fila_id": "GFA08", - "fila_color_type": "单色", - "fila_type": "PLA Sparkle", - "fila_color_name": { - "de": "Glitzerndes Alpengrün", - "sv": "Alpingrön glans", - "pt": "Alpine Green Sparkle", - "ko": "알파인 그린 스파클", - "ja": "アルパイン グリーン スパークル", - "en": "Alpine Green Sparkle", - "ru": "Альпийский зелёный", - "it": "Verde alpino con brillantini", - "fr": "Vert alpin scintillant", - "hu": "Alpesi csillogó zöld", - "zh": "绿色", - "nl": "Sprankelend alpengroen", - "es": "Verde alpino brillante" - }, - "fila_color": [ - "#3F5443FF" - ] - }, - { - "fila_color_code": "13101", - "fila_id": "GFA08", - "fila_color_type": "单色", - "fila_type": "PLA Sparkle", - "fila_color_name": { - "de": "Glitzerndes Onyx-Schwarz", - "sv": "Onyxsvart glans", - "pt": "Onyx Black Sparkle", - "ko": "오닉스 블랙 스파클", - "ja": "オニキス ブラック スパークル", - "en": "Onyx Black Sparkle", - "ru": "Чёрный оникс", - "it": "Nero onice con brillantini", - "fr": "Onyx noir scintillant", - "hu": "Csillámló ónixfekete", - "zh": "黑色", - "nl": "Sprankelend onyxzwart", - "es": "Negro ónix brillante" - }, - "fila_color": [ - "#2D2B28FF" - ] - }, - { - "fila_color_code": "13200", - "fila_id": "GFA08", - "fila_color_type": "单色", - "fila_type": "PLA Sparkle", - "fila_color_name": { - "de": "Glitzerndes Karminrot", - "sv": "Mörkröd glans", - "pt": "Crimson Red Sparkle", - "ko": "크림슨 레드 스파클", - "ja": "クリムゾン レッド スパークル", - "en": "Crimson Red Sparkle", - "ru": "Багровый красный", - "it": "Rosso cremisi con brillantini", - "fr": "Pourpre scintillant", - "hu": "Csillámló bíborvörös", - "zh": "红色", - "nl": "Sprankelend karmozijnrood", - "es": "Rojo carmesí brillante" - }, - "fila_color": [ - "#792B36FF" - ] - }, - { - "fila_color_code": "13402", - "fila_id": "GFA08", - "fila_color_type": "单色", - "fila_type": "PLA Sparkle", - "fila_color_name": { - "de": "Klassisches Glitzer-Gold", - "sv": "Klassisk guld glans", - "pt": "Classic Gold Sparkle", - "ko": "클래식 골드 스파클", - "ja": "クラシック ゴールド スパークル", - "en": "Classic Gold Sparkle", - "ru": "Античное золото", - "it": "Oro con brillantini", - "fr": "Doré classique scintillant", - "hu": "Klasszikus csillogó arany", - "zh": "金色", - "nl": "Sprankelend klassiek goud", - "es": "Dorado clásico brillante" - }, - "fila_color": [ - "#CEA629FF" - ] - }, - { - "fila_color_code": "12300", - "fila_id": "GFA09", - "fila_color_type": "单色", - "fila_type": "PLA Tough", - "fila_color_name": { - "de": "Orange", - "sv": "Orange", - "pt": "Laranja", - "ko": "오렌지", - "ja": "オレンジ", - "en": "Orange", - "ru": "Оранжевый", - "it": "Arancione", - "fr": "Orange", - "hu": "Narancssárga", - "zh": "橙色", - "nl": "Oranje", - "es": "Naranja" - }, - "fila_color": [ - "#FF7F41FF" - ] - }, - { - "fila_color_code": "12600", - "fila_id": "GFA09", - "fila_color_type": "单色", - "fila_type": "PLA Tough", - "fila_color_name": { - "de": "Hellblau", - "sv": "Ljusblå", - "pt": "Azul-claro", - "ko": "라이트 블루", - "ja": "ライト ブルー", - "en": "Light Blue", - "ru": "Голубой", - "it": "Azzurro chiaro", - "fr": "Bleu clair", - "hu": "Világoskék", - "zh": "浅蓝", - "nl": "Lichtblauw", - "es": "Azul claro" - }, - "fila_color": [ - "#0085ADFF" - ] - }, - { - "fila_color_code": "12700", - "fila_id": "GFA09", - "fila_color_type": "单色", - "fila_type": "PLA Tough", - "fila_color_name": { - "de": "Lavendelblau", - "sv": "Lavendelblå", - "pt": "Azul-lavanda", - "ko": "라벤더 블루", - "ja": "ラベンダー ブルー", - "en": "Lavender Blue", - "ru": "Лавандовый", - "it": "Blu lavanda", - "fr": "Bleu lavande", - "hu": "Levendulakék", - "zh": "薰衣草紫", - "nl": "Lavendelblauw", - "es": "Azul lavanda" - }, - "fila_color": [ - "#6667ABFF" - ] - }, - { - "fila_color_code": "12102", - "fila_id": "GFA09", - "fila_color_type": "单色", - "fila_type": "PLA Tough", - "fila_color_name": { - "de": "Grau", - "sv": "Grå", - "pt": "Cinza", - "ko": "그레이", - "ja": "グレー", - "en": "Gray", - "ru": "Серый", - "it": "Grigio", - "fr": "Gris", - "hu": "Szürke", - "zh": "灰色", - "nl": "Grijs", - "es": "Gris" - }, - "fila_color": [ - "#515A6CFF" - ] - }, - { - "fila_color_code": "12103", - "fila_id": "GFA09", - "fila_color_type": "单色", - "fila_type": "PLA Tough", - "fila_color_name": { - "de": "Silber", - "sv": "Silver", - "pt": "Prateado", - "ko": "실버", - "ja": "シルバー", - "en": "Silver", - "ru": "Серебристый", - "it": "Argento", - "fr": "Argenté", - "hu": "Ezüst", - "zh": "银色", - "nl": "Zilver", - "es": "Plateado" - }, - "fila_color": [ - "#898D8DFF" - ] - }, - { - "fila_color_code": "12500", - "fila_id": "GFA09", - "fila_color_type": "单色", - "fila_type": "PLA Tough", - "fila_color_name": { - "de": "Tannengrün", - "sv": "Pinjegrön", - "pt": "Pinho Verde", - "ko": "파인 그린", - "ja": "パイン グリーン", - "en": "Pine Green", - "ru": "Зелёная сосна", - "it": "Verde pino", - "fr": "Vert pin", - "hu": "Fenyőzöld", - "zh": "松绿", - "nl": "Dennengroen", - "es": "Verde pino" - }, - "fila_color": [ - "#00482BFF" - ] - }, - { - "fila_color_code": "12101", - "fila_id": "GFA09", - "fila_color_type": "单色", - "fila_type": "PLA Tough", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#25282AFF" - ] - }, - { - "fila_color_code": "12200", - "fila_id": "GFA09", - "fila_color_type": "单色", - "fila_type": "PLA Tough", - "fila_color_name": { - "de": "Zinnoberrot", - "sv": "Vermilionröd", - "pt": "Vermelho Vermilion", - "ko": "버밀리언 레드", - "ja": "バーミリオン レッド", - "en": "Vermilion Red", - "ru": "Киноварь", - "it": "Rosso vermiglio", - "fr": "Rouge vermillon", - "hu": "Cinóbervörös", - "zh": "朱砂红", - "nl": "Vermiljoenrood", - "es": "Rojo bermellón" - }, - "fila_color": [ - "#DD3C22FF" - ] - }, - { - "fila_color_code": "12100", - "fila_id": "GFA09", - "fila_color_type": "单色", - "fila_type": "PLA Tough", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "白色", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#F9F7F4FF" - ] - }, - { - "fila_color_code": "12400", - "fila_id": "GFA09", - "fila_color_type": "单色", - "fila_type": "PLA Tough", - "fila_color_name": { - "de": "Gelb", - "sv": "Gul", - "pt": "Amarelo", - "ko": "옐로우", - "ja": "イエロー", - "en": "Yellow", - "ru": "Жёлтый", - "it": "Giallo", - "fr": "Jaune", - "hu": "Sárga", - "zh": "黄色", - "nl": "Geel", - "es": "Amarillo" - }, - "fila_color": [ - "#FEDB00FF" - ] - }, - { - "fila_color_code": "14104", - "fila_id": "GFA11", - "fila_color_type": "单色", - "fila_type": "PLA Aero", - "fila_color_name": { - "de": "Grau", - "sv": "Grå", - "pt": "Cinza", - "ko": "그레이", - "ja": "グレー", - "en": "Gray", - "ru": "Серый", - "it": "Grigio", - "fr": "Gris", - "hu": "Szürke", - "zh": "灰色", - "nl": "Grijs", - "es": "Gris" - }, - "fila_color": [ - "#CDCECAFF" - ] - }, - { - "fila_color_code": "14103", - "fila_id": "GFA11", - "fila_color_type": "单色", - "fila_type": "PLA Aero", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "14102", - "fila_id": "GFA11", - "fila_color_type": "单色", - "fila_type": "PLA Aero", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "白色", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "15300", - "fila_id": "GFA12", - "fila_color_type": "单色", - "fila_type": "PLA Glow", - "fila_color_name": { - "de": "Leuchtend-Orange", - "sv": "Orange glöd", - "pt": "Brilho Laranja", - "ko": "글로우 오렌지", - "ja": "グロー オレンジ", - "en": "Glow Orange", - "ru": "Оранжевый", - "it": "Arancione fosforescente", - "fr": "Orange éclatant", - "hu": "Ragyogó narancssárga", - "zh": "夜光橙", - "nl": "Oranje gloed", - "es": "Naranja brillante" - }, - "fila_color": [ - "#FF9D5BFF" - ] - }, - { - "fila_color_code": "15600", - "fila_id": "GFA12", - "fila_color_type": "单色", - "fila_type": "PLA Glow", - "fila_color_name": { - "de": "Leuchtend-Blau", - "sv": "Blå glöd", - "pt": "Brilho Azul", - "ko": "글로우 블루", - "ja": "グロー ブルー", - "en": "Glow Blue", - "ru": "Синий", - "it": "Blu fosforescente", - "fr": "Bleu éclatant", - "hu": "Ragyogó kék", - "zh": "夜光蓝", - "nl": "Blauwe gloed", - "es": "Azul brillante" - }, - "fila_color": [ - "#7AC0E9FF" - ] - }, - { - "fila_color_code": "15500", - "fila_id": "GFA12", - "fila_color_type": "单色", - "fila_type": "PLA Glow", - "fila_color_name": { - "de": "Leuchtend-Grün", - "sv": "Grön glöd", - "pt": "Brilho Verde", - "ko": "글로우 그린", - "ja": "グロー グリーン", - "en": "Glow Green", - "ru": "Зелёный", - "it": "Verde fosforescente", - "fr": "Vert éclatant", - "hu": "Ragyogó zöld", - "zh": "夜光绿", - "nl": "Groene gloed", - "es": "Verde brillante" - }, - "fila_color": [ - "#A1FFACFF" - ] - }, - { - "fila_color_code": "15200", - "fila_id": "GFA12", - "fila_color_type": "单色", - "fila_type": "PLA Glow", - "fila_color_name": { - "de": "Leuchtend-Pink", - "sv": "Rosa glöd", - "pt": "Rosa Brilhante", - "ko": "글로우 핑크", - "ja": "グロー ピンク", - "en": "Glow Pink", - "ru": "Розовый", - "it": "Rosa fosforescente", - "fr": "Rose éclatant", - "hu": "Ragyogó rózsaszín", - "zh": "夜光粉", - "nl": "Roze gloed", - "es": "Rosa brillante" - }, - "fila_color": [ - "#F17B8FFF" - ] - }, - { - "fila_color_code": "15400", - "fila_id": "GFA12", - "fila_color_type": "单色", - "fila_type": "PLA Glow", - "fila_color_name": { - "de": "Leuchtend-Gelb", - "sv": "Gul glöd", - "pt": "Amarelo Brilhante", - "ko": "글로우 옐로우", - "ja": "グロー イエロー", - "en": "Glow Yellow", - "ru": "Жёлтый", - "it": "Giallo fosforescente", - "fr": "Jaune éclatant", - "hu": "Ragyogó sárga", - "zh": "夜光黄", - "nl": "Gele gloed", - "es": "Amarillo brillante" - }, - "fila_color": [ - "#F8FF80FF" - ] - }, - { - "fila_color_code": "15100", - "fila_id": "GFA13", - "fila_color_type": "单色", - "fila_type": "PLA Dynamic", - "fila_color_name": { - "de": "UV-Farbwechsel – Weiß nach Koralle", - "sv": "UV-toning - vit till korall", - "pt": "Mudança de cor UV — Branco para coral", - "ko": "UV 컬러 변경 - 화이트에서 코랄로", - "ja": "UV カラー チェンジ - ホワイトからコーラル", - "en": "UV Color Changing - White to Coral", - "ru": "Белый→коралловый (под ультрафиалетом)", - "it": "Cambia colore con l'esposizione ai raggi UV - Da bianco a corallo", - "fr": "Changement de couleur UV - Blanc à corail", - "hu": "UV-színváltó – fehérről korallra", - "zh": "光变-白变粉", - "nl": "UV-kleurverandering: wit naar koraal", - "es": "De blanco a coral (Cambia con los rayos UV)" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "13602", - "fila_id": "GFA15", - "fila_color_type": "单色", - "fila_type": "PLA Galaxy", - "fila_color_name": { - "de": "Lila", - "sv": "Lila", - "pt": "Roxo", - "ko": "퍼플", - "ja": "パープル", - "en": "Purple", - "ru": "Пурпурный", - "it": "Viola", - "fr": "Violet", - "hu": "Lila", - "zh": "星河紫", - "nl": "Paars", - "es": "Púrpura" - }, - "fila_color": [ - "#594177FF" - ] - }, - { - "fila_color_code": "13503", - "fila_id": "GFA15", - "fila_color_type": "单色", - "fila_type": "PLA Galaxy", - "fila_color_name": { - "de": "Grün", - "sv": "Grön", - "pt": "Verde", - "ko": "그린", - "ja": "グリーン", - "en": "Green", - "ru": "Зелёный", - "it": "Verde", - "fr": "Vert", - "hu": "Zöld", - "zh": "星河绿", - "nl": "Groen", - "es": "Verde" - }, - "fila_color": [ - "#3B665EFF" - ] - }, - { - "fila_color_code": "13504", - "fila_id": "GFA15", - "fila_color_type": "单色", - "fila_type": "PLA Galaxy", - "fila_color_name": { - "de": "Nebel", - "sv": "Nebulosor", - "pt": "Nebulae", - "ko": "네뷸라", - "ja": "ネビュリー", - "en": "Nebulae", - "ru": "Туманность", - "it": "Nebula", - "fr": "Nébuleuse", - "hu": "Űrbéli ködök", - "zh": "星云色", - "nl": "Nevelig", - "es": "Nebulosa" - }, - "fila_color": [ - "#424379FF" - ] - }, - { - "fila_color_code": "13203", - "fila_id": "GFA15", - "fila_color_type": "单色", - "fila_type": "PLA Galaxy", - "fila_color_name": { - "de": "Braun", - "sv": "Brun", - "pt": "Marrom", - "ko": "브라운", - "ja": "ブラウン", - "en": "Brown", - "ru": "Коричневый", - "it": "Marrone", - "fr": "Marron", - "hu": "Barna", - "zh": "星河棕", - "nl": "Bruin", - "es": "Marrón" - }, - "fila_color": [ - "#684A43FF" - ] - }, - { - "fila_color_code": "13505", - "fila_id": "GFA16", - "fila_color_type": "单色", - "fila_type": "PLA Wood", - "fila_color_name": { - "de": "Klassische Birke", - "sv": "Klassisk björk", - "pt": "Classic Birch", - "ko": "클래식 버치", - "ja": "クラシック バーチ", - "en": "Classic Birch", - "ru": "Берёза", - "it": "Betulla", - "fr": "Bouleau classique", - "hu": "Klasszikus nyírfa", - "zh": "经典桦木", - "nl": "Klassieke berk", - "es": "Abedul clásico" - }, - "fila_color": [ - "#918669FF" - ] - }, - { - "fila_color_code": "13107", - "fila_id": "GFA16", - "fila_color_type": "单色", - "fila_type": "PLA Wood", - "fila_color_name": { - "de": "Schwarze Walnuss", - "sv": "Svart valnöt", - "pt": "Noz preta", - "ko": "블랙 월넛", - "ja": "ブラック ウォールナット", - "en": "Black Walnut", - "ru": "Чёрный орех", - "it": "Noce nero", - "fr": "Noyer noir", - "hu": "Fekete dió", - "zh": "黑胡桃", - "nl": "Walnootzwart", - "es": "Nogal negro" - }, - "fila_color": [ - "#4F3F24FF" - ] - }, - { - "fila_color_code": "13801", - "fila_id": "GFA16", - "fila_color_type": "单色", - "fila_type": "PLA Wood", - "fila_color_name": { - "de": "Lehmbraun", - "sv": "Lerbrun", - "pt": "Clay Brown", - "ko": "클레이 브라운", - "ja": "クレイ ブラウン", - "en": "Clay Brown", - "ru": "Коричневая глина", - "it": "Marrone argilla", - "fr": "Marron argile", - "hu": "Agyagbarna", - "zh": "陶土褐", - "nl": "Modderbruin", - "es": "Marrón arcilla" - }, - "fila_color": [ - "#995F11FF" - ] - }, - { - "fila_color_code": "13204", - "fila_id": "GFA16", - "fila_color_type": "单色", - "fila_type": "PLA Wood", - "fila_color_name": { - "de": "Rosenholz", - "sv": "Rosenträ", - "pt": "Jacarandá", - "ko": "로즈우드", - "ja": "ローズウッド", - "en": "Rosewood", - "ru": "Палисандр", - "it": "Palissandro", - "fr": "Palissandre", - "hu": "Rózsafa", - "zh": "红木", - "nl": "Rozenhout", - "es": "Palo de rosa" - }, - "fila_color": [ - "#4C241CFF" - ] - }, - { - "fila_color_code": "13106", - "fila_id": "GFA16", - "fila_color_type": "单色", - "fila_type": "PLA Wood", - "fila_color_name": { - "de": "Weiße Eiche", - "sv": "Vit ek", - "pt": "Carvalho Branco", - "ko": "화이트 오크", - "ja": "ホワイト オーク", - "en": "White Oak", - "ru": "Белый дуб", - "it": "Rovere bianco", - "fr": "Chêne blanc", - "hu": "Fehér tölgy", - "zh": "白橡木", - "nl": "Wit eiken", - "es": "Roble blanco" - }, - "fila_color": [ - "#D6CCA3FF" - ] - }, - { - "fila_color_code": "13403", - "fila_id": "GFA16", - "fila_color_type": "单色", - "fila_type": "PLA Wood", - "fila_color_name": { - "de": "Ockergelb", - "sv": "Ockragul", - "pt": "Amarelo-ocre", - "ko": "오커 옐로우", - "ja": "オーカー イエロー", - "en": "Ochre Yellow", - "ru": "Охра", - "it": "Giallo ocra", - "fr": "Jaune ocre", - "hu": "Okkersárga", - "zh": "赭石黄", - "nl": "Okergeel", - "es": "Amarillo ocre" - }, - "fila_color": [ - "#C98935FF" - ] - }, - { - "fila_color_code": "14601", - "fila_id": "GFA50", - "fila_color_type": "单色", - "fila_type": "PLA-CF", - "fila_color_name": { - "de": "Königsblau", - "sv": "Kungsblå", - "pt": "Azul Royal", - "ko": "로얄 블루", - "ja": "ロイヤル ブルー", - "en": "Royal Blue", - "ru": "Королевский синий", - "it": "Blu royal", - "fr": "Bleu royal", - "hu": "Királykék", - "zh": "皇家蓝", - "nl": "Koningsblauw", - "es": "Azul real" - }, - "fila_color": [ - "#2842ADFF" - ] - }, - { - "fila_color_code": "14600", - "fila_id": "GFA50", - "fila_color_type": "单色", - "fila_type": "PLA-CF", - "fila_color_name": { - "de": "Jeansblau", - "sv": "Jeansblå", - "pt": "Jeans Azul", - "ko": "진 블루", - "ja": "ジーンズ ブルー", - "en": "Jeans Blue", - "ru": "Джинсовый", - "it": "Blu jeans", - "fr": "Jean bleu", - "hu": "Farmerkék", - "zh": "牛仔蓝", - "nl": "Jeansblauw", - "es": "Azul vaquero" - }, - "fila_color": [ - "#6e88bcFF" - ] - }, - { - "fila_color_code": "14101", - "fila_id": "GFA50", - "fila_color_type": "单色", - "fila_type": "PLA-CF", - "fila_color_name": { - "de": "Lava-Grau", - "sv": "Lavagrå", - "pt": "Lava Cinza", - "ko": "라바 그레이", - "ja": "ラバ グレー", - "en": "Lava Gray", - "ru": "Лавово-серый", - "it": "Grigio lava", - "fr": "Gris lave", - "hu": "Lávaszürke", - "zh": "熔岩灰", - "nl": "Lavagrijs", - "es": "Gris lava" - }, - "fila_color": [ - "#4d5054FF" - ] - }, - { - "fila_color_code": "14500", - "fila_id": "GFA50", - "fila_color_type": "单色", - "fila_type": "PLA-CF", - "fila_color_name": { - "de": "Matcha-Grün", - "sv": "Matchagrön", - "pt": "Matcha Green", - "ko": "마차 그린", - "ja": "抹茶グリーン", - "en": "Matcha Green", - "ru": "Зелёный чай", - "it": "Verde matcha", - "fr": "Vert matcha", - "hu": "Matchazöld", - "zh": "抹茶绿", - "nl": "Matchagroen", - "es": "Verde matcha" - }, - "fila_color": [ - "#5c9748FF" - ] - }, - { - "fila_color_code": "14100", - "fila_id": "GFA50", - "fila_color_type": "单色", - "fila_type": "PLA-CF", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "14700", - "fila_id": "GFA50", - "fila_color_type": "单色", - "fila_type": "PLA-CF", - "fila_color_name": { - "de": "Iris-Violett", - "sv": "Irislila", - "pt": "Íris Roxa", - "ko": "아이리스 퍼플", - "ja": "アイリス パープル", - "en": "Iris Purple", - "ru": "Фиолетовый ирис", - "it": "Viola iris", - "fr": "Violet iris", - "hu": "Íriszlila", - "zh": "鸢尾花紫", - "nl": "Irispaars", - "es": "Púrpura iris" - }, - "fila_color": [ - "#69398EFF" - ] - }, - { - "fila_color_code": "14200", - "fila_id": "GFA50", - "fila_color_type": "单色", - "fila_type": "PLA-CF", - "fila_color_name": { - "de": "Burgunderrot", - "sv": "Vinröd", - "pt": "Burgundy Red", - "ko": "버건디 레드", - "ja": "バーガンディ レッド", - "en": "Burgundy Red", - "ru": "Красное вино", - "it": "Rosso borgogna", - "fr": "Rouge bordeaux", - "hu": "Bordó-vörös", - "zh": "勃艮第红", - "nl": "Wijnrood", - "es": "Rojo burdeos" - }, - "fila_color": [ - "#951e23FF" - ] - }, - { - "fila_color_code": "40300", - "fila_id": "GFB00", - "fila_color_type": "单色", - "fila_type": "ABS", - "fila_color_name": { - "de": "Orange", - "sv": "Orange", - "pt": "Laranja", - "ko": "오렌지", - "ja": "オレンジ", - "en": "Orange", - "ru": "Оранжевый", - "it": "Arancione", - "fr": "Orange", - "hu": "Narancssárga", - "zh": "橙色", - "nl": "Oranje", - "es": "Naranja" - }, - "fila_color": [ - "#FF6A13FF" - ] - }, - { - "fila_color_code": "40600", - "fila_id": "GFB00", - "fila_color_type": "单色", - "fila_type": "ABS", - "fila_color_name": { - "de": "Blau", - "sv": "Blå", - "pt": "Azul", - "ko": "블루", - "ja": "ブルー", - "en": "Blue", - "ru": "Синий", - "it": "Blu", - "fr": "Bleu", - "hu": "Kék", - "zh": "蓝色", - "nl": "Blauw", - "es": "Azul" - }, - "fila_color": [ - "#0A2CA5FF" - ] - }, - { - "fila_color_code": "40601", - "fila_id": "GFB00", - "fila_color_type": "单色", - "fila_type": "ABS", - "fila_color_name": { - "de": "Azurblau", - "sv": "Azurblå", - "pt": "Azure", - "ko": "애저", - "ja": "アズール", - "en": "Azure", - "ru": "Лазурь", - "it": "Azzurro", - "fr": "Bleu azur", - "hu": "Azúr", - "zh": "天蓝色", - "nl": "Azuurblauw", - "es": "Azul celeste" - }, - "fila_color": [ - "#489FDFFF" - ] - }, - { - "fila_color_code": "40602", - "fila_id": "GFB00", - "fila_color_type": "单色", - "fila_type": "ABS", - "fila_color_name": { - "de": "Marineblau", - "sv": "Marinblå", - "pt": "Azul-marinho", - "ko": "네이비 블루", - "ja": "ネイビー ブルー", - "en": "Navy Blue", - "ru": "Тёмно-синий", - "it": "Blu navy", - "fr": "Bleu marine", - "hu": "Tengerészkék", - "zh": "藏青色", - "nl": "Marineblauw", - "es": "Azul marino oscuro" - }, - "fila_color": [ - "#0C2340FF" - ] - }, - { - "fila_color_code": "40501", - "fila_id": "GFB00", - "fila_color_type": "单色", - "fila_type": "ABS", - "fila_color_name": { - "de": "Minze", - "sv": "Mint", - "pt": "Menta", - "ko": "민트", - "ja": "ミント", - "en": "Mint", - "ru": "Мятный", - "it": "Menta", - "fr": "Menthe", - "hu": "Menta", - "zh": "青色", - "nl": "Munt", - "es": "Menta" - }, - "fila_color": [ - "#7AE1BFFF" - ] - }, - { - "fila_color_code": "40102", - "fila_id": "GFB00", - "fila_color_type": "单色", - "fila_type": "ABS", - "fila_color_name": { - "de": "Silber", - "sv": "Silver", - "pt": "Prateado", - "ko": "실버", - "ja": "シルバー", - "en": "Silver", - "ru": "Серебристый", - "it": "Argento", - "fr": "Argenté", - "hu": "Ezüst", - "zh": "银色", - "nl": "Zilver", - "es": "Plateado" - }, - "fila_color": [ - "#87909AFF" - ] - }, - { - "fila_color_code": "40500", - "fila_id": "GFB00", - "fila_color_type": "单色", - "fila_type": "ABS", - "fila_color_name": { - "de": "Bambusgrün", - "sv": "Bambugrön", - "pt": "Verde-bambu", - "ko": "뱀부 그린", - "ja": "バンブー グリーン", - "en": "Bambu Green", - "ru": "Зелёный бамбук", - "it": "Verde bambù", - "fr": "Vert bambou", - "hu": "Bambu-zöld", - "zh": "拓竹绿", - "nl": "Bamboegroen", - "es": "Verde bambú" - }, - "fila_color": [ - "#00AE42FF" - ] - }, - { - "fila_color_code": "40502", - "fila_id": "GFB00", - "fila_color_type": "单色", - "fila_type": "ABS", - "fila_color_name": { - "de": "Olive", - "sv": "Oliv", - "pt": "Olive", - "ko": "올리브", - "ja": "オリーブ", - "en": "Olive", - "ru": "Оливковый", - "it": "Oliva", - "fr": "Olive", - "hu": "Olivazöld", - "zh": "橄榄绿", - "nl": "Olijf", - "es": "Oliva" - }, - "fila_color": [ - "#789D4AFF" - ] - }, - { - "fila_color_code": "40101", - "fila_id": "GFB00", - "fila_color_type": "单色", - "fila_type": "ABS", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "40701", - "fila_id": "GFB00", - "fila_color_type": "单色", - "fila_type": "ABS", - "fila_color_name": { - "de": "Lavendel", - "sv": "Lavendel", - "pt": "Lavanda", - "ko": "라벤더", - "ja": "ラベンダー", - "en": "Lavender", - "ru": "Лавандовый", - "it": "Lavanda", - "fr": "Lavande", - "hu": "Levendula", - "zh": "薰衣草紫", - "nl": "Lavendel", - "es": "Lavanda" - }, - "fila_color": [ - "#7248BDFF" - ] - }, - { - "fila_color_code": "40700", - "fila_id": "GFB00", - "fila_color_type": "单色", - "fila_type": "ABS", - "fila_color_name": { - "de": "Lila", - "sv": "Lila", - "pt": "Roxo", - "ko": "퍼플", - "ja": "パープル", - "en": "Purple", - "ru": "Пурпурный", - "it": "Viola", - "fr": "Violet", - "hu": "Lila", - "zh": "紫色", - "nl": "Paars", - "es": "Púrpura" - }, - "fila_color": [ - "#AF1685FF" - ] - }, - { - "fila_color_code": "40200", - "fila_id": "GFB00", - "fila_color_type": "单色", - "fila_type": "ABS", - "fila_color_name": { - "de": "Rot", - "sv": "Röd", - "pt": "Vermelho", - "ko": "레드", - "ja": "レッド", - "en": "Red", - "ru": "Красный", - "it": "Rosso", - "fr": "Rouge", - "hu": "Piros", - "zh": "红色", - "nl": "Rood", - "es": "Rojo" - }, - "fila_color": [ - "#D32941FF" - ] - }, - { - "fila_color_code": "40100", - "fila_id": "GFB00", - "fila_color_type": "单色", - "fila_type": "ABS", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "白色", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "40400", - "fila_id": "GFB00", - "fila_color_type": "单色", - "fila_type": "ABS", - "fila_color_name": { - "de": "Gelb", - "sv": "Gul", - "pt": "Amarelo", - "ko": "옐로우", - "ja": "イエロー", - "en": "Yellow", - "ru": "Жёлтый", - "it": "Giallo", - "fr": "Jaune", - "hu": "Sárga", - "zh": "黄色", - "nl": "Geel", - "es": "Amarillo" - }, - "fila_color": [ - "#FCE900FF" - ] - }, - { - "fila_color_code": "40402", - "fila_id": "GFB00", - "fila_color_type": "单色", - "fila_type": "ABS", - "fila_color_name": { - "de": "Mandarinengelb", - "sv": "Mandaringul", - "pt": "Amarelo Tangerina", - "ko": "탠저린 옐로우", - "ja": "タンジェリン イエロー", - "en": "Tangerine Yellow", - "ru": "Мандариновый", - "it": "Giallo tangerine", - "fr": "Jaune mandarine", - "hu": "Tangerin", - "zh": "橘黄", - "nl": "Feloranjegeel", - "es": "Amarillo mandarina" - }, - "fila_color": [ - "#FFC72CFF" - ] - }, - { - "fila_color_code": "40401", - "fila_id": "GFB00", - "fila_color_type": "单色", - "fila_type": "ABS", - "fila_color_name": { - "de": "Beige", - "sv": "Beige", - "pt": "Bege", - "ko": "베이지", - "ja": "ベージュ", - "en": "Beige", - "ru": "Бежевый", - "it": "Beige", - "fr": "Beige", - "hu": "Bézs", - "zh": "卡其色", - "nl": "Beige", - "es": "Beis" - }, - "fila_color": [ - "#DFD1A7FF" - ] - }, - { - "fila_color_code": "45600", - "fila_id": "GFB01", - "fila_color_type": "单色", - "fila_type": "ASA", - "fila_color_name": { - "de": "Blau", - "sv": "Blå", - "pt": "Azul", - "ko": "블루", - "ja": "ブルー", - "en": "Blue", - "ru": "Синий", - "it": "Blu", - "fr": "Bleu", - "hu": "Kék", - "zh": "蓝色", - "nl": "Blauw", - "es": "Azul" - }, - "fila_color": [ - "#2140B4FF" - ] - }, - { - "fila_color_code": "45102", - "fila_id": "GFB01", - "fila_color_type": "单色", - "fila_type": "ASA", - "fila_color_name": { - "de": "Grau", - "sv": "Grå", - "pt": "Cinza", - "ko": "그레이", - "ja": "グレー", - "en": "Gray", - "ru": "Серый", - "it": "Grigio", - "fr": "Gris", - "hu": "Szürke", - "zh": "灰色", - "nl": "Grijs", - "es": "Gris" - }, - "fila_color": [ - "#8A949EFF" - ] - }, - { - "fila_color_code": "45500", - "fila_id": "GFB01", - "fila_color_type": "单色", - "fila_type": "ASA", - "fila_color_name": { - "de": "Grün", - "sv": "Grön", - "pt": "Verde", - "ko": "그린", - "ja": "グリーン", - "en": "Green", - "ru": "Зелёный", - "it": "Verde", - "fr": "Vert", - "hu": "Zöld", - "zh": "绿色", - "nl": "Groen", - "es": "Verde" - }, - "fila_color": [ - "#00A6A0FF" - ] - }, - { - "fila_color_code": "45101", - "fila_id": "GFB01", - "fila_color_type": "单色", - "fila_type": "ASA", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "45200", - "fila_id": "GFB01", - "fila_color_type": "单色", - "fila_type": "ASA", - "fila_color_name": { - "de": "Rot", - "sv": "Röd", - "pt": "Vermelho", - "ko": "레드", - "ja": "レッド", - "en": "Red", - "ru": "Красный", - "it": "Rosso", - "fr": "Rouge", - "hu": "Piros", - "zh": "红色", - "nl": "Rood", - "es": "Rojo" - }, - "fila_color": [ - "#E02928FF" - ] - }, - { - "fila_color_code": "45100", - "fila_id": "GFB01", - "fila_color_type": "单色", - "fila_type": "ASA", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "白色", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#FFFAF2FF" - ] - }, - { - "fila_color_code": "46100", - "fila_id": "GFB02", - "fila_color_type": "单色", - "fila_type": "ASA Aero", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "白色", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#F5F1DDFF" - ] - }, - { - "fila_color_code": "41300", - "fila_id": "GFB50", - "fila_color_type": "单色", - "fila_type": "ABS-GF", - "fila_color_name": { - "de": "Orange", - "sv": "Orange", - "pt": "Laranja", - "ko": "오렌지", - "ja": "オレンジ", - "en": "Orange", - "ru": "Оранжевый", - "it": "Arancione", - "fr": "Orange", - "hu": "Narancssárga", - "zh": "橙色", - "nl": "Oranje", - "es": "Naranja" - }, - "fila_color": [ - "#F48438FF" - ] - }, - { - "fila_color_code": "41600", - "fila_id": "GFB50", - "fila_color_type": "单色", - "fila_type": "ABS-GF", - "fila_color_name": { - "de": "Blau", - "sv": "Blå", - "pt": "Azul", - "ko": "블루", - "ja": "ブルー", - "en": "Blue", - "ru": "Синий", - "it": "Blu", - "fr": "Bleu", - "hu": "Kék", - "zh": "蓝色", - "nl": "Blauw", - "es": "Azul" - }, - "fila_color": [ - "#0C3B95FF" - ] - }, - { - "fila_color_code": "41102", - "fila_id": "GFB50", - "fila_color_type": "单色", - "fila_type": "ABS-GF", - "fila_color_name": { - "de": "Grau", - "sv": "Grå", - "pt": "Cinza", - "ko": "그레이", - "ja": "グレー", - "en": "Gray", - "ru": "Серый", - "it": "Grigio", - "fr": "Gris", - "hu": "Szürke", - "zh": "灰色", - "nl": "Grijs", - "es": "Gris" - }, - "fila_color": [ - "#C6C6C6FF" - ] - }, - { - "fila_color_code": "41500", - "fila_id": "GFB50", - "fila_color_type": "单色", - "fila_type": "ABS-GF", - "fila_color_name": { - "de": "Grün", - "sv": "Grön", - "pt": "Verde", - "ko": "그린", - "ja": "グリーン", - "en": "Green", - "ru": "Зелёный", - "it": "Verde", - "fr": "Vert", - "hu": "Zöld", - "zh": "绿色", - "nl": "Groen", - "es": "Verde" - }, - "fila_color": [ - "#61BF36FF" - ] - }, - { - "fila_color_code": "41101", - "fila_id": "GFB50", - "fila_color_type": "单色", - "fila_type": "ABS-GF", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "41200", - "fila_id": "GFB50", - "fila_color_type": "单色", - "fila_type": "ABS-GF", - "fila_color_name": { - "de": "Rot", - "sv": "Röd", - "pt": "Vermelho", - "ko": "레드", - "ja": "レッド", - "en": "Red", - "ru": "Красный", - "it": "Rosso", - "fr": "Rouge", - "hu": "Piros", - "zh": "红色", - "nl": "Rood", - "es": "Rojo" - }, - "fila_color": [ - "#E83100FF" - ] - }, - { - "fila_color_code": "41100", - "fila_id": "GFB50", - "fila_color_type": "单色", - "fila_type": "ABS-GF", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "白色", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "41400", - "fila_id": "GFB50", - "fila_color_type": "单色", - "fila_type": "ABS-GF", - "fila_color_name": { - "de": "Gelb", - "sv": "Gul", - "pt": "Amarelo", - "ko": "옐로우", - "ja": "イエロー", - "en": "Yellow", - "ru": "Жёлтый", - "it": "Giallo", - "fr": "Jaune", - "hu": "Sárga", - "zh": "黄色", - "nl": "Geel", - "es": "Amarillo" - }, - "fila_color": [ - "#FFE133FF" - ] - }, - { - "fila_color_code": "46101", - "fila_id": "GFB51", - "fila_color_type": "单色", - "fila_type": "ASA-CF", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "60102", - "fila_id": "GFC00", - "fila_color_type": "单色", - "fila_type": "PC", - "fila_color_name": { - "de": "Klares Schwarz", - "sv": "Klar svart", - "pt": "Preto-claro", - "ko": "클리어 블랙", - "ja": "クリア ブラック", - "en": "Clear Black", - "ru": "Чистый чёрный", - "it": "Nero trasparente", - "fr": "Noir transparent", - "hu": "Tiszta fekete", - "zh": "透明黑", - "nl": "Helder zwart", - "es": "Negro transparente" - }, - "fila_color": [ - "#00000080" - ] - }, - { - "fila_color_code": "60103", - "fila_id": "GFC00", - "fila_color_type": "单色", - "fila_type": "PC", - "fila_color_name": { - "de": "Durchsichtig", - "sv": "Genomskinlig", - "pt": "Transparente", - "ko": "투명", - "ja": "トランスペアレント", - "en": "Transparent", - "ru": "Прозрачный", - "it": "Trasparente", - "fr": "Transparent", - "hu": "Áttetsző", - "zh": "透明", - "nl": "Transparant", - "es": "Translúcido" - }, - "fila_color": [ - "#FFFFFF00" - ] - }, - { - "fila_color_code": "60101", - "fila_id": "GFC00", - "fila_color_type": "单色", - "fila_type": "PC", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#686865FF" - ] - }, - { - "fila_color_code": "60100", - "fila_id": "GFC00", - "fila_color_type": "单色", - "fila_type": "PC", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "白色", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "63102", - "fila_id": "GFC01", - "fila_color_type": "单色", - "fila_type": "PC FR", - "fila_color_name": { - "de": "Grau", - "sv": "Grå", - "pt": "Cinza", - "ko": "그레이", - "ja": "グレー", - "en": "Gray", - "ru": "Серый", - "it": "Grigio", - "fr": "Gris", - "hu": "Szürke", - "zh": "灰色", - "nl": "Grijs", - "es": "Gris" - }, - "fila_color": [ - "#A8A8AAFF" - ] - }, - { - "fila_color_code": "63100", - "fila_id": "GFC01", - "fila_color_type": "单色", - "fila_type": "PC FR", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "63101", - "fila_id": "GFC01", - "fila_color_type": "单色", - "fila_type": "PC FR", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "白色", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "30300", - "fila_id": "GFG00", - "fila_color_type": "单色", - "fila_type": "PETG Basic", - "fila_color_name": { - "de": "Orange", - "sv": "Orange", - "pt": "Laranja", - "ko": "오렌지", - "ja": "オレンジ", - "en": "Orange", - "ru": "Оранжевый", - "it": "Arancione", - "fr": "Orange", - "hu": "Narancssárga", - "zh": "橙色", - "nl": "Oranje", - "es": "Naranja" - }, - "fila_color": [ - "#FF671FFF" - ] - }, - { - "fila_color_code": "30602", - "fila_id": "GFG00", - "fila_color_type": "单色", - "fila_type": "PETG Basic", - "fila_color_name": { - "de": "Blauer See", - "sv": "Sjöblå", - "pt": "Lago Azul", - "ko": "레이크 블루", - "ja": "レイク ブルー", - "en": "Lake Blue", - "ru": "Голубой", - "it": "Blu lago", - "fr": "Bleu lac", - "hu": "Vízkék", - "zh": "湖蓝", - "nl": "Meerblauw", - "es": "Azul Lago" - }, - "fila_color": [ - "#0069B1FF" - ] - }, - { - "fila_color_code": "30601", - "fila_id": "GFG00", - "fila_color_type": "单色", - "fila_type": "PETG Basic", - "fila_color_name": { - "de": "Blau-Grau", - "sv": "Blågrå", - "pt": "Azul-Cinza", - "ko": "블루 그레이", - "ja": "ブルー グレー", - "en": "Blue Gray", - "ru": "Сизый", - "it": "Grigio blu", - "fr": "Bleu gris", - "hu": "Kékesszürke", - "zh": "灰蓝", - "nl": "Blauwgrijs", - "es": "Gris azulado" - }, - "fila_color": [ - "#688197FF" - ] - }, - { - "fila_color_code": "30700", - "fila_id": "GFG00", - "fila_color_type": "单色", - "fila_type": "PETG Basic", - "fila_color_name": { - "de": "Lila", - "sv": "Lila", - "pt": "Roxo", - "ko": "퍼플", - "ja": "パープル", - "en": "Purple", - "ru": "Пурпурный", - "it": "Viola", - "fr": "Violet", - "hu": "Lila", - "zh": "紫色", - "nl": "Paars", - "es": "Púrpura" - }, - "fila_color": [ - "#9E007EFF" - ] - }, - { - "fila_color_code": "30600", - "fila_id": "GFG00", - "fila_color_type": "单色", - "fila_type": "PETG Basic", - "fila_color_name": { - "de": "Blau", - "sv": "Blå", - "pt": "Azul", - "ko": "블루", - "ja": "ブルー", - "en": "Blue", - "ru": "Синий", - "it": "Blu", - "fr": "Bleu", - "hu": "Kék", - "zh": "蓝色", - "nl": "Blauw", - "es": "Azul" - }, - "fila_color": [ - "#001489FF" - ] - }, - { - "fila_color_code": "30103", - "fila_id": "GFG00", - "fila_color_type": "单色", - "fila_type": "PETG Basic", - "fila_color_name": { - "de": "Durchsichtig", - "sv": "Genomskinlig", - "pt": "Transparente", - "ko": "투명", - "ja": "トランスペアレント", - "en": "Transparent", - "ru": "Прозрачный", - "it": "Trasparente", - "fr": "Transparent", - "hu": "Áttetsző", - "zh": "透明", - "nl": "Transparant", - "es": "Translúcido" - }, - "fila_color": [ - "#FFFFFF00" - ] - }, - { - "fila_color_code": "30102", - "fila_id": "GFG00", - "fila_color_type": "单色", - "fila_type": "PETG Basic", - "fila_color_name": { - "de": "Grau", - "sv": "Grå", - "pt": "Cinza", - "ko": "그레이", - "ja": "グレー", - "en": "Gray", - "ru": "Серый", - "it": "Grigio", - "fr": "Gris", - "hu": "Szürke", - "zh": "灰色", - "nl": "Grijs", - "es": "Gris" - }, - "fila_color": [ - "#9EA2A2FF" - ] - }, - { - "fila_color_code": "30500", - "fila_id": "GFG00", - "fila_color_type": "单色", - "fila_type": "PETG Basic", - "fila_color_name": { - "de": "Grün", - "sv": "Grön", - "pt": "Verde", - "ko": "그린", - "ja": "グリーン", - "en": "Green", - "ru": "Зелёный", - "it": "Verde", - "fr": "Vert", - "hu": "Zöld", - "zh": "绿色", - "nl": "Groen", - "es": "Verde" - }, - "fila_color": [ - "#009639FF" - ] - }, - { - "fila_color_code": "30501", - "fila_id": "GFG00", - "fila_color_type": "单色", - "fila_type": "PETG Basic", - "fila_color_name": { - "de": "Limettengrün", - "sv": "Limegrön", - "pt": "Verde-limão", - "ko": "라임 그린", - "ja": "ライム グリーン", - "en": "Lime Green", - "ru": "Салатовый", - "it": "Verde lime", - "fr": "Vert citron", - "hu": "Limezöld", - "zh": "柠檬绿", - "nl": "Limoengroen", - "es": "Verde lima" - }, - "fila_color": [ - "#7CD82BFF" - ] - }, - { - "fila_color_code": "30101", - "fila_id": "GFG00", - "fila_color_type": "单色", - "fila_type": "PETG Basic", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "30200", - "fila_id": "GFG00", - "fila_color_type": "单色", - "fila_type": "PETG Basic", - "fila_color_name": { - "de": "Rot", - "sv": "Röd", - "pt": "Vermelho", - "ko": "레드", - "ja": "レッド", - "en": "Red", - "ru": "Красный", - "it": "Rosso", - "fr": "Rouge", - "hu": "Piros", - "zh": "红色", - "nl": "Rood", - "es": "Rojo" - }, - "fila_color": [ - "#D6001CFF" - ] - }, - { - "fila_color_code": "30100", - "fila_id": "GFG00", - "fila_color_type": "单色", - "fila_type": "PETG Basic", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "白色", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "30104", - "fila_id": "GFG00", - "fila_color_type": "单色", - "fila_type": "PETG Basic", - "fila_color_name": { - "de": "Natur", - "sv": "Natur", - "pt": "Natureza", - "ko": "네이처", - "ja": "ネイチャー", - "en": "Nature", - "ru": "Естественный", - "it": "Naturale", - "fr": "Nature", - "hu": "Natúr", - "zh": "自然色", - "nl": "Natuurlijk", - "es": "Naturaleza" - }, - "fila_color": [ - "#F9F7F2FF" - ] - }, - { - "fila_color_code": "30400", - "fila_id": "GFG00", - "fila_color_type": "单色", - "fila_type": "PETG Basic", - "fila_color_name": { - "de": "Gelb", - "sv": "Gul", - "pt": "Amarelo", - "ko": "옐로우", - "ja": "イエロー", - "en": "Yellow", - "ru": "Жёлтый", - "it": "Giallo", - "fr": "Jaune", - "hu": "Sárga", - "zh": "黄色", - "nl": "Geel", - "es": "Amarillo" - }, - "fila_color": [ - "#FCE300FF" - ] - }, - { - "fila_color_code": "30401", - "fila_id": "GFG00", - "fila_color_type": "单色", - "fila_type": "PETG Basic", - "fila_color_name": { - "de": "Gold", - "sv": "Guld", - "pt": "Dourado", - "ko": "골드", - "ja": "ゴールド", - "en": "Gold", - "ru": "Золотистый", - "it": "Oro", - "fr": "Doré", - "hu": "Arany", - "zh": "金色", - "nl": "Goud", - "es": "Dorado" - }, - "fila_color": [ - "#B28B33FF" - ] - }, - { - "fila_color_code": "32300", - "fila_id": "GFG01", - "fila_color_type": "单色", - "fila_type": "PETG Translucent", - "fila_color_name": { - "de": "Durchsichtiges Orange", - "sv": "Genomskinlig orange", - "pt": "Laranja Translúcido", - "ko": "반투명 오렌지", - "ja": "トランスルーセント オレンジ", - "en": "Translucent Orange", - "ru": "Оранжевый", - "it": "Arancione traslucido", - "fr": "Orange translucide", - "hu": "Áttetsző narancssárga", - "zh": "透明橘", - "nl": "Doorschijnend oranje", - "es": "Naranja translúcido" - }, - "fila_color": [ - "#FF911A80" - ] - }, - { - "fila_color_code": "32600", - "fila_id": "GFG01", - "fila_color_type": "单色", - "fila_type": "PETG Translucent", - "fila_color_name": { - "de": "Durchsichtiges Hellblau", - "sv": "Genomskinlig ljusblå", - "pt": "Azul-claro Translúcido", - "ko": "반투명 라이트 블루", - "ja": "トランスルーセント ライト ブルー", - "en": "Translucent Light Blue", - "ru": "Голубой", - "it": "Azzurro traslucido", - "fr": "Bleu clair translucide", - "hu": "Áttetsző világoskék", - "zh": "透明浅蓝", - "nl": "Doorschijnend lichtblauw", - "es": "Azul claro translúcido" - }, - "fila_color": [ - "#61B0FF80" - ] - }, - { - "fila_color_code": "32101", - "fila_id": "GFG01", - "fila_color_type": "单色", - "fila_type": "PETG Translucent", - "fila_color_name": { - "de": "Klar", - "sv": "Klar", - "pt": "Claro", - "ko": "클리어", - "ja": "クリア", - "en": "Clear", - "ru": "Чистый", - "it": "Trasparente", - "fr": "Transparent", - "hu": "Átlátszó", - "zh": "透明", - "nl": "Helder", - "es": "Transparente" - }, - "fila_color": [ - "#FFFFFF00" - ] - }, - { - "fila_color_code": "32100", - "fila_id": "GFG01", - "fila_color_type": "单色", - "fila_type": "PETG Translucent", - "fila_color_name": { - "de": "Durchsichtiges Grau", - "sv": "Genomskinlig grå", - "pt": "Cinza Translúcido", - "ko": "반투명 그레이", - "ja": "トランスルーセント グレー", - "en": "Translucent Gray", - "ru": "Серый", - "it": "Grigio traslucido", - "fr": "Gris translucide", - "hu": "Áttetsző szürke", - "zh": "透明灰", - "nl": "Doorschijnend grijs", - "es": "Gris translúcido" - }, - "fila_color": [ - "#8E8E8E80" - ] - }, - { - "fila_color_code": "32500", - "fila_id": "GFG01", - "fila_color_type": "单色", - "fila_type": "PETG Translucent", - "fila_color_name": { - "de": "Durchsichtiges Olivgrün", - "sv": "Genomskinlig oliv", - "pt": "Oliva Translúcido", - "ko": "반투명 올리브", - "ja": "トランスルーセント オリーブ", - "en": "Translucent Olive", - "ru": "Оливковый", - "it": "Oliva traslucido", - "fr": "Olive translucide", - "hu": "Áttetsző olivazöld", - "zh": "透明橄榄绿", - "nl": "Doorschijnend olijf", - "es": "Oliva translúcido" - }, - "fila_color": [ - "#748C4580" - ] - }, - { - "fila_color_code": "32501", - "fila_id": "GFG01", - "fila_color_type": "单色", - "fila_type": "PETG Translucent", - "fila_color_name": { - "de": "Durchsichtiges Blaugrün", - "sv": "Genomskinlig teal", - "pt": "Azul-petróleo Translúcido", - "ko": "반투명 틸", - "ja": "トランスルーセント ティール", - "en": "Translucent Teal", - "ru": "Морской", - "it": "Verde petrolio traslucido", - "fr": "Bleu sarcelle translucide", - "hu": "Áttetsző kékeszöld", - "zh": "透明浅绿", - "nl": "Doorschijnend blauwgroen", - "es": "Verde azulado translúcido" - }, - "fila_color": [ - "#77EDD780" - ] - }, - { - "fila_color_code": "32800", - "fila_id": "GFG01", - "fila_color_type": "单色", - "fila_type": "PETG Translucent", - "fila_color_name": { - "de": "Durchsichtiges Braun", - "sv": "Genomskinlig brun", - "pt": "Marrom Translúcido", - "ko": "반투명 브라운", - "ja": "トランスルーセント ブラウン", - "en": "Translucent Brown", - "ru": "Коричневый", - "it": "Marrone traslucido", - "fr": "Marron translucide", - "hu": "Áttetsző barna", - "zh": "透明茶色", - "nl": "Doorschijnend bruin", - "es": "Marrón translúcido" - }, - "fila_color": [ - "#C9A38180" - ] - }, - { - "fila_color_code": "32700", - "fila_id": "GFG01", - "fila_color_type": "单色", - "fila_type": "PETG Translucent", - "fila_color_name": { - "de": "Durchsichtiges Lila", - "sv": "Genomskinlig lila", - "pt": "Roxo Translúcido", - "ko": "반투명 퍼플", - "ja": "トランスルーセント パープル", - "en": "Translucent Purple", - "ru": "Фиолетовый", - "it": "Viola traslucido", - "fr": "Violet translucide", - "hu": "Áttetsző lila", - "zh": "透明紫", - "nl": "Doorschijnend paars", - "es": "Púrpura translúcido" - }, - "fila_color": [ - "#D6ABFF80" - ] - }, - { - "fila_color_code": "32200", - "fila_id": "GFG01", - "fila_color_type": "单色", - "fila_type": "PETG Translucent", - "fila_color_name": { - "de": "Durchsichtiges Pink", - "sv": "Genomskinlig rosa", - "pt": "Rosa Translúcido", - "ko": "반투명 핑크", - "ja": "トランスルーセント ピンク", - "en": "Translucent Pink", - "ru": "Розовый", - "it": "Rosa traslucido", - "fr": "Rose translucide", - "hu": "Áttetsző rózsaszín", - "zh": "透明粉", - "nl": "Doorschijnend roze", - "es": "Rosa translúcido" - }, - "fila_color": [ - "#F9C1BD80" - ] - }, - { - "fila_color_code": "33300", - "fila_id": "GFG02", - "fila_color_type": "单色", - "fila_type": "PETG HF", - "fila_color_name": { - "de": "Orange", - "sv": "Orange", - "pt": "Laranja", - "ko": "오렌지", - "ja": "オレンジ", - "en": "Orange", - "ru": "Оранжевый", - "it": "Arancione", - "fr": "Orange", - "hu": "Narancssárga", - "zh": "橙色", - "nl": "Oranje", - "es": "Naranja" - }, - "fila_color": [ - "#F75403FF" - ] - }, - { - "fila_color_code": "33600", - "fila_id": "GFG02", - "fila_color_type": "单色", - "fila_type": "PETG HF", - "fila_color_name": { - "de": "Blau", - "sv": "Blå", - "pt": "Azul", - "ko": "블루", - "ja": "ブルー", - "en": "Blue", - "ru": "Синий", - "it": "Blu", - "fr": "Bleu", - "hu": "Kék", - "zh": "蓝色", - "nl": "Blauw", - "es": "Azul" - }, - "fila_color": [ - "#002E96FF" - ] - }, - { - "fila_color_code": "33601", - "fila_id": "GFG02", - "fila_color_type": "单色", - "fila_type": "PETG HF", - "fila_color_name": { - "de": "Blauer See", - "sv": "Sjöblå", - "pt": "Lago Azul", - "ko": "레이크 블루", - "ja": "レイク ブルー", - "en": "Lake Blue", - "ru": "Голубой", - "it": "Blu lago", - "fr": "Bleu lac", - "hu": "Vízkék", - "zh": "湖蓝", - "nl": "Meerblauw", - "es": "Azul Lago" - }, - "fila_color": [ - "#1F79E5FF" - ] - }, - { - "fila_color_code": "33101", - "fila_id": "GFG02", - "fila_color_type": "单色", - "fila_type": "PETG HF", - "fila_color_name": { - "de": "Grau", - "sv": "Grå", - "pt": "Cinza", - "ko": "그레이", - "ja": "グレー", - "en": "Gray", - "ru": "Серый", - "it": "Grigio", - "fr": "Gris", - "hu": "Szürke", - "zh": "灰色", - "nl": "Grijs", - "es": "Gris" - }, - "fila_color": [ - "#ADB1B2FF" - ] - }, - { - "fila_color_code": "33103", - "fila_id": "GFG02", - "fila_color_type": "单色", - "fila_type": "PETG HF", - "fila_color_name": { - "de": "Dunkelgrau", - "sv": "Mörkgrå", - "pt": "Cinza-escuro", - "ko": "다크 그레이", - "ja": "ダーク グレー", - "en": "Dark Gray", - "ru": "Тёмно-серый", - "it": "Grigio scuro", - "fr": "Gris foncé", - "hu": "Sötétszürke", - "zh": "深灰", - "nl": "Donkergrijs", - "es": "Gris oscuro" - }, - "fila_color": [ - "#515151FF" - ] - }, - { - "fila_color_code": "33500", - "fila_id": "GFG02", - "fila_color_type": "单色", - "fila_type": "PETG HF", - "fila_color_name": { - "de": "Grün", - "sv": "Grön", - "pt": "Verde", - "ko": "그린", - "ja": "グリーン", - "en": "Green", - "ru": "Зелёный", - "it": "Verde", - "fr": "Vert", - "hu": "Zöld", - "zh": "绿色", - "nl": "Groen", - "es": "Verde" - }, - "fila_color": [ - "#00AE42FF" - ] - }, - { - "fila_color_code": "33501", - "fila_id": "GFG02", - "fila_color_type": "单色", - "fila_type": "PETG HF", - "fila_color_name": { - "de": "Limettengrün", - "sv": "Limegrön", - "pt": "Verde-limão", - "ko": "라임 그린", - "ja": "ライム グリーン", - "en": "Lime Green", - "ru": "Салатовый", - "it": "Verde lime", - "fr": "Vert citron", - "hu": "Limezöld", - "zh": "柠檬绿", - "nl": "Limoengroen", - "es": "Verde lima" - }, - "fila_color": [ - "#6EE53CFF" - ] - }, - { - "fila_color_code": "33502", - "fila_id": "GFG02", - "fila_color_type": "单色", - "fila_type": "PETG HF", - "fila_color_name": { - "de": "Waldgrün", - "sv": "Skogsgrön", - "pt": "Verde-floresta", - "ko": "포레스트 그린", - "ja": "フォレスト グリーン", - "en": "Forest Green", - "ru": "Лесной зелёный", - "it": "Verde foresta", - "fr": "Vert forêt", - "hu": "Erdőzöld", - "zh": "丛林绿", - "nl": "Bosgroen", - "es": "Verde bosque" - }, - "fila_color": [ - "#39541AFF" - ] - }, - { - "fila_color_code": "33102", - "fila_id": "GFG02", - "fila_color_type": "单色", - "fila_type": "PETG HF", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "33801", - "fila_id": "GFG02", - "fila_color_type": "单色", - "fila_type": "PETG HF", - "fila_color_name": { - "de": "Erdnussbraun", - "sv": "Jordnötsbrun", - "pt": "Peanut Brown", - "ko": "피넛 브라운", - "ja": "ピーナッツ ブラウン", - "en": "Peanut Brown", - "ru": "Ореховый", - "it": "Cognac", - "fr": "Marron cacahuète", - "hu": "Mogyoróbarna", - "zh": "花生棕", - "nl": "Pindabruin", - "es": "Marrón cacahuete" - }, - "fila_color": [ - "#875718FF" - ] - }, - { - "fila_color_code": "33200", - "fila_id": "GFG02", - "fila_color_type": "单色", - "fila_type": "PETG HF", - "fila_color_name": { - "de": "Rot", - "sv": "Röd", - "pt": "Vermelho", - "ko": "레드", - "ja": "レッド", - "en": "Red", - "ru": "Красный", - "it": "Rosso", - "fr": "Rouge", - "hu": "Piros", - "zh": "红色", - "nl": "Rood", - "es": "Rojo" - }, - "fila_color": [ - "#BC0900FF" - ] - }, - { - "fila_color_code": "33100", - "fila_id": "GFG02", - "fila_color_type": "单色", - "fila_type": "PETG HF", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "白色", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "33400", - "fila_id": "GFG02", - "fila_color_type": "单色", - "fila_type": "PETG HF", - "fila_color_name": { - "de": "Gelb", - "sv": "Gul", - "pt": "Amarelo", - "ko": "옐로우", - "ja": "イエロー", - "en": "Yellow", - "ru": "Жёлтый", - "it": "Giallo", - "fr": "Jaune", - "hu": "Sárga", - "zh": "黄色", - "nl": "Geel", - "es": "Amarillo" - }, - "fila_color": [ - "#FFD00BFF" - ] - }, - { - "fila_color_code": "33401", - "fila_id": "GFG02", - "fila_color_type": "单色", - "fila_type": "PETG HF", - "fila_color_name": { - "de": "Creme", - "sv": "Cremevit", - "pt": "Creme", - "ko": "크림", - "ja": "クリーム", - "en": "Cream", - "ru": "Кремовый", - "it": "Panna", - "fr": "Crème", - "hu": "Törtfehér", - "zh": "奶油白", - "nl": "Roomkleurig", - "es": "Crema" - }, - "fila_color": [ - "#F9DFB9FF" - ] - }, - { - "fila_color_code": "31600", - "fila_id": "GFG50", - "fila_color_type": "单色", - "fila_type": "PETG-CF", - "fila_color_name": { - "de": "Indigo-Blau", - "sv": "Indigoblå", - "pt": "Indigo Blue", - "ko": "인디고 블루", - "ja": "インディゴ ブルー", - "en": "Indigo Blue", - "ru": "Индиго", - "it": "Blu indaco", - "fr": "Bleu indigo", - "hu": "Indigókék", - "zh": "靛蓝色", - "nl": "Indigoblauw", - "es": "Azul índigo" - }, - "fila_color": [ - "#324585FF" - ] - }, - { - "fila_color_code": "31101", - "fila_id": "GFG50", - "fila_color_type": "单色", - "fila_type": "PETG-CF", - "fila_color_name": { - "de": "Titangrau", - "sv": "Titangrå", - "pt": "Titan Gray", - "ko": "타이탄 그레이", - "ja": "チタン グレー", - "en": "Titan Gray", - "ru": "Титановый", - "it": "Grigio titanio", - "fr": "Gris titane", - "hu": "Titánszürke", - "zh": "钛灰色", - "nl": "Titaangrijs", - "es": "Gris titán" - }, - "fila_color": [ - "#565656FF" - ] - }, - { - "fila_color_code": "31500", - "fila_id": "GFG50", - "fila_color_type": "单色", - "fila_type": "PETG-CF", - "fila_color_name": { - "de": "Malachitgrün", - "sv": "Malakitgrön", - "pt": "Verde Malaquita", - "ko": "말라카이트 그린", - "ja": "マラカイト グリーン", - "en": "Malachite Green", - "ru": "Малахитовый", - "it": "Verde malachite", - "fr": "Vert malachite", - "hu": "Malachitzöld", - "zh": "孔雀绿", - "nl": "Malachietgroen", - "es": "Verde malaquita" - }, - "fila_color": [ - "#16b08eFF" - ] - }, - { - "fila_color_code": "31100", - "fila_id": "GFG50", - "fila_color_type": "单色", - "fila_type": "PETG-CF", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "31700", - "fila_id": "GFG50", - "fila_color_type": "单色", - "fila_type": "PETG-CF", - "fila_color_name": { - "de": "Lila-Violett", - "sv": "Violettlila", - "pt": "Violeta Roxo", - "ko": "바이올렛 퍼플", - "ja": "バイオレット パープル", - "en": "Violet Purple", - "ru": "Фиолетовый", - "it": "Viola", - "fr": "Violet pourpre", - "hu": "Viola", - "zh": "紫罗兰色", - "nl": "Violetpaars", - "es": "Violeta púrpura" - }, - "fila_color": [ - "#583061FF" - ] - }, - { - "fila_color_code": "31200", - "fila_id": "GFG50", - "fila_color_type": "单色", - "fila_type": "PETG-CF", - "fila_color_name": { - "de": "Ziegelrot", - "sv": "Tegelröd", - "pt": "Vermelho Tijolo", - "ko": "브릭 레드", - "ja": "ブリック レッド", - "en": "Brick Red", - "ru": "Кирпичный", - "it": "Rosso mattone", - "fr": "Rouge brique", - "hu": "Téglavörös", - "zh": "砖红色", - "nl": "Steenrood", - "es": "Rojo ladrillo" - }, - "fila_color": [ - "#9f332aFF" - ] - }, - { - "fila_color_code": "70100", - "fila_id": "GFN04", - "fila_color_type": "单色", - "fila_type": "PAHT-CF", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "72100", - "fila_id": "GFN05", - "fila_color_type": "单色", - "fila_type": "PA6-CF", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "73100", - "fila_id": "GFN06", - "fila_color_type": "单色", - "fila_type": "PPA-CF", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "72600", - "fila_id": "GFN08", - "fila_color_type": "单色", - "fila_type": "PA6-GF", - "fila_color_name": { - "de": "Blau", - "sv": "Blå", - "pt": "Azul", - "ko": "블루", - "ja": "ブルー", - "en": "Blue", - "ru": "Синий", - "it": "Blu", - "fr": "Bleu", - "hu": "Kék", - "zh": "蓝色", - "nl": "Blauw", - "es": "Azul" - }, - "fila_color": [ - "#75AED8FF" - ] - }, - { - "fila_color_code": "72102", - "fila_id": "GFN08", - "fila_color_type": "单色", - "fila_type": "PA6-GF", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "白色", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#EAEAE4FF" - ] - }, - { - "fila_color_code": "72103", - "fila_id": "GFN08", - "fila_color_type": "单色", - "fila_type": "PA6-GF", - "fila_color_name": { - "de": "Grau", - "sv": "Grå", - "pt": "Cinza", - "ko": "그레이", - "ja": "グレー", - "en": "Gray", - "ru": "Серый", - "it": "Grigio", - "fr": "Gris", - "hu": "Szürke", - "zh": "灰色", - "nl": "Grijs", - "es": "Gris" - }, - "fila_color": [ - "#353533FF" - ] - }, - { - "fila_color_code": "72500", - "fila_id": "GFN08", - "fila_color_type": "单色", - "fila_type": "PA6-GF", - "fila_color_name": { - "de": "Limette", - "sv": "Lime", - "pt": "Lima", - "ko": "라임", - "ja": "ライム", - "en": "Lime", - "ru": "Салатовый", - "it": "Lime", - "fr": "Citron vert", - "hu": "Lime", - "zh": "柠檬绿", - "nl": "Limoen", - "es": "Lima" - }, - "fila_color": [ - "#C5ED48FF" - ] - }, - { - "fila_color_code": "72104", - "fila_id": "GFN08", - "fila_color_type": "单色", - "fila_type": "PA6-GF", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "72800", - "fila_id": "GFN08", - "fila_color_type": "单色", - "fila_type": "PA6-GF", - "fila_color_name": { - "de": "Braun", - "sv": "Brun", - "pt": "Marrom", - "ko": "브라운", - "ja": "ブラウン", - "en": "Brown", - "ru": "Коричневый", - "it": "Marrone", - "fr": "Marron", - "hu": "Barna", - "zh": "棕色", - "nl": "Bruin", - "es": "Marrón" - }, - "fila_color": [ - "#5B492FFF" - ] - }, - { - "fila_color_code": "72200", - "fila_id": "GFN08", - "fila_color_type": "单色", - "fila_type": "PA6-GF", - "fila_color_name": { - "de": "Orange", - "sv": "Orange", - "pt": "Laranja", - "ko": "오렌지", - "ja": "オレンジ", - "en": "Orange", - "ru": "Оранжевый", - "it": "Arancione", - "fr": "Orange", - "hu": "Narancssárga", - "zh": "橙色", - "nl": "Oranje", - "es": "Naranja" - }, - "fila_color": [ - "#FF4800FF" - ] - }, - { - "fila_color_code": "72400", - "fila_id": "GFN08", - "fila_color_type": "单色", - "fila_type": "PA6-GF", - "fila_color_name": { - "de": "Gelb", - "sv": "Gul", - "pt": "Amarelo", - "ko": "옐로우", - "ja": "イエロー", - "en": "Yellow", - "ru": "Жёлтый", - "it": "Giallo", - "fr": "Jaune", - "hu": "Sárga", - "zh": "黄色", - "nl": "Geel", - "es": "Amarillo" - }, - "fila_color": [ - "#FFCE00FF" - ] - }, - { - "fila_color_code": "65101", - "fila_id": "GFS02", - "fila_color_type": "单色", - "fila_type": "Support for PLA", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "65100", - "fila_id": "GFS02", - "fila_color_type": "单色", - "fila_type": "Support for PLA", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "白色", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "65500", - "fila_id": "GFS03", - "fila_color_type": "单色", - "fila_type": "Support for PA/PET", - "fila_color_name": { - "de": "Grün", - "sv": "Grön", - "pt": "Verde", - "ko": "그린", - "ja": "グリーン", - "en": "Green", - "ru": "Зелёный", - "it": "Verde", - "fr": "Vert", - "hu": "Zöld", - "zh": "绿色", - "nl": "Groen", - "es": "Verde" - }, - "fila_color": [ - "#C0DF16FF" - ] - }, - { - "fila_color_code": "66400", - "fila_id": "GFS04", - "fila_color_type": "单色", - "fila_type": "PVA", - "fila_color_name": { - "de": "Klar", - "sv": "Klar", - "pt": "Claro", - "ko": "클리어", - "ja": "クリア", - "en": "Clear", - "ru": "Чистый", - "it": "Trasparente", - "fr": "Transparent", - "hu": "Átlátszó", - "zh": "透明浅黄色", - "nl": "Helder", - "es": "Transparente" - }, - "fila_color": [ - "#F0F1A880" - ] - }, - { - "fila_color_code": "65102", - "fila_id": "GFS05", - "fila_color_type": "单色", - "fila_type": "Support for PLA/PETG", - "fila_color_name": { - "de": "Natur", - "sv": "Natur", - "pt": "Natureza", - "ko": "네이처", - "ja": "ネイチャー", - "en": "Nature", - "ru": "Естественный", - "it": "Naturale", - "fr": "Nature", - "hu": "Natúr", - "zh": "半透明", - "nl": "Natuurlijk", - "es": "Naturaleza" - }, - "fila_color": [ - "#00000000" - ] - }, - { - "fila_color_code": "65103", - "fila_id": "GFS05", - "fila_color_type": "单色", - "fila_type": "Support for PLA/PETG", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "66100", - "fila_id": "GFS06", - "fila_color_type": "单色", - "fila_type": "Support for ABS", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "白色", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "71100", - "fila_id": "GFT01", - "fila_color_type": "单色", - "fila_type": "PET-CF", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "76100", - "fila_id": "GFT02", - "fila_color_type": "单色", - "fila_type": "PPS-CF", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "51600", - "fila_id": "GFU00", - "fila_color_type": "单色", - "fila_type": "TPU 95A HF", - "fila_color_name": { - "de": "Blau", - "sv": "Blå", - "pt": "Azul", - "ko": "블루", - "ja": "ブルー", - "en": "Blue", - "ru": "Синий", - "it": "Blu", - "fr": "Bleu", - "hu": "Kék", - "zh": "蓝色", - "nl": "Blauw", - "es": "Azul" - }, - "fila_color": [ - "#0072CEFF" - ] - }, - { - "fila_color_code": "51101", - "fila_id": "GFU00", - "fila_color_type": "单色", - "fila_type": "TPU 95A HF", - "fila_color_name": { - "de": "Grau", - "sv": "Grå", - "pt": "Cinza", - "ko": "그레이", - "ja": "グレー", - "en": "Gray", - "ru": "Серый", - "it": "Grigio", - "fr": "Gris", - "hu": "Szürke", - "zh": "灰色", - "nl": "Grijs", - "es": "Gris" - }, - "fila_color": [ - "#898D8DFF" - ] - }, - { - "fila_color_code": "51100", - "fila_id": "GFU00", - "fila_color_type": "单色", - "fila_type": "TPU 95A HF", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#101820FF" - ] - }, - { - "fila_color_code": "51200", - "fila_id": "GFU00", - "fila_color_type": "单色", - "fila_type": "TPU 95A HF", - "fila_color_name": { - "de": "Rot", - "sv": "Röd", - "pt": "Vermelho", - "ko": "레드", - "ja": "レッド", - "en": "Red", - "ru": "Красный", - "it": "Rosso", - "fr": "Rouge", - "hu": "Piros", - "zh": "红色", - "nl": "Rood", - "es": "Rojo" - }, - "fila_color": [ - "#C8102EFF" - ] - }, - { - "fila_color_code": "51102", - "fila_id": "GFU00", - "fila_color_type": "单色", - "fila_type": "TPU 95A HF", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "白色", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "51400", - "fila_id": "GFU00", - "fila_color_type": "单色", - "fila_type": "TPU 95A HF", - "fila_color_name": { - "de": "Gelb", - "sv": "Gul", - "pt": "Amarelo", - "ko": "옐로우", - "ja": "イエロー", - "en": "Yellow", - "ru": "Жёлтый", - "it": "Giallo", - "fr": "Jaune", - "hu": "Sárga", - "zh": "黄色", - "nl": "Geel", - "es": "Amarillo" - }, - "fila_color": [ - "#F3E600FF" - ] - }, - { - "fila_color_code": "50101", - "fila_id": "GFU01", - "fila_color_type": "单色", - "fila_type": "TPU 95A", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "50100", - "fila_id": "GFU01", - "fila_color_type": "单色", - "fila_type": "TPU 95A", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "白色", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "53600", - "fila_id": "GFU02", - "fila_color_type": "单色", - "fila_type": "TPU for AMS", - "fila_color_name": { - "de": "Blau", - "sv": "Blå", - "pt": "Azul", - "ko": "블루", - "ja": "ブルー", - "en": "Blue", - "ru": "Синий", - "it": "Blu", - "fr": "Bleu", - "hu": "Kék", - "zh": "蓝色", - "nl": "Blauw", - "es": "Azul" - }, - "fila_color": [ - "#5898DDFF" - ] - }, - { - "fila_color_code": "53102", - "fila_id": "GFU02", - "fila_color_type": "单色", - "fila_type": "TPU for AMS", - "fila_color_name": { - "de": "Grau", - "sv": "Grå", - "pt": "Cinza", - "ko": "그레이", - "ja": "グレー", - "en": "Gray", - "ru": "Серый", - "it": "Grigio", - "fr": "Gris", - "hu": "Szürke", - "zh": "灰色", - "nl": "Grijs", - "es": "Gris" - }, - "fila_color": [ - "#939393FF" - ] - }, - { - "fila_color_code": "53500", - "fila_id": "GFU02", - "fila_color_type": "单色", - "fila_type": "TPU for AMS", - "fila_color_name": { - "de": "Neongrün", - "sv": "Neongrön", - "pt": "Verde-neon", - "ko": "네온 그린", - "ja": "ネオン グリーン", - "en": "Neon Green", - "ru": "Неоновый зелёный", - "it": "Verde neon", - "fr": "Vert fluo", - "hu": "Neonzöld", - "zh": "荧光绿", - "nl": "Neongroen", - "es": "Verde neón" - }, - "fila_color": [ - "#90FF1AFF" - ] - }, - { - "fila_color_code": "53101", - "fila_id": "GFU02", - "fila_color_type": "单色", - "fila_type": "TPU for AMS", - "fila_color_name": { - "de": "Schwarz", - "sv": "Svart", - "pt": "Preto", - "ko": "블랙", - "ja": "ブラック", - "en": "Black", - "ru": "Чёрный", - "it": "Nero", - "fr": "Noir", - "hu": "Fekete", - "zh": "黑色", - "nl": "Zwart", - "es": "Negro" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "53200", - "fila_id": "GFU02", - "fila_color_type": "单色", - "fila_type": "TPU for AMS", - "fila_color_name": { - "de": "Rot", - "sv": "Röd", - "pt": "Vermelho", - "ko": "레드", - "ja": "レッド", - "en": "Red", - "ru": "Красный", - "it": "Rosso", - "fr": "Rouge", - "hu": "Piros", - "zh": "红色", - "nl": "Rood", - "es": "Rojo" - }, - "fila_color": [ - "#ED0000FF" - ] - }, - { - "fila_color_code": "53100", - "fila_id": "GFU02", - "fila_color_type": "单色", - "fila_type": "TPU for AMS", - "fila_color_name": { - "de": "Weiß", - "sv": "Vit", - "pt": "Branco", - "ko": "화이트", - "ja": "ホワイト", - "en": "White", - "ru": "Белый", - "it": "Bianco", - "fr": "Blanc", - "hu": "Fehér", - "zh": "白色", - "nl": "Wit", - "es": "Blanco" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "53400", - "fila_id": "GFU02", - "fila_color_type": "单色", - "fila_type": "TPU for AMS", - "fila_color_name": { - "de": "Gelb", - "sv": "Gul", - "pt": "Amarelo", - "ko": "옐로우", - "ja": "イエロー", - "en": "Yellow", - "ru": "Жёлтый", - "it": "Giallo", - "fr": "Jaune", - "hu": "Sárga", - "zh": "黄色", - "nl": "Geel", - "es": "Amarillo" - }, - "fila_color": [ - "#F9EF41FF" - ] - }, - { - "fila_color_code": "16100", - "fila_id": "GFA18", - "fila_color_type": "单色", - "fila_type": "PLA Lite", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Black", - "ru": "Чёрный", - "it": "", - "fr": "", - "hu": "", - "zh": "黑色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "16400", - "fila_id": "GFA18", - "fila_color_type": "单色", - "fila_type": "PLA Lite", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Yellow", - "ru": "Жёлтый", - "it": "", - "fr": "", - "hu": "", - "zh": "黄色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#EFE255FF" - ] - }, - { - "fila_color_code": "16103", - "fila_id": "GFA18", - "fila_color_type": "单色", - "fila_type": "PLA Lite", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "White", - "ru": "Белый", - "it": "", - "fr": "", - "hu": "", - "zh": "白色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "16600", - "fila_id": "GFA18", - "fila_color_type": "单色", - "fila_type": "PLA Lite", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Cyan", - "ru": "Голубой", - "it": "", - "fr": "", - "hu": "", - "zh": "天蓝色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#4DAFDAFF" - ] - }, - { - "fila_color_code": "16200", - "fila_id": "GFA18", - "fila_color_type": "单色", - "fila_type": "PLA Lite", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Red", - "ru": "Красный", - "it": "", - "fr": "", - "hu": "", - "zh": "深红色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#C6001AFF" - ] - }, - { - "fila_color_code": "16101", - "fila_id": "GFA18", - "fila_color_type": "单色", - "fila_type": "PLA Lite", - "fila_color_name": { - "de": "Grau", - "sv": "Grå", - "pt": "Cinza", - "ko": "그레이", - "ja": "グレー", - "en": "Gray", - "ru": "Серый", - "it": "Grigio", - "fr": "Gris", - "hu": "Szürke", - "zh": "灰色", - "nl": "Grijs", - "es": "Gris" - }, - "fila_color": [ - "#999D9DFF" - ] - }, - { - "fila_color_code": "13210", - "fila_id": "GFA17", - "fila_color_type": "单色", - "fila_type": "PLA Translucent", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Red", - "ru": "Красный", - "it": "", - "fr": "", - "hu": "", - "zh": "透明红", - "nl": "", - "es": "" - }, - "fila_color": [ - "#B5001180" - ] - }, - { - "fila_color_code": "13211", - "fila_id": "GFA17", - "fila_color_type": "单色", - "fila_type": "PLA Translucent", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Cherry Pink", - "ru": "Вишнёвый", - "it": "", - "fr": "", - "hu": "", - "zh": "果冻粉", - "nl": "", - "es": "" - }, - "fila_color": [ - "#F5B6CD80" - ] - }, - { - "fila_color_code": "13301", - "fila_id": "GFA17", - "fila_color_type": "单色", - "fila_type": "PLA Translucent", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Orange", - "ru": "Оранжевый", - "it": "", - "fr": "", - "hu": "", - "zh": "透明橙", - "nl": "", - "es": "" - }, - "fila_color": [ - "#F74E0280" - ] - }, - { - "fila_color_code": "13410", - "fila_id": "GFA17", - "fila_color_type": "单色", - "fila_type": "PLA Translucent", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Mellow Yellow", - "ru": "Ярко-жёлтый", - "it": "", - "fr": "", - "hu": "", - "zh": "黄水晶", - "nl": "", - "es": "" - }, - "fila_color": [ - "#F5DBAB80" - ] - }, - { - "fila_color_code": "13510", - "fila_id": "GFA17", - "fila_color_type": "单色", - "fila_type": "PLA Translucent", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Light Jade", - "ru": "Светлый нефрит", - "it": "", - "fr": "", - "hu": "", - "zh": "浅青玉", - "nl": "", - "es": "" - }, - "fila_color": [ - "#96D8AF80" - ] - }, - { - "fila_color_code": "13610", - "fila_id": "GFA17", - "fila_color_type": "单色", - "fila_type": "PLA Translucent", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Ice Blue", - "ru": "Голубой лёд", - "it": "", - "fr": "", - "hu": "", - "zh": "冰蓝", - "nl": "", - "es": "" - }, - "fila_color": [ - "#B8CDE980" - ] - }, - { - "fila_color_code": "13611", - "fila_id": "GFA17", - "fila_color_type": "单色", - "fila_type": "PLA Translucent", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Blue", - "ru": "Синий", - "it": "", - "fr": "", - "hu": "", - "zh": "透明蓝", - "nl": "", - "es": "" - }, - "fila_color": [ - "#0047BB80" - ] - }, - { - "fila_color_code": "13612", - "fila_id": "GFA17", - "fila_color_type": "单色", - "fila_type": "PLA Translucent", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Teal", - "ru": "Морской", - "it": "", - "fr": "", - "hu": "", - "zh": "蓝绿色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#009FA180" - ] - }, - { - "fila_color_code": "13710", - "fila_id": "GFA17", - "fila_color_type": "单色", - "fila_type": "PLA Translucent", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Purple", - "ru": "Пурпурный", - "it": "", - "fr": "", - "hu": "", - "zh": "透明紫", - "nl": "", - "es": "" - }, - "fila_color": [ - "#8344B080" - ] - }, - { - "fila_color_code": "13711", - "fila_id": "GFA17", - "fila_color_type": "单色", - "fila_type": "PLA Translucent", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Lavender", - "ru": "Лавандовый", - "it": "", - "fr": "", - "hu": "", - "zh": "紫罗兰", - "nl": "", - "es": "" - }, - "fila_color": [ - "#B8ACD680" - ] - }, - { - "fila_color_code": "13906", - "fila_id": "GFA05", - "fila_color_type": "渐变色", - "fila_type": "PLA Silk", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "South Beach", - "ru": "Южный пляж", - "it": "", - "fr": "", - "hu": "", - "zh": "马卡龙", - "nl": "", - "es": "" - }, - "fila_color": [ - "#00918BFF", - "#F772A4FF" - ] - }, - { - "fila_color_code": "13909", - "fila_id": "GFA05", - "fila_color_type": "渐变色", - "fila_type": "PLA Silk", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Aurora Purple", - "ru": "Пурпурное сияние", - "it": "", - "fr": "", - "hu": "", - "zh": "星云紫", - "nl": "", - "es": "" - }, - "fila_color": [ - "#7F3696FF", - "#006EC9FF" - ] - }, - { - "fila_color_code": "13912", - "fila_id": "GFA05", - "fila_color_type": "渐变色", - "fila_type": "PLA Silk", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Dawn Radiance", - "ru": "Сияющий рассвет", - "it": "", - "fr": "", - "hu": "", - "zh": "浅彩虹", - "nl": "", - "es": "" - }, - "fila_color": [ - "#EC984CFF", - "#6CD4BCFF", - "#A66EB9FF", - "#D87694FF" - ] - }, - { - "fila_color_code": "51103", - "fila_id": "GFU03", - "fila_color_type": "单色", - "fila_type": "TPU 90A", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Black", - "ru": "Чёрный", - "it": "", - "fr": "", - "hu": "", - "zh": "黑色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "51105", - "fila_id": "GFU03", - "fila_color_type": "单色", - "fila_type": "TPU 90A", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "White", - "ru": "Белый", - "it": "", - "fr": "", - "hu": "", - "zh": "白色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "51305", - "fila_id": "GFU04", - "fila_color_type": "单色", - "fila_type": "TPU 85A", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Neon Orange", - "ru": "Неоновый оранжевый", - "it": "", - "fr": "", - "hu": "", - "zh": "暖橙色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#F68B1BFF" - ] - }, - { - "fila_color_code": "51500", - "fila_id": "GFU04", - "fila_color_type": "单色", - "fila_type": "TPU 85A", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Light Cyan", - "ru": "Светло-голубой", - "it": "", - "fr": "", - "hu": "", - "zh": "苍青色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#C3E2D6FF" - ] - }, - { - "fila_color_code": "51900", - "fila_id": "GFU03", - "fila_color_type": "渐变色", - "fila_type": "TPU 90A", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Frozen", - "ru": "Морозный", - "it": "", - "fr": "", - "hu": "", - "zh": "冰封蓝", - "nl": "", - "es": "" - }, - "fila_color": [ - "#FFFFFFFF", - "#40B6E4FF" - ] - }, - { - "fila_color_code": "51901", - "fila_id": "GFU03", - "fila_color_type": "渐变色", - "fila_type": "TPU 90A", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Blaze", - "ru": "Пламя", - "it": "", - "fr": "", - "hu": "", - "zh": "西瓜红", - "nl": "", - "es": "" - }, - "fila_color": [ - "#D21B3CFF", - "#F1AAA8FF" - ] - }, - { - "fila_color_code": "65104", - "fila_id": "GFS02", - "fila_color_type": "单色", - "fila_type": "Support for PLA", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "White", - "ru": "Белый", - "it": "", - "fr": "", - "hu": "", - "zh": "白色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "12104", - "fila_id": "GFA10", - "fila_color_type": "单色", - "fila_type": "PLA Tough+", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Black", - "ru": "Чёрный", - "it": "", - "fr": "", - "hu": "", - "zh": "黑色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#000000FF" - ] - }, - { - "fila_color_code": "12105", - "fila_id": "GFA10", - "fila_color_type": "单色", - "fila_type": "PLA Tough+", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Gray", - "ru": "Серый", - "it": "", - "fr": "", - "hu": "", - "zh": "浅灰色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#AFB1AEFF" - ] - }, - { - "fila_color_code": "12106", - "fila_id": "GFA10", - "fila_color_type": "单色", - "fila_type": "PLA Tough+", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Silver", - "ru": "Серебристый", - "it": "", - "fr": "", - "hu": "", - "zh": "银色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#959698FF" - ] - }, - { - "fila_color_code": "12107", - "fila_id": "GFA10", - "fila_color_type": "单色", - "fila_type": "PLA Tough+", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "White", - "ru": "Белый", - "it": "", - "fr": "", - "hu": "", - "zh": "白色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#FFFFFFFF" - ] - }, - { - "fila_color_code": "12301", - "fila_id": "GFA10", - "fila_color_type": "单色", - "fila_type": "PLA Tough+", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Orange", - "ru": "Оранжевый", - "it": "", - "fr": "", - "hu": "", - "zh": "橙色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#DC3A27FF" - ] - }, - { - "fila_color_code": "12401", - "fila_id": "GFA10", - "fila_color_type": "单色", - "fila_type": "PLA Tough+", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Yellow", - "ru": "Жёлтый", - "it": "", - "fr": "", - "hu": "", - "zh": "亮黄色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#F4D53FFF" - ] - }, - { - "fila_color_code": "12601", - "fila_id": "GFA10", - "fila_color_type": "单色", - "fila_type": "PLA Tough+", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Cyan", - "ru": "Голубой", - "it": "", - "fr": "", - "hu": "", - "zh": "天蓝色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#009BD8FF" - ] - }, - { - "fila_color_code": "13100", - "fila_id": "GFA02", - "fila_color_type": "单色", - "fila_type": "PLA Metal", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Iron Gray Metallic", - "ru": "Серое железо", - "it": "", - "fr": "", - "hu": "", - "zh": "深空灰", - "nl": "", - "es": "" - }, - "fila_color": [ - "#43403DFF" - ] - }, - { - "fila_color_code": "13400", - "fila_id": "GFA02", - "fila_color_type": "单色", - "fila_type": "PLA Metal", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Iridium Gold Metallic", - "ru": "Золотистый иридий", - "it": "", - "fr": "", - "hu": "", - "zh": "香槟金", - "nl": "", - "es": "" - }, - "fila_color": [ - "#B39B84FF" - ] - }, - { - "fila_color_code": "13500", - "fila_id": "GFA02", - "fila_color_type": "单色", - "fila_type": "PLA Metal", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Oxide Green Metallic", - "ru": "Зелёный оксид", - "it": "", - "fr": "", - "hu": "", - "zh": "极光绿", - "nl": "", - "es": "" - }, - "fila_color": [ - "#1D7C6AFF" - ] - }, - { - "fila_color_code": "13600", - "fila_id": "GFA02", - "fila_color_type": "单色", - "fila_type": "PLA Metal", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Cobalt Blue Metallic", - "ru": "Кобальт", - "it": "", - "fr": "", - "hu": "", - "zh": "典雅蓝", - "nl": "", - "es": "" - }, - "fila_color": [ - "#39699EFF" - ] - }, - { - "fila_color_code": "13800", - "fila_id": "GFA02", - "fila_color_type": "单色", - "fila_type": "PLA Metal", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Copper Brown Metallic", - "ru": "Коричневая медь", - "it": "", - "fr": "", - "hu": "", - "zh": "咖啡金", - "nl": "", - "es": "" - }, - "fila_color": [ - "#AA6443FF" - ] - }, - { - "fila_color_code": "16601", - "fila_id": "GFA18", - "fila_color_type": "单色", - "fila_type": "PLA Lite", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Blue", - "ru": "Синий", - "it": "", - "fr": "", - "hu": "", - "zh": "蓝色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#004EA8FF" - ] - }, - { - "fila_color_code": "16401", - "fila_id": "GFA18", - "fila_color_type": "单色", - "fila_type": "PLA Lite", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Sunflower Yellow", - "ru": "Жёлтый подсолнух", - "it": "", - "fr": "", - "hu": "", - "zh": "橙黄色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#FFB549FF" - ] - }, - { - "fila_color_code": "16501", - "fila_id": "GFA18", - "fila_color_type": "单色", - "fila_type": "PLA Lite", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Green", - "ru": "Зелёный", - "it": "", - "fr": "", - "hu": "", - "zh": "绿色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#00BB31FF" - ] - }, - { - "fila_color_code": "16301", - "fila_id": "GFA18", - "fila_color_type": "单色", - "fila_type": "PLA Lite", - "fila_color_name": { - "de": "", - "sv": "", - "pt": "", - "ko": "", - "ja": "", - "en": "Orange", - "ru": "Оранжевый", - "it": "", - "fr": "", - "hu": "", - "zh": "橙色", - "nl": "", - "es": "" - }, - "fila_color": [ - "#FF671FFF" - ] - } - ], - "total": 294 -} + "data": [ + { + "fila_color_code": "10300", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Orange", + "sv": "Orange", + "pt": "Laranja", + "ko": "오렌지", + "ja": "オレンジ", + "en": "Orange", + "it": "Arancione", + "fr": "Orange", + "hu": "Narancssárga", + "zh": "橙色", + "nl": "Oranje", + "es": "Naranja" + }, + "color_code": "A0", + "fila_color": [ + "#FF6A13FF" + ] + }, + { + "fila_color_code": "10301", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Kürbis-Orange", + "sv": "Pumpaorange", + "pt": "Abóbora Laranja", + "ko": "펌프킨 오렌지", + "ja": "パンプキン オレンジ", + "en": "Pumpkin Orange", + "it": "Arancione zucca", + "fr": "Orange citrouille", + "hu": "Sütőtök", + "zh": "南瓜橙", + "nl": "Pompoenoranje", + "es": "Naranja calabaza" + }, + "color_code": "A1", + "fila_color": [ + "#FF9016FF" + ] + }, + { + "fila_color_code": "10602", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Blau-Grau", + "sv": "Blågrå", + "pt": "Azul-Cinza", + "ko": "블루 그레이", + "ja": "ブルー グレー", + "en": "Blue Gray", + "it": "Grigio blu", + "fr": "Bleu gris", + "hu": "Kékesszürke", + "zh": "蓝灰", + "nl": "Blauwgrijs", + "es": "Gris azulado" + }, + "color_code": "B1", + "fila_color": [ + "#5B6579FF" + ] + }, + { + "fila_color_code": "10604", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Kobaltblau", + "sv": "Koboltblå", + "pt": "Azul-cobalto", + "ko": "코발트 블루", + "ja": "コバルト ブルー", + "en": "Cobalt Blue", + "it": "Blu cobalto", + "fr": "Bleu cobalt", + "hu": "Kobaltkék", + "zh": "钴蓝色", + "nl": "Kobaltblauw", + "es": "Azul cobalto" + }, + "color_code": "B3", + "fila_color": [ + "#0056B8FF" + ] + }, + { + "fila_color_code": "10605", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Türkis", + "sv": "Turkos", + "pt": "Turquesa", + "ko": "터쿼이즈", + "ja": "ターコイズ", + "en": "Turquoise", + "it": "Turchese", + "fr": "Turquoise", + "hu": "Türkiz", + "zh": "松石绿", + "nl": "Turkoois", + "es": "Turquesa" + }, + "color_code": "B5", + "fila_color": [ + "#00B1B7FF" + ] + }, + { + "fila_color_code": "10603", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Cyan", + "sv": "Cyan", + "pt": "Ciano", + "ko": "시안", + "ja": "シアン", + "en": "Cyan", + "it": "Ciano", + "fr": "Cyan", + "hu": "Cián", + "zh": "青色", + "nl": "Cyaan", + "es": "Cian" + }, + "color_code": "B8", + "fila_color": [ + "#0086D6FF" + ] + }, + { + "fila_color_code": "10601", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Blau", + "sv": "Blå", + "pt": "Azul", + "ko": "블루", + "ja": "ブルー", + "en": "Blue", + "it": "Blu", + "fr": "Bleu", + "hu": "Kék", + "zh": "蓝色", + "nl": "Blauw", + "es": "Azul" + }, + "color_code": "B9", + "fila_color": [ + "#0A2989FF" + ] + }, + { + "fila_color_code": "10103", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Grau", + "sv": "Grå", + "pt": "Cinza", + "ko": "그레이", + "ja": "グレー", + "en": "Gray", + "it": "Grigio", + "fr": "Gris", + "hu": "Szürke", + "zh": "灰色", + "nl": "Grijs", + "es": "Gris" + }, + "color_code": "D0", + "fila_color": [ + "#8E9089FF" + ] + }, + { + "fila_color_code": "10102", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Silber", + "sv": "Silver", + "pt": "Prateado", + "ko": "실버", + "ja": "シルバー", + "en": "Silver", + "it": "Argento", + "fr": "Argenté", + "hu": "Ezüst", + "zh": "银色", + "nl": "Zilver", + "es": "Plateado" + }, + "color_code": "D1", + "fila_color": [ + "#A6A9AAFF" + ] + }, + { + "fila_color_code": "10104", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Hellgrau", + "sv": "Ljusgrå", + "pt": "Cinza-claro", + "ko": "라이트 그레이", + "ja": "ライト グレー", + "en": "Light Gray", + "it": "Grigio chiaro", + "fr": "Gris clair", + "hu": "Világosszürke", + "zh": "浅灰", + "nl": "Lichtgrijs", + "es": "Gris claro" + }, + "color_code": "D2", + "fila_color": [ + "#D1D3D5FF" + ] + }, + { + "fila_color_code": "10105", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Dunkelgrau", + "sv": "Mörkgrå", + "pt": "Cinza-escuro", + "ko": "다크 그레이", + "ja": "ダーク グレー", + "en": "Dark Gray", + "it": "Grigio scuro", + "fr": "Gris foncé", + "hu": "Sötétszürke", + "zh": "深灰", + "nl": "Donkergrijs", + "es": "Gris oscuro" + }, + "color_code": "D3", + "fila_color": [ + "#545454FF" + ] + }, + { + "fila_color_code": "10502", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Mistelzweig-Grün", + "sv": "Mistelgrön", + "pt": "Mistletoe Green", + "ko": "미슬토 그린", + "ja": "ミスルトー グリーン", + "en": "Mistletoe Green", + "it": "Verde vischio", + "fr": "Vert gui", + "hu": "Fagyöngyzöld", + "zh": "圣诞绿", + "nl": "Maretakgroen", + "es": "Verde muérdago" + }, + "color_code": "G2", + "fila_color": [ + "#3F8E43FF" + ] + }, + { + "fila_color_code": "10503", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Hellgrün", + "sv": "Ljusgrön", + "pt": "Verde Brilhante", + "ko": "브라이트 그린", + "ja": "ブライト グリーン", + "en": "Bright Green", + "it": "Verde brillante", + "fr": "Vert vif", + "hu": "Világoszöld", + "zh": "苹果绿", + "nl": "Felgroen", + "es": "Verde brillante" + }, + "color_code": "G3", + "fila_color": [ + "#BECF00FF" + ] + }, + { + "fila_color_code": "10501", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Bambusgrün", + "sv": "Bambugrön", + "pt": "Verde-bambu", + "ko": "뱀부 그린", + "ja": "バンブー グリーン", + "en": "Bambu Green", + "it": "Verde bambù", + "fr": "Vert bambou", + "hu": "Bambu-zöld", + "zh": "拓竹绿", + "nl": "Bamboegroen", + "es": "Verde bambú" + }, + "color_code": "G6", + "fila_color": [ + "#00AE42FF" + ] + }, + { + "fila_color_code": "10101", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "10900", + "fila_id": "GFA00", + "fila_color_type": "渐变色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Arktisches Flüstern", + "sv": "Arktisk viskning", + "pt": "Arctic Whisper", + "ko": "아크틱 위스퍼", + "ja": "アークティック ウィスパー", + "en": "Arctic Whisper", + "it": "Arctic Whisper", + "fr": "Murmure arctique", + "hu": "Sarkköri suttogás", + "zh": "蓝白渐变", + "nl": "Vleugje noordpool", + "es": "Susurro ártico" + }, + "color_code": "M0", + "fila_color": [ + "#9CDBD9FF", + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "10901", + "fila_id": "GFA00", + "fila_color_type": "渐变色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Sonnenbrise", + "sv": "Solbris", + "pt": "Brisa Solar", + "ko": "솔라 브리즈", + "ja": "ソーラー ブリーズ", + "en": "Solar Breeze", + "it": "Solar Breeze", + "fr": "Brise solaire", + "hu": "Napszellő", + "zh": "红白渐变", + "nl": "Zonnebries", + "es": "Brisa solar" + }, + "color_code": "M1", + "fila_color": [ + "#E94B3CFF", + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "10902", + "fila_id": "GFA00", + "fila_color_type": "渐变色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Meer und Wiese", + "sv": "Ocean till äng", + "pt": "Ocean to Meadow", + "ko": "오션에서 메도우로", + "ja": "オーシャン トゥ メドウ", + "en": "Ocean to Meadow", + "it": "Azzurro/verde con gradazione", + "fr": "Océan à Prairie", + "hu": "Óceántól a rétig", + "zh": "蓝绿渐变", + "nl": "Van oceaanblauw naar weidegroen", + "es": "Del océano a la pradera" + }, + "color_code": "M2", + "fila_color": [ + "#307FE2FF", + "#54FF9BFF" + ] + }, + { + "fila_color_code": "10903", + "fila_id": "GFA00", + "fila_color_type": "渐变色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Zitrus-Pink", + "sv": "Rosa citrus", + "pt": "Pink Citrus", + "ko": "핑크 시트러스", + "ja": "ピンク シトラス", + "en": "Pink Citrus", + "it": "Rosa citrus", + "fr": "Agrume rose", + "hu": "Rózsaszín-citrus", + "zh": "霞光粉", + "nl": "Roze citrus", + "es": "Rosa cítrico" + }, + "color_code": "M3", + "fila_color": [ + "#F78F77FF", + "#E4505AFF" + ] + }, + { + "fila_color_code": "10904", + "fila_id": "GFA00", + "fila_color_type": "渐变色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Minze-Limette", + "sv": "Mintlime", + "pt": "Menta-lima", + "ko": "민트 라임", + "ja": "ミント ライム", + "en": "Mint Lime", + "it": "Lime menta", + "fr": "Menthe citron vert", + "hu": "Menta-lime", + "zh": "青柠绿", + "nl": "Muntlimoen", + "es": "Lima menta" + }, + "color_code": "M4", + "fila_color": [ + "#B6FF43FF", + "#4EC939FF" + ] + }, + { + "fila_color_code": "10905", + "fila_id": "GFA00", + "fila_color_type": "渐变色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Blaubeere-Bubblegum", + "sv": "Blåbärsbubbelgum", + "pt": "Chiclete de Mirtilo", + "ko": "블루베리 버블검", + "ja": "ブルーベリー バブルガム", + "en": "Blueberry Bubblegum", + "it": "Mirtillo", + "fr": "Chewing-gum myrtilles", + "hu": "Áfonyás rágógumi", + "zh": "泡泡紫", + "nl": "Bosbessenkauwgum", + "es": "Chicle de arándano" + }, + "color_code": "M5", + "fila_color": [ + "#6FCAEFFF", + "#8573DDFF" + ] + }, + { + "fila_color_code": "10906", + "fila_id": "GFA00", + "fila_color_type": "渐变色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Leuchtende Abenddämmerung", + "sv": "Skymningsljus", + "pt": "Brilho do Crepúsculo", + "ko": "더스크 글래어", + "ja": "ダスク グレア", + "en": "Dusk Glare", + "it": "Dusk Glare", + "fr": "Éclat crépusculaire", + "hu": "Alkonyati csillámlás", + "zh": "日落橙", + "nl": "Schemerlicht", + "es": "Resplandor del crepúsculo" + }, + "color_code": "M6", + "fila_color": [ + "#CE4406FF", + "#ED9558FF" + ] + }, + { + "fila_color_code": "10907", + "fila_id": "GFA00", + "fila_color_type": "渐变色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Zuckerwatten-Wolke", + "sv": "Sockervaddsmoln", + "pt": "Cotton Candy Cloud", + "ko": "코튼 캔디 클라우드", + "ja": "コットン キャンディ クラウド", + "en": "Cotton Candy Cloud", + "it": "Zucchero filato", + "fr": "Nuage de barbe à papa", + "hu": "Vattacukorfelhő", + "zh": "多巴胺(粉蓝渐变)", + "nl": "Suikerspinwolk", + "es": "Nube de algodón de azúcar" + }, + "color_code": "M7", + "fila_color": [ + "#E7C1D5FF", + "#8EC9E9FF" + ] + }, + { + "fila_color_code": "10800", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Braun", + "sv": "Brun", + "pt": "Marrom", + "ko": "브라운", + "ja": "ブラウン", + "en": "Brown", + "it": "Marrone", + "fr": "Marron", + "hu": "Barna", + "zh": "棕色", + "nl": "Bruin", + "es": "Marrón" + }, + "color_code": "N0", + "fila_color": [ + "#9D432CFF" + ] + }, + { + "fila_color_code": "10802", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Kakaobraun", + "sv": "Kakaobrun", + "pt": "Cacau Marrom", + "ko": "코코아 브라운", + "ja": "ココア ブラウン", + "en": "Cocoa Brown", + "it": "Marrone cacao", + "fr": "Marron cacao", + "hu": "Kakaóbarna", + "zh": "可可棕", + "nl": "Chocoladebruin", + "es": "Marrón cacao" + }, + "color_code": "N1", + "fila_color": [ + "#6F5034FF" + ] + }, + { + "fila_color_code": "10201", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Beige", + "sv": "Beige", + "pt": "Bege", + "ko": "베이지", + "ja": "ベージュ", + "en": "Beige", + "it": "Beige", + "fr": "Beige", + "hu": "Bézs", + "zh": "杏色", + "nl": "Beige", + "es": "Beis" + }, + "color_code": "P0", + "fila_color": [ + "#F7E6DEFF" + ] + }, + { + "fila_color_code": "10203", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Pink", + "sv": "Rosa", + "pt": "Rosa", + "ko": "핑크", + "ja": "ピンク", + "en": "Pink", + "it": "Rosa", + "fr": "Rose", + "hu": "Rózsaszín", + "zh": "粉色", + "nl": "Roze", + "es": "Rosa" + }, + "color_code": "P1", + "fila_color": [ + "#F55A74FF" + ] + }, + { + "fila_color_code": "10701", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Indigo-Violett", + "sv": "Indigolila", + "pt": "Indigo Purple", + "ko": "인디고 퍼플", + "ja": "インディゴ パープル", + "en": "Indigo Purple", + "it": "Viola indaco", + "fr": "Violet indigo", + "hu": "Indigólila", + "zh": "绀紫色", + "nl": "Indigopaars", + "es": "Púrpura índigo" + }, + "color_code": "P2", + "fila_color": [ + "#482960FF" + ] + }, + { + "fila_color_code": "10700", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Lila", + "sv": "Lila", + "pt": "Roxo", + "ko": "퍼플", + "ja": "パープル", + "en": "Purple", + "it": "Viola", + "fr": "Violet", + "hu": "Lila", + "zh": "紫色", + "nl": "Paars", + "es": "Púrpura" + }, + "color_code": "P5", + "fila_color": [ + "#5E43B7FF" + ] + }, + { + "fila_color_code": "10202", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Magenta", + "sv": "Magenta", + "pt": "Magenta", + "ko": "마젠타", + "ja": "マゼンタ", + "en": "Magenta", + "it": "Magenta", + "fr": "Magenta", + "hu": "Magenta", + "zh": "品红", + "nl": "Magenta", + "es": "Magenta" + }, + "color_code": "P6", + "fila_color": [ + "#EC008CFF" + ] + }, + { + "fila_color_code": "10200", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Rot", + "sv": "Röd", + "pt": "Vermelho", + "ko": "레드", + "ja": "レッド", + "en": "Red", + "it": "Rosso", + "fr": "Rouge", + "hu": "Piros", + "zh": "红色", + "nl": "Rood", + "es": "Rojo" + }, + "color_code": "R0", + "fila_color": [ + "#C12E1FFF" + ] + }, + { + "fila_color_code": "10205", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Kastanienrot", + "sv": "Rödbrun", + "pt": "Maroon Red", + "ko": "마룬 레드", + "ja": "マルーン レッド", + "en": "Maroon Red", + "it": "Rosso bordeaux", + "fr": "Rouge marron", + "hu": "Gesztenyés vörös", + "zh": "胭脂红", + "nl": "Kastanjerood", + "es": "Rojo granate" + }, + "color_code": "R2", + "fila_color": [ + "#9D2235FF" + ] + }, + { + "fila_color_code": "10204", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Heißes Pink", + "sv": "Neonrosa", + "pt": "Rosa-choque", + "ko": "핫핑크", + "ja": "ホット ピンク", + "en": "Hot Pink", + "it": "Fucsia", + "fr": "Rose vif", + "hu": "Forró rózsaszín", + "zh": "桃红色", + "nl": "Felroze", + "es": "Rosa fucsia" + }, + "color_code": "R3", + "fila_color": [ + "#F5547CFF" + ] + }, + { + "fila_color_code": "10100", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Jade-Weiß", + "sv": "Jadevit", + "pt": "Jade Branco", + "ko": "제이드 화이트", + "ja": "ジェイド ホワイト", + "en": "Jade White", + "it": "Bianco giada", + "fr": "Blanc de jade", + "hu": "Jádefehér", + "zh": "玉石白", + "nl": "Jadewit", + "es": "Blanco jade" + }, + "color_code": "W1", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "10400", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Gelb", + "sv": "Gul", + "pt": "Amarelo", + "ko": "옐로우", + "ja": "イエロー", + "en": "Yellow", + "it": "Giallo", + "fr": "Jaune", + "hu": "Sárga", + "zh": "黄色", + "nl": "Geel", + "es": "Amarillo" + }, + "color_code": "Y0", + "fila_color": [ + "#F4EE2AFF" + ] + }, + { + "fila_color_code": "10402", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Sonnenblumen-Gelb", + "sv": "Solrosgul", + "pt": "Girassol Amarelo", + "ko": "썬플라워 옐로우", + "ja": "サンフラワー イエロー", + "en": "Sunflower Yellow", + "it": "Giallo girasole", + "fr": "Jaune tournesol", + "hu": "Napraforgósárga", + "zh": "暖黄色", + "nl": "Zonnebloemgeel", + "es": "Amarillo girasol" + }, + "color_code": "Y2", + "fila_color": [ + "#FEC600FF" + ] + }, + { + "fila_color_code": "10801", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Bronze", + "sv": "Brons", + "pt": "Bronze", + "ko": "브론즈", + "ja": "ブロンズ", + "en": "Bronze", + "it": "Bronzo", + "fr": "Bronze", + "hu": "Bronz", + "zh": "青铜", + "nl": "Bronskleurig", + "es": "Bronce" + }, + "color_code": "Y3", + "fila_color": [ + "#847D48FF" + ] + }, + { + "fila_color_code": "10401", + "fila_id": "GFA00", + "fila_color_type": "单色", + "fila_type": "PLA Basic", + "fila_color_name": { + "de": "Gold", + "sv": "Guld", + "pt": "Dourado", + "ko": "골드", + "ja": "ゴールド", + "en": "Gold", + "it": "Oro", + "fr": "Doré", + "hu": "Arany", + "zh": "金色", + "nl": "Goud", + "es": "Dorado" + }, + "color_code": "Y4", + "fila_color": [ + "#E4BD68FF" + ] + }, + { + "fila_color_code": "11300", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Mandarine-Orange", + "sv": "Mandarinorange", + "pt": "Tangerina", + "ko": "만다린 오렌지", + "ja": "マンダリン オレンジ", + "en": "Mandarin Orange", + "it": "Arancio mandarino", + "fr": "Mandarine", + "hu": "Mandarinsárga", + "zh": "橘橙", + "nl": "Mandarijnoranje", + "es": "Naranja Mandarina" + }, + "color_code": "A2", + "fila_color": [ + "#F99963FF" + ] + }, + { + "fila_color_code": "11603", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Himmelblau", + "sv": "Himmelsblå", + "pt": "Azul-celeste", + "ko": "스카이 블루", + "ja": "スカイ ブルー", + "en": "Sky Blue", + "it": "Azzurro cielo", + "fr": "Bleu ciel", + "hu": "Égszínkék", + "zh": "天蓝色", + "nl": "Hemelsblauw", + "es": "Azul cielo" + }, + "color_code": "B0", + "fila_color": [ + "#56B7E6FF" + ] + }, + { + "fila_color_code": "11600", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Marineblau", + "sv": "Marinblå", + "pt": "Azul-marinho", + "ko": "마린 블루", + "ja": "マリン ブルー", + "en": "Marine Blue", + "it": "Blu marino", + "fr": "Bleu marine", + "hu": "Tengerkék", + "zh": "海蓝", + "nl": "Marineblauw", + "es": "Azul marino" + }, + "color_code": "B3", + "fila_color": [ + "#0078BFFF" + ] + }, + { + "fila_color_code": "11601", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Eisblau", + "sv": "Isblå", + "pt": "Azul-gelo", + "ko": "아이스 블루", + "ja": "アイス ブルー", + "en": "Ice Blue", + "it": "Blu ghiaccio", + "fr": "Bleu glacier", + "hu": "Jégkék", + "zh": "冰蓝", + "nl": "IJsblauw", + "es": "Azul hielo" + }, + "color_code": "B4", + "fila_color": [ + "#A3D8E1FF" + ] + }, + { + "fila_color_code": "11602", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Dunkelblau", + "sv": "Mörkblå", + "pt": "Azul-escuro", + "ko": "다크 블루", + "ja": "ダーク ブルー", + "en": "Dark Blue", + "it": "Blu scuro", + "fr": "Bleu foncé", + "hu": "Sötétkék", + "zh": "暗夜蓝", + "nl": "Donkerblauw", + "es": "Azul oscuro" + }, + "color_code": "B6", + "fila_color": [ + "#042F56FF" + ] + }, + { + "fila_color_code": "11104", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Nardo-Grau", + "sv": "Nardogrå", + "pt": "Nardo Gray", + "ko": "나르도 그레이", + "ja": "ナルド グレイ", + "en": "Nardo Gray", + "it": "Grigio Nardo", + "fr": "Gris nardo", + "hu": "Matt szürke", + "zh": "枪灰色", + "nl": "Nardogrijs", + "es": "Gris nardo" + }, + "color_code": "D0", + "fila_color": [ + "#757575FF" + ] + }, + { + "fila_color_code": "11102", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Aschgrau", + "sv": "Askgrå", + "pt": "Ash Gray", + "ko": "애쉬 그레이", + "ja": "アッシュ グレー", + "en": "Ash Gray", + "it": "Grigio cenere", + "fr": "Gris cendré", + "hu": "Hamuszürke", + "zh": "岩石灰", + "nl": "Asgrijs", + "es": "Gris ceniza" + }, + "color_code": "D3", + "fila_color": [ + "#9B9EA0FF" + ] + }, + { + "fila_color_code": "11502", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Apfelgrün", + "sv": "Äppelgrön", + "pt": "Maçã-Verde", + "ko": "애플 그린", + "ja": "アップル グリーン", + "en": "Apple Green", + "it": "Verde mela", + "fr": "Vert pomme", + "hu": "Almazöld", + "zh": "果绿色", + "nl": "Appelgroen", + "es": "Verde manzana" + }, + "color_code": "G0", + "fila_color": [ + "#C2E189FF" + ] + }, + { + "fila_color_code": "11500", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Grasgrün", + "sv": "Gräsgrön", + "pt": "Grama Verde", + "ko": "그래스 그린", + "ja": "グラス グリーン", + "en": "Grass Green", + "it": "Verde prato", + "fr": "Vert herbacé", + "hu": "Fűzöld", + "zh": "草绿", + "nl": "Grasgroen", + "es": "Verde hierba" + }, + "color_code": "G1", + "fila_color": [ + "#61C680FF" + ] + }, + { + "fila_color_code": "11501", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Dunkelgrün", + "sv": "Mörkgrön", + "pt": "Verde-escuro", + "ko": "다크 그린", + "ja": "ダーク グリーン", + "en": "Dark Green", + "it": "Verde scuro", + "fr": "Vert foncé", + "hu": "Sötétzöld", + "zh": "暗夜绿", + "nl": "Donkergroen", + "es": "Verde oscuro" + }, + "color_code": "G7", + "fila_color": [ + "#68724DFF" + ] + }, + { + "fila_color_code": "11101", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Kohlschwarz", + "sv": "Kolsvart", + "pt": "Carvão", + "ko": "차콜", + "ja": "チャコール", + "en": "Charcoal", + "it": "Carbone", + "fr": "Anthracite", + "hu": "Faszén", + "zh": "炭黑", + "nl": "Donkergrijs", + "es": "Carbón" + }, + "color_code": "K1", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "11802", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Dunkel-Schokoladenbraun", + "sv": "Mörk choklad", + "pt": "Chocolate-escuro", + "ko": "다크 초콜릿", + "ja": "ダーク チョコレート", + "en": "Dark Chocolate", + "it": "Cioccolato", + "fr": "Chocolat noir", + "hu": "Étcsokoládé", + "zh": "深棕色", + "nl": "Donkerchocoladebruin", + "es": "Chocolate oscuro" + }, + "color_code": "N0", + "fila_color": [ + "#4D3324FF" + ] + }, + { + "fila_color_code": "11800", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Milchkaffee-Braun", + "sv": "Lattebrun", + "pt": "Café com Leite", + "ko": "라떼 브라운", + "ja": "ラテ ブラウン", + "en": "Latte Brown", + "it": "Caffelatte", + "fr": "Marron latte", + "hu": "Lattebarna", + "zh": "拿铁褐", + "nl": "Lattebruin", + "es": "Marrón Latte" + }, + "color_code": "N1", + "fila_color": [ + "#D3B7A7FF" + ] + }, + { + "fila_color_code": "11801", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Dunkelbraun", + "sv": "Mörkbrun", + "pt": "Marrom-escuro", + "ko": "다크 브라운", + "ja": "ダーク ブラウン", + "en": "Dark Brown", + "it": "Marrone scuro", + "fr": "Marron foncé", + "hu": "Sötétbarna", + "zh": "暗夜棕", + "nl": "Donkerbruin", + "es": "Marrón oscuro" + }, + "color_code": "N2", + "fila_color": [ + "#7D6556FF" + ] + }, + { + "fila_color_code": "11803", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Karamell", + "sv": "Kola", + "pt": "Caramelo", + "ko": "캐러멜", + "ja": "キャラメル", + "en": "Caramel", + "it": "Caramello", + "fr": "Caramel", + "hu": "Karamella", + "zh": "沙棕色", + "nl": "Karamel", + "es": "Caramelo" + }, + "color_code": "N3", + "fila_color": [ + "#AE835BFF" + ] + }, + { + "fila_color_code": "11201", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Sakura-Pink", + "sv": "Körsbärsrosa", + "pt": "Sakura Rosa", + "ko": "사쿠라 핑크", + "ja": "サクラ ピンク", + "en": "Sakura Pink", + "it": "Rosa sakura", + "fr": "Rose sakura", + "hu": "Szakurarózsaszín", + "zh": "樱花粉", + "nl": "Sakura-roze", + "es": "Rosa sakura" + }, + "color_code": "P3", + "fila_color": [ + "#E8AFCFFF" + ] + }, + { + "fila_color_code": "11700", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Flieder-Violett", + "sv": "Syrenlila", + "pt": "Lilás Roxo", + "ko": "라일락 퍼플", + "ja": "ライラック パープル", + "en": "Lilac Purple", + "it": "Lilla", + "fr": "Violet lilas", + "hu": "Ibolya", + "zh": "丁香紫", + "nl": "Lilapaars", + "es": "Púrpura lila" + }, + "color_code": "P4", + "fila_color": [ + "#AE96D4FF" + ] + }, + { + "fila_color_code": "11200", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Scharlachrot", + "sv": "Scharlakansröd", + "pt": "Vermelho Escarlate", + "ko": "스칼렛 레드", + "ja": "スカーレット レッド", + "en": "Scarlet Red", + "it": "Rosso scarlatto", + "fr": "Rouge écarlate", + "hu": "Skarlátvörös", + "zh": "猩红", + "nl": "Scharlakenrood", + "es": "Rojo escarlata" + }, + "color_code": "R1", + "fila_color": [ + "#DE4343FF" + ] + }, + { + "fila_color_code": "11203", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Terrakotta", + "sv": "Terrakotta", + "pt": "Terracota", + "ko": "테라코타", + "ja": "テラコッタ", + "en": "Terracotta", + "it": "Terracotta", + "fr": "Terre cuite", + "hu": "Terrakotta", + "zh": "砖红色", + "nl": "Terracotta", + "es": "Terracota" + }, + "color_code": "R2", + "fila_color": [ + "#B15533FF" + ] + }, + { + "fila_color_code": "11204", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Pflaume", + "sv": "Plommon", + "pt": "Ameixa", + "ko": "플럼", + "ja": "プラム", + "en": "Plum", + "it": "Prugna", + "fr": "Prune", + "hu": "Szilva", + "zh": "莓果紫", + "nl": "Pruim", + "es": "Ciruela" + }, + "color_code": "R3", + "fila_color": [ + "#950051FF" + ] + }, + { + "fila_color_code": "11202", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Dunkelrot", + "sv": "Mörkröd", + "pt": "Vermelho-escuro", + "ko": "다크 레드", + "ja": "ダーク レッド", + "en": "Dark Red", + "it": "Rosso scuro", + "fr": "Rouge foncé", + "hu": "Sötétvörös", + "zh": "暗夜红", + "nl": "Donkerrood", + "es": "Rojo oscuro" + }, + "color_code": "R4", + "fila_color": [ + "#BB3D43FF" + ] + }, + { + "fila_color_code": "11100", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Elfenbeinweiß", + "sv": "Elfenbensvit", + "pt": "Branco Marfim", + "ko": "아이보리 화이트", + "ja": "アイボリー ホワイト", + "en": "Ivory White", + "it": "Bianco avorio", + "fr": "Blanc ivoire", + "hu": "Elefántcsontfehér", + "zh": "象牙白", + "nl": "Ivoorwit", + "es": "Blanco marfil" + }, + "color_code": "W2", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "11103", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Knochenweiß", + "sv": "Benvit", + "pt": "Bone White", + "ko": "본 화이트", + "ja": "ボーン ホワイト", + "en": "Bone White", + "it": "Bianco osso", + "fr": "Blanc os", + "hu": "Csontfehér", + "zh": "骨白", + "nl": "Beenwit", + "es": "Blanco hueso" + }, + "color_code": "W3", + "fila_color": [ + "#CBC6B8FF" + ] + }, + { + "fila_color_code": "11400", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Zitronengelb", + "sv": "Citrongul", + "pt": "Amarelo-limão", + "ko": "레몬 옐로우", + "ja": "レモン イエロー", + "en": "Lemon Yellow", + "it": "Giallo limone", + "fr": "Jaune citron", + "hu": "Citromsárga", + "zh": "柠檬黄", + "nl": "Citroengeel", + "es": "Amarillo limón" + }, + "color_code": "Y2", + "fila_color": [ + "#F7D959FF" + ] + }, + { + "fila_color_code": "11401", + "fila_id": "GFA01", + "fila_color_type": "单色", + "fila_type": "PLA Matte", + "fila_color_name": { + "de": "Wüstenbraun", + "sv": "Ökenbrun", + "pt": "Desert Tan", + "ko": "데저트 탄", + "ja": "デザート タン", + "en": "Desert Tan", + "it": "Sabbia", + "fr": "Brun clair du désert", + "hu": "Sivatagi cser", + "zh": "沙漠黄", + "nl": "Woestijnbruin", + "es": "Arena del desierto" + }, + "color_code": "Y3", + "fila_color": [ + "#E8DBB7FF" + ] + }, + { + "fila_color_code": "13601", + "fila_id": "GFA05", + "fila_color_type": "单色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "Blau", + "sv": "Blå", + "pt": "Azul", + "ko": "블루", + "ja": "ブルー", + "en": "Blue", + "it": "Blu", + "fr": "Bleu", + "hu": "Kék", + "zh": "蓝色", + "nl": "Blauw", + "es": "Azul" + }, + "color_code": "B0", + "fila_color": [ + "#147BD1FF" + ] + }, + { + "fila_color_code": "13104", + "fila_id": "GFA05", + "fila_color_type": "单色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "Silber", + "sv": "Silver", + "pt": "Prateado", + "ko": "실버", + "ja": "シルバー", + "en": "Silver", + "it": "Argento", + "fr": "Argenté", + "hu": "Ezüst", + "zh": "银色", + "nl": "Zilver", + "es": "Plateado" + }, + "color_code": "D1", + "fila_color": [ + "#EAECEBFF" + ] + }, + { + "fila_color_code": "13502", + "fila_id": "GFA05", + "fila_color_type": "单色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "Grün", + "sv": "Grön", + "pt": "Verde", + "ko": "그린", + "ja": "グリーン", + "en": "Green", + "it": "Verde", + "fr": "Vert", + "hu": "Zöld", + "zh": "绿色", + "nl": "Groen", + "es": "Verde" + }, + "color_code": "G1", + "fila_color": [ + "#4CE4A0FF" + ] + }, + { + "fila_color_code": "13300", + "fila_id": "GFA05", + "fila_color_type": "单色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "Kupfer", + "sv": "Koppar", + "pt": "Cobre", + "ko": "코퍼", + "ja": "カッパー", + "en": "Copper", + "it": "Rame", + "fr": "Cuivre", + "hu": "Réz", + "zh": "铜色", + "nl": "Koperkleurig", + "es": "Cobre" + }, + "color_code": "N4", + "fila_color": [ + "#5E4B3CFF" + ] + }, + { + "fila_color_code": "13202", + "fila_id": "GFA05", + "fila_color_type": "单色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "Pink", + "sv": "Rosa", + "pt": "Rosa", + "ko": "핑크", + "ja": "ピンク", + "en": "Pink", + "it": "Rosa", + "fr": "Rose", + "hu": "Rózsaszín", + "zh": "粉色", + "nl": "Roze", + "es": "Rosa" + }, + "color_code": "P3", + "fila_color": [ + "#EEB1C1FF" + ] + }, + { + "fila_color_code": "13701", + "fila_id": "GFA05", + "fila_color_type": "单色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "Lila", + "sv": "Lila", + "pt": "Roxo", + "ko": "퍼플", + "ja": "パープル", + "en": "Purple", + "it": "Viola", + "fr": "Violet", + "hu": "Lila", + "zh": "紫色", + "nl": "Paars", + "es": "Púrpura" + }, + "color_code": "P5", + "fila_color": [ + "#854CE4FF" + ] + }, + { + "fila_color_code": "13901", + "fila_id": "GFA05", + "fila_color_type": "多拼色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "Goldenes Rosa", + "sv": "Gyllene ros", + "pt": "Rosa Dourada", + "ko": "길디드 로즈", + "ja": "ギルディッド ローズ", + "en": "Gilded Rose", + "it": "Rosa con sfumature dorate", + "fr": "Rose doré", + "hu": "Aranyozott rózsa", + "zh": "金粉双色", + "nl": "Vergulde roos", + "es": "Rosa dorado" + }, + "color_code": "T1", + "fila_color": [ + "#FF9425FF", + "#C16784FF" + ] + }, + { + "fila_color_code": "13902", + "fila_id": "GFA05", + "fila_color_type": "多拼色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "Mitternachtsglanz", + "sv": "Midnattsflamma", + "pt": "Midnight Blaze", + "ko": "미드나이트 블레이즈", + "ja": "ミッドナイト ブレイズ", + "en": "Midnight Blaze", + "it": "Midnight Blaze", + "fr": "Feu de minuit", + "hu": "Éjféli ragyogás", + "zh": "蓝红双色", + "nl": "Middernachtblauw", + "es": "Resplandor de medianoche" + }, + "color_code": "T2", + "fila_color": [ + "#0047BBFF", + "#7D1B49FF" + ] + }, + { + "fila_color_code": "13903", + "fila_id": "GFA05", + "fila_color_type": "多拼色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "Neon City", + "sv": "Stadsljus", + "pt": "Cidade Neon", + "ko": "네온 시티", + "ja": "ネオン シティ", + "en": "Neon City", + "it": "Neon City", + "fr": "Ville de Néon", + "hu": "Neonfény", + "zh": "蓝粉双色", + "nl": "Neonstad", + "es": "Ciudad de neón" + }, + "color_code": "T3", + "fila_color": [ + "#0047BBFF", + "#BB22A3FF" + ] + }, + { + "fila_color_code": "13904", + "fila_id": "GFA05", + "fila_color_type": "多拼色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "Hawaii-Blau", + "sv": "Blå Hawaii", + "pt": "Blue Hawaii", + "ko": "블루 하와이", + "ja": "ブルー ハワイ", + "en": "Blue Hawaii", + "it": "Blue Hawaii", + "fr": "Hawaï bleu", + "hu": "Kék Hawaii", + "zh": "蓝绿双色", + "nl": "Blauw Hawaï", + "es": "Azul Hawái" + }, + "color_code": "T4", + "fila_color": [ + "#418FDEFF", + "#70C884FF" + ] + }, + { + "fila_color_code": "13905", + "fila_id": "GFA05", + "fila_color_type": "多拼色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "Dunkler Samt (Schwarz-Rot)", + "sv": "Sammetsglans (svart-röd)", + "pt": "Velvet Eclipse (Preto-Vermelho)", + "ko": "벨벳 이클립스(블랙-레드)", + "ja": "ベルベット エクリプス (ブラック レッド)", + "en": "Velvet Eclipse (Black-Red)", + "it": "Velvet Eclipse (nero/rosso)", + "fr": "Éclipse de velours (Noir-Rouge)", + "hu": "Bársony naplemente (fekete-piros)", + "zh": "灰烬红", + "nl": "Fluwelen zonsverduistering (zwart-rood)", + "es": "Eclipse de terciopelo (negro-rojo)" + }, + "color_code": "T5", + "fila_color": [ + "#000000FF", + "#A34342FF" + ] + }, + { + "fila_color_code": "13105", + "fila_id": "GFA05", + "fila_color_type": "单色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "Weiß", + "sv": "Vit", + "pt": "Branco", + "ko": "화이트", + "ja": "ホワイト", + "en": "White", + "it": "Bianco", + "fr": "Blanc", + "hu": "Fehér", + "zh": "白色", + "nl": "Wit", + "es": "Blanco" + }, + "color_code": "W0", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "13401", + "fila_id": "GFA05", + "fila_color_type": "单色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "Gold", + "sv": "Guld", + "pt": "Dourado", + "ko": "골드", + "ja": "ゴールド", + "en": "Gold", + "it": "Oro", + "fr": "Doré", + "hu": "Arany", + "zh": "金色", + "nl": "Goud", + "es": "Dorado" + }, + "color_code": "Y4", + "fila_color": [ + "#E5B03DFF" + ] + }, + { + "fila_color_code": "13603", + "fila_id": "GFA06", + "fila_color_type": "单色", + "fila_type": "PLA Silk+", + "fila_color_name": { + "de": "Babyblau", + "sv": "Babyblå", + "pt": "Azul-bebê", + "ko": "베이비 블루", + "ja": "ベイビー ブルー", + "en": "Baby Blue", + "it": "Blu-turchese chiaro", + "fr": "Bleu layette", + "hu": "Babakék", + "zh": "天空蓝", + "nl": "Babyblauw", + "es": "Azul bebé" + }, + "color_code": "B0", + "fila_color": [ + "#A8C6EEFF" + ] + }, + { + "fila_color_code": "13604", + "fila_id": "GFA06", + "fila_color_type": "单色", + "fila_type": "PLA Silk+", + "fila_color_name": { + "de": "Blau", + "sv": "Blå", + "pt": "Azul", + "ko": "블루", + "ja": "ブルー", + "en": "Blue", + "it": "Blu", + "fr": "Bleu", + "hu": "Kék", + "zh": "丝绸蓝", + "nl": "Blauw", + "es": "Azul" + }, + "color_code": "B1", + "fila_color": [ + "#008BDAFF" + ] + }, + { + "fila_color_code": "13108", + "fila_id": "GFA06", + "fila_color_type": "单色", + "fila_type": "PLA Silk+", + "fila_color_name": { + "de": "Titangrau", + "sv": "Titangrå", + "pt": "Titan Gray", + "ko": "타이탄 그레이", + "ja": "チタン グレー", + "en": "Titan Gray", + "it": "Grigio titanio", + "fr": "Gris titane", + "hu": "Titánszürke", + "zh": "钛灰色", + "nl": "Titaangrijs", + "es": "Gris titán" + }, + "color_code": "D0", + "fila_color": [ + "#5F6367FF" + ] + }, + { + "fila_color_code": "13109", + "fila_id": "GFA06", + "fila_color_type": "单色", + "fila_type": "PLA Silk+", + "fila_color_name": { + "de": "Silber", + "sv": "Silver", + "pt": "Prateado", + "ko": "실버", + "ja": "シルバー", + "en": "Silver", + "it": "Argento", + "fr": "Argenté", + "hu": "Ezüst", + "zh": "丝绸银", + "nl": "Zilver", + "es": "Plateado" + }, + "color_code": "D1", + "fila_color": [ + "#C8C8C8FF" + ] + }, + { + "fila_color_code": "13506", + "fila_id": "GFA06", + "fila_color_type": "单色", + "fila_type": "PLA Silk+", + "fila_color_name": { + "de": "Candy-Grün", + "sv": "Godisgrön", + "pt": "Candy Green", + "ko": "캔디 그린", + "ja": "キャンディ グリーン", + "en": "Candy Green", + "it": "Verde caramella", + "fr": "Vert bonbon", + "hu": "Cukorkazöld", + "zh": "糖果绿", + "nl": "Snoepgroen", + "es": "Verde caramelo" + }, + "color_code": "G0", + "fila_color": [ + "#018814FF" + ] + }, + { + "fila_color_code": "13507", + "fila_id": "GFA06", + "fila_color_type": "单色", + "fila_type": "PLA Silk+", + "fila_color_name": { + "de": "Minze", + "sv": "Mint", + "pt": "Menta", + "ko": "민트", + "ja": "ミント", + "en": "Mint", + "it": "Menta", + "fr": "Menthe", + "hu": "Menta", + "zh": "薄荷绿", + "nl": "Munt", + "es": "Menta" + }, + "color_code": "G1", + "fila_color": [ + "#96DCB9FF" + ] + }, + { + "fila_color_code": "13702", + "fila_id": "GFA06", + "fila_color_type": "单色", + "fila_type": "PLA Silk+", + "fila_color_name": { + "de": "Lila", + "sv": "Lila", + "pt": "Roxo", + "ko": "퍼플", + "ja": "パープル", + "en": "Purple", + "it": "Viola", + "fr": "Violet", + "hu": "Lila", + "zh": "丝绸紫", + "nl": "Paars", + "es": "Púrpura" + }, + "color_code": "P0", + "fila_color": [ + "#8671CBFF" + ] + }, + { + "fila_color_code": "13205", + "fila_id": "GFA06", + "fila_color_type": "单色", + "fila_type": "PLA Silk+", + "fila_color_name": { + "de": "Candy-Rot", + "sv": "Godisröd", + "pt": "Candy Red", + "ko": "캔디 레드", + "ja": "キャンディ レッド", + "en": "Candy Red", + "it": "Rosso caramella", + "fr": "Rouge bonbon", + "hu": "Cukorkapiros", + "zh": "糖果红", + "nl": "Snoeprood", + "es": "Rojo caramelo" + }, + "color_code": "R0", + "fila_color": [ + "#D02727FF" + ] + }, + { + "fila_color_code": "13206", + "fila_id": "GFA06", + "fila_color_type": "单色", + "fila_type": "PLA Silk+", + "fila_color_name": { + "de": "Gold-Rosa", + "sv": "Rödguld", + "pt": "Ouro Rosa", + "ko": "로즈 골드", + "ja": "ローズ ゴールド", + "en": "Rose Gold", + "it": "Oro rosa", + "fr": "Doré rose", + "hu": "Rózsaarany", + "zh": "烟粉色", + "nl": "Roségoud", + "es": "Oro rosa" + }, + "color_code": "R1", + "fila_color": [ + "#BA9594FF" + ] + }, + { + "fila_color_code": "13207", + "fila_id": "GFA06", + "fila_color_type": "单色", + "fila_type": "PLA Silk+", + "fila_color_name": { + "de": "Pink", + "sv": "Rosa", + "pt": "Rosa", + "ko": "핑크", + "ja": "ピンク", + "en": "Pink", + "it": "Rosa", + "fr": "Rose", + "hu": "Rózsaszín", + "zh": "丝绸粉", + "nl": "Roze", + "es": "Rosa" + }, + "color_code": "R2", + "fila_color": [ + "#F7ADA6FF" + ] + }, + { + "fila_color_code": "13110", + "fila_id": "GFA06", + "fila_color_type": "单色", + "fila_type": "PLA Silk+", + "fila_color_name": { + "de": "Weiß", + "sv": "Vit", + "pt": "Branco", + "ko": "화이트", + "ja": "ホワイト", + "en": "White", + "it": "Bianco", + "fr": "Blanc", + "hu": "Fehér", + "zh": "丝绸白", + "nl": "Wit", + "es": "Blanco" + }, + "color_code": "W0", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "13404", + "fila_id": "GFA06", + "fila_color_type": "单色", + "fila_type": "PLA Silk+", + "fila_color_name": { + "de": "Champagner", + "sv": "Champagne", + "pt": "Champagne", + "ko": "샴페인", + "ja": "シャンパン", + "en": "Champagne", + "it": "Champagne", + "fr": "Champagne", + "hu": "Pezsgő", + "zh": "香槟色", + "nl": "Champagne", + "es": "Champán" + }, + "color_code": "Y0", + "fila_color": [ + "#F3CFB2FF" + ] + }, + { + "fila_color_code": "13405", + "fila_id": "GFA06", + "fila_color_type": "单色", + "fila_type": "PLA Silk+", + "fila_color_name": { + "de": "Gold", + "sv": "Guld", + "pt": "Dourado", + "ko": "골드", + "ja": "ゴールド", + "en": "Gold", + "it": "Oro", + "fr": "Doré", + "hu": "Arany", + "zh": "丝绸金", + "nl": "Goud", + "es": "Dorado" + }, + "color_code": "Y1", + "fila_color": [ + "#F4A925FF" + ] + }, + { + "fila_color_code": "13103", + "fila_id": "GFA07", + "fila_color_type": "单色", + "fila_type": "PLA Marble", + "fila_color_name": { + "de": "Weißer Marmor", + "sv": "Vit marmor", + "pt": "Mármore Branco", + "ko": "화이트 마블", + "ja": "ホワイト マーブル", + "en": "White Marble", + "it": "Marmo bianco", + "fr": "Marbre blanc", + "hu": "Fehér márvány", + "zh": "大理石", + "nl": "Wit marmer", + "es": "Mármol blanco" + }, + "color_code": "D4", + "fila_color": [ + "#F7F3F0FF" + ] + }, + { + "fila_color_code": "13201", + "fila_id": "GFA07", + "fila_color_type": "单色", + "fila_type": "PLA Marble", + "fila_color_name": { + "de": "Granitrot", + "sv": "Röd granit", + "pt": "Granito Vermelho", + "ko": "레드 그래나이트", + "ja": "レッド グラナイト", + "en": "Red Granite", + "it": "Rosso granito", + "fr": "Granit rouge", + "hu": "Vörös gránit", + "zh": "砖红", + "nl": "Rood graniet", + "es": "Granate rojo" + }, + "color_code": "R5", + "fila_color": [ + "#AD4E38FF" + ] + }, + { + "fila_color_code": "13700", + "fila_id": "GFA08", + "fila_color_type": "单色", + "fila_type": "PLA Sparkle", + "fila_color_name": { + "de": "Glitzerndes Königslila", + "sv": "Kungslila glans", + "pt": "Royal Purple Sparkle", + "ko": "로얄 퍼플 스파클", + "ja": "ロイヤル パープル スパークル", + "en": "Royal Purple Sparkle", + "it": "Viola reale con brillantini", + "fr": "Violet royal scintillant", + "hu": "Csillámló királyi lila", + "zh": "深蓝", + "nl": "Sprankelend koningspaars", + "es": "Púrpura real brillante" + }, + "color_code": "B7", + "fila_color": [ + "#483D8BFF" + ] + }, + { + "fila_color_code": "13102", + "fila_id": "GFA08", + "fila_color_type": "单色", + "fila_type": "PLA Sparkle", + "fila_color_name": { + "de": "Glitzerndes Schiefergrau", + "sv": "Granitgrå glans", + "pt": "Slate Gray Sparkle", + "ko": "슬레이트 그레이 스파클", + "ja": "スレート グレース パークル", + "en": "Slate Gray Sparkle", + "it": "Grigio ardesia con brillantini", + "fr": "Gris ardoise scintillant", + "hu": "Csillámló palaszürke", + "zh": "灰色", + "nl": "Sprankelend leigrijs", + "es": "Gris pizarra brillante" + }, + "color_code": "D5", + "fila_color": [ + "#8E9089FF" + ] + }, + { + "fila_color_code": "13501", + "fila_id": "GFA08", + "fila_color_type": "单色", + "fila_type": "PLA Sparkle", + "fila_color_name": { + "de": "Glitzerndes Alpengrün", + "sv": "Alpingrön glans", + "pt": "Alpine Green Sparkle", + "ko": "알파인 그린 스파클", + "ja": "アルパイン グリーン スパークル", + "en": "Alpine Green Sparkle", + "it": "Verde alpino con brillantini", + "fr": "Vert alpin scintillant", + "hu": "Alpesi csillogó zöld", + "zh": "绿色", + "nl": "Sprankelend alpengroen", + "es": "Verde alpino brillante" + }, + "color_code": "G3", + "fila_color": [ + "#3F5443FF" + ] + }, + { + "fila_color_code": "13101", + "fila_id": "GFA08", + "fila_color_type": "单色", + "fila_type": "PLA Sparkle", + "fila_color_name": { + "de": "Glitzerndes Onyx-Schwarz", + "sv": "Onyxsvart glans", + "pt": "Onyx Black Sparkle", + "ko": "오닉스 블랙 스파클", + "ja": "オニキス ブラック スパークル", + "en": "Onyx Black Sparkle", + "it": "Nero onice con brillantini", + "fr": "Onyx noir scintillant", + "hu": "Csillámló ónixfekete", + "zh": "黑色", + "nl": "Sprankelend onyxzwart", + "es": "Negro ónix brillante" + }, + "color_code": "K2", + "fila_color": [ + "#2D2B28FF" + ] + }, + { + "fila_color_code": "13200", + "fila_id": "GFA08", + "fila_color_type": "单色", + "fila_type": "PLA Sparkle", + "fila_color_name": { + "de": "Glitzerndes Karminrot", + "sv": "Mörkröd glans", + "pt": "Crimson Red Sparkle", + "ko": "크림슨 레드 스파클", + "ja": "クリムゾン レッド スパークル", + "en": "Crimson Red Sparkle", + "it": "Rosso cremisi con brillantini", + "fr": "Pourpre scintillant", + "hu": "Csillámló bíborvörös", + "zh": "红色", + "nl": "Sprankelend karmozijnrood", + "es": "Rojo carmesí brillante" + }, + "color_code": "R2", + "fila_color": [ + "#792B36FF" + ] + }, + { + "fila_color_code": "13402", + "fila_id": "GFA08", + "fila_color_type": "单色", + "fila_type": "PLA Sparkle", + "fila_color_name": { + "de": "Klassisches Glitzer-Gold", + "sv": "Klassisk guld glans", + "pt": "Classic Gold Sparkle", + "ko": "클래식 골드 스파클", + "ja": "クラシック ゴールド スパークル", + "en": "Classic Gold Sparkle", + "it": "Oro con brillantini", + "fr": "Doré classique scintillant", + "hu": "Klasszikus csillogó arany", + "zh": "金色", + "nl": "Sprankelend klassiek goud", + "es": "Dorado clásico brillante" + }, + "color_code": "Y1", + "fila_color": [ + "#CEA629FF" + ] + }, + { + "fila_color_code": "12300", + "fila_id": "GFA09", + "fila_color_type": "单色", + "fila_type": "PLA Tough", + "fila_color_name": { + "de": "Orange", + "sv": "Orange", + "pt": "Laranja", + "ko": "오렌지", + "ja": "オレンジ", + "en": "Orange", + "it": "Arancione", + "fr": "Orange", + "hu": "Narancssárga", + "zh": "橙色", + "nl": "Oranje", + "es": "Naranja" + }, + "color_code": "A0", + "fila_color": [ + "#FF7F41FF" + ] + }, + { + "fila_color_code": "12600", + "fila_id": "GFA09", + "fila_color_type": "单色", + "fila_type": "PLA Tough", + "fila_color_name": { + "de": "Hellblau", + "sv": "Ljusblå", + "pt": "Azul-claro", + "ko": "라이트 블루", + "ja": "ライト ブルー", + "en": "Light Blue", + "it": "Azzurro chiaro", + "fr": "Bleu clair", + "hu": "Világoskék", + "zh": "浅蓝", + "nl": "Lichtblauw", + "es": "Azul claro" + }, + "color_code": "B4", + "fila_color": [ + "#0085ADFF" + ] + }, + { + "fila_color_code": "12700", + "fila_id": "GFA09", + "fila_color_type": "单色", + "fila_type": "PLA Tough", + "fila_color_name": { + "de": "Lavendelblau", + "sv": "Lavendelblå", + "pt": "Azul-lavanda", + "ko": "라벤더 블루", + "ja": "ラベンダー ブルー", + "en": "Lavender Blue", + "it": "Blu lavanda", + "fr": "Bleu lavande", + "hu": "Levendulakék", + "zh": "薰衣草紫", + "nl": "Lavendelblauw", + "es": "Azul lavanda" + }, + "color_code": "B5", + "fila_color": [ + "#6667ABFF" + ] + }, + { + "fila_color_code": "12102", + "fila_id": "GFA09", + "fila_color_type": "单色", + "fila_type": "PLA Tough", + "fila_color_name": { + "de": "Grau", + "sv": "Grå", + "pt": "Cinza", + "ko": "그레이", + "ja": "グレー", + "en": "Gray", + "it": "Grigio", + "fr": "Gris", + "hu": "Szürke", + "zh": "灰色", + "nl": "Grijs", + "es": "Gris" + }, + "color_code": "D0", + "fila_color": [ + "#515A6CFF" + ] + }, + { + "fila_color_code": "12103", + "fila_id": "GFA09", + "fila_color_type": "单色", + "fila_type": "PLA Tough", + "fila_color_name": { + "de": "Silber", + "sv": "Silver", + "pt": "Prateado", + "ko": "실버", + "ja": "シルバー", + "en": "Silver", + "it": "Argento", + "fr": "Argenté", + "hu": "Ezüst", + "zh": "银色", + "nl": "Zilver", + "es": "Plateado" + }, + "color_code": "D1", + "fila_color": [ + "#898D8DFF" + ] + }, + { + "fila_color_code": "12500", + "fila_id": "GFA09", + "fila_color_type": "单色", + "fila_type": "PLA Tough", + "fila_color_name": { + "de": "Tannengrün", + "sv": "Pinjegrön", + "pt": "Pinho Verde", + "ko": "파인 그린", + "ja": "パイン グリーン", + "en": "Pine Green", + "it": "Verde pino", + "fr": "Vert pin", + "hu": "Fenyőzöld", + "zh": "松绿", + "nl": "Dennengroen", + "es": "Verde pino" + }, + "color_code": "G4", + "fila_color": [ + "#00482BFF" + ] + }, + { + "fila_color_code": "12101", + "fila_id": "GFA09", + "fila_color_type": "单色", + "fila_type": "PLA Tough", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#25282AFF" + ] + }, + { + "fila_color_code": "12200", + "fila_id": "GFA09", + "fila_color_type": "单色", + "fila_type": "PLA Tough", + "fila_color_name": { + "de": "Zinnoberrot", + "sv": "Vermilionröd", + "pt": "Vermelho Vermilion", + "ko": "버밀리언 레드", + "ja": "バーミリオン レッド", + "en": "Vermilion Red", + "it": "Rosso vermiglio", + "fr": "Rouge vermillon", + "hu": "Cinóbervörös", + "zh": "朱砂红", + "nl": "Vermiljoenrood", + "es": "Rojo bermellón" + }, + "color_code": "R3", + "fila_color": [ + "#DD3C22FF" + ] + }, + { + "fila_color_code": "12100", + "fila_id": "GFA09", + "fila_color_type": "单色", + "fila_type": "PLA Tough", + "fila_color_name": { + "de": "Weiß", + "sv": "Vit", + "pt": "Branco", + "ko": "화이트", + "ja": "ホワイト", + "en": "White", + "it": "Bianco", + "fr": "Blanc", + "hu": "Fehér", + "zh": "白色", + "nl": "Wit", + "es": "Blanco" + }, + "color_code": "W3", + "fila_color": [ + "#F9F7F4FF" + ] + }, + { + "fila_color_code": "12400", + "fila_id": "GFA09", + "fila_color_type": "单色", + "fila_type": "PLA Tough", + "fila_color_name": { + "de": "Gelb", + "sv": "Gul", + "pt": "Amarelo", + "ko": "옐로우", + "ja": "イエロー", + "en": "Yellow", + "it": "Giallo", + "fr": "Jaune", + "hu": "Sárga", + "zh": "黄色", + "nl": "Geel", + "es": "Amarillo" + }, + "color_code": "Y0", + "fila_color": [ + "#FEDB00FF" + ] + }, + { + "fila_color_code": "14104", + "fila_id": "GFA11", + "fila_color_type": "单色", + "fila_type": "PLA Aero", + "fila_color_name": { + "de": "Grau", + "sv": "Grå", + "pt": "Cinza", + "ko": "그레이", + "ja": "グレー", + "en": "Gray", + "it": "Grigio", + "fr": "Gris", + "hu": "Szürke", + "zh": "灰色", + "nl": "Grijs", + "es": "Gris" + }, + "color_code": "D0", + "fila_color": [ + "#CDCECAFF" + ] + }, + { + "fila_color_code": "14103", + "fila_id": "GFA11", + "fila_color_type": "单色", + "fila_type": "PLA Aero", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "14102", + "fila_id": "GFA11", + "fila_color_type": "单色", + "fila_type": "PLA Aero", + "fila_color_name": { + "de": "Weiß", + "sv": "Vit", + "pt": "Branco", + "ko": "화이트", + "ja": "ホワイト", + "en": "White", + "it": "Bianco", + "fr": "Blanc", + "hu": "Fehér", + "zh": "白色", + "nl": "Wit", + "es": "Blanco" + }, + "color_code": "W0", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "15300", + "fila_id": "GFA12", + "fila_color_type": "单色", + "fila_type": "PLA Glow", + "fila_color_name": { + "de": "Leuchtend-Orange", + "sv": "Orange glöd", + "pt": "Brilho Laranja", + "ko": "글로우 오렌지", + "ja": "グロー オレンジ", + "en": "Glow Orange", + "it": "Arancione fosforescente", + "fr": "Orange éclatant", + "hu": "Ragyogó narancssárga", + "zh": "夜光橙", + "nl": "Oranje gloed", + "es": "Naranja brillante" + }, + "color_code": "A0", + "fila_color": [ + "#FF9D5BFF" + ] + }, + { + "fila_color_code": "15600", + "fila_id": "GFA12", + "fila_color_type": "单色", + "fila_type": "PLA Glow", + "fila_color_name": { + "de": "Leuchtend-Blau", + "sv": "Blå glöd", + "pt": "Brilho Azul", + "ko": "글로우 블루", + "ja": "グロー ブルー", + "en": "Glow Blue", + "it": "Blu fosforescente", + "fr": "Bleu éclatant", + "hu": "Ragyogó kék", + "zh": "夜光蓝", + "nl": "Blauwe gloed", + "es": "Azul brillante" + }, + "color_code": "B0", + "fila_color": [ + "#7AC0E9FF" + ] + }, + { + "fila_color_code": "15500", + "fila_id": "GFA12", + "fila_color_type": "单色", + "fila_type": "PLA Glow", + "fila_color_name": { + "de": "Leuchtend-Grün", + "sv": "Grön glöd", + "pt": "Brilho Verde", + "ko": "글로우 그린", + "ja": "グロー グリーン", + "en": "Glow Green", + "it": "Verde fosforescente", + "fr": "Vert éclatant", + "hu": "Ragyogó zöld", + "zh": "夜光绿", + "nl": "Groene gloed", + "es": "Verde brillante" + }, + "color_code": "G0", + "fila_color": [ + "#A1FFACFF" + ] + }, + { + "fila_color_code": "15200", + "fila_id": "GFA12", + "fila_color_type": "单色", + "fila_type": "PLA Glow", + "fila_color_name": { + "de": "Leuchtend-Pink", + "sv": "Rosa glöd", + "pt": "Rosa Brilhante", + "ko": "글로우 핑크", + "ja": "グロー ピンク", + "en": "Glow Pink", + "it": "Rosa fosforescente", + "fr": "Rose éclatant", + "hu": "Ragyogó rózsaszín", + "zh": "夜光粉", + "nl": "Roze gloed", + "es": "Rosa brillante" + }, + "color_code": "R0", + "fila_color": [ + "#F17B8FFF" + ] + }, + { + "fila_color_code": "15400", + "fila_id": "GFA12", + "fila_color_type": "单色", + "fila_type": "PLA Glow", + "fila_color_name": { + "de": "Leuchtend-Gelb", + "sv": "Gul glöd", + "pt": "Amarelo Brilhante", + "ko": "글로우 옐로우", + "ja": "グロー イエロー", + "en": "Glow Yellow", + "it": "Giallo fosforescente", + "fr": "Jaune éclatant", + "hu": "Ragyogó sárga", + "zh": "夜光黄", + "nl": "Gele gloed", + "es": "Amarillo brillante" + }, + "color_code": "Y0", + "fila_color": [ + "#F8FF80FF" + ] + }, + { + "fila_color_code": "15100", + "fila_id": "GFA13", + "fila_color_type": "单色", + "fila_type": "PLA Dynamic", + "fila_color_name": { + "de": "UV-Farbwechsel – Weiß nach Koralle", + "sv": "UV-toning - vit till korall", + "pt": "Mudança de cor UV — Branco para coral", + "ko": "UV 컬러 변경 - 화이트에서 코랄로", + "ja": "UV カラー チェンジ - ホワイトからコーラル", + "en": "UV Color Changing - White to Coral", + "it": "Cambia colore con l'esposizione ai raggi UV - Da bianco a corallo", + "fr": "Changement de couleur UV - Blanc à corail", + "hu": "UV-színváltó – fehérről korallra", + "zh": "光变-白变粉", + "nl": "UV-kleurverandering: wit naar koraal", + "es": "De blanco a coral (Cambia con los rayos UV)" + }, + "color_code": "W0", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "13602", + "fila_id": "GFA15", + "fila_color_type": "单色", + "fila_type": "PLA Galaxy", + "fila_color_name": { + "de": "Lila", + "sv": "Lila", + "pt": "Roxo", + "ko": "퍼플", + "ja": "パープル", + "en": "Purple", + "it": "Viola", + "fr": "Violet", + "hu": "Lila", + "zh": "星河紫", + "nl": "Paars", + "es": "Púrpura" + }, + "color_code": "B0", + "fila_color": [ + "#594177FF" + ] + }, + { + "fila_color_code": "13503", + "fila_id": "GFA15", + "fila_color_type": "单色", + "fila_type": "PLA Galaxy", + "fila_color_name": { + "de": "Grün", + "sv": "Grön", + "pt": "Verde", + "ko": "그린", + "ja": "グリーン", + "en": "Green", + "it": "Verde", + "fr": "Vert", + "hu": "Zöld", + "zh": "星河绿", + "nl": "Groen", + "es": "Verde" + }, + "color_code": "G0", + "fila_color": [ + "#3B665EFF" + ] + }, + { + "fila_color_code": "13504", + "fila_id": "GFA15", + "fila_color_type": "单色", + "fila_type": "PLA Galaxy", + "fila_color_name": { + "de": "Nebel", + "sv": "Nebulosor", + "pt": "Nebulae", + "ko": "네뷸라", + "ja": "ネビュリー", + "en": "Nebulae", + "it": "Nebula", + "fr": "Nébuleuse", + "hu": "Űrbéli ködök", + "zh": "星云色", + "nl": "Nevelig", + "es": "Nebulosa" + }, + "color_code": "G1", + "fila_color": [ + "#424379FF" + ] + }, + { + "fila_color_code": "13203", + "fila_id": "GFA15", + "fila_color_type": "单色", + "fila_type": "PLA Galaxy", + "fila_color_name": { + "de": "Braun", + "sv": "Brun", + "pt": "Marrom", + "ko": "브라운", + "ja": "ブラウン", + "en": "Brown", + "it": "Marrone", + "fr": "Marron", + "hu": "Barna", + "zh": "星河棕", + "nl": "Bruin", + "es": "Marrón" + }, + "color_code": "R0", + "fila_color": [ + "#684A43FF" + ] + }, + { + "fila_color_code": "13505", + "fila_id": "GFA16", + "fila_color_type": "单色", + "fila_type": "PLA Wood", + "fila_color_name": { + "de": "Klassische Birke", + "sv": "Klassisk björk", + "pt": "Classic Birch", + "ko": "클래식 버치", + "ja": "クラシック バーチ", + "en": "Classic Birch", + "it": "Betulla", + "fr": "Bouleau classique", + "hu": "Klasszikus nyírfa", + "zh": "经典桦木", + "nl": "Klassieke berk", + "es": "Abedul clásico" + }, + "color_code": "G0", + "fila_color": [ + "#918669FF" + ] + }, + { + "fila_color_code": "13107", + "fila_id": "GFA16", + "fila_color_type": "单色", + "fila_type": "PLA Wood", + "fila_color_name": { + "de": "Schwarze Walnuss", + "sv": "Svart valnöt", + "pt": "Noz preta", + "ko": "블랙 월넛", + "ja": "ブラック ウォールナット", + "en": "Black Walnut", + "it": "Noce nero", + "fr": "Noyer noir", + "hu": "Fekete dió", + "zh": "黑胡桃", + "nl": "Walnootzwart", + "es": "Nogal negro" + }, + "color_code": "K0", + "fila_color": [ + "#4F3F24FF" + ] + }, + { + "fila_color_code": "13801", + "fila_id": "GFA16", + "fila_color_type": "单色", + "fila_type": "PLA Wood", + "fila_color_name": { + "de": "Lehmbraun", + "sv": "Lerbrun", + "pt": "Clay Brown", + "ko": "클레이 브라운", + "ja": "クレイ ブラウン", + "en": "Clay Brown", + "it": "Marrone argilla", + "fr": "Marron argile", + "hu": "Agyagbarna", + "zh": "陶土褐", + "nl": "Modderbruin", + "es": "Marrón arcilla" + }, + "color_code": "N0", + "fila_color": [ + "#995F11FF" + ] + }, + { + "fila_color_code": "13204", + "fila_id": "GFA16", + "fila_color_type": "单色", + "fila_type": "PLA Wood", + "fila_color_name": { + "de": "Rosenholz", + "sv": "Rosenträ", + "pt": "Jacarandá", + "ko": "로즈우드", + "ja": "ローズウッド", + "en": "Rosewood", + "it": "Palissandro", + "fr": "Palissandre", + "hu": "Rózsafa", + "zh": "红木", + "nl": "Rozenhout", + "es": "Palo de rosa" + }, + "color_code": "R0", + "fila_color": [ + "#4C241CFF" + ] + }, + { + "fila_color_code": "13106", + "fila_id": "GFA16", + "fila_color_type": "单色", + "fila_type": "PLA Wood", + "fila_color_name": { + "de": "Weiße Eiche", + "sv": "Vit ek", + "pt": "Carvalho Branco", + "ko": "화이트 오크", + "ja": "ホワイト オーク", + "en": "White Oak", + "it": "Rovere bianco", + "fr": "Chêne blanc", + "hu": "Fehér tölgy", + "zh": "白橡木", + "nl": "Wit eiken", + "es": "Roble blanco" + }, + "color_code": "W0", + "fila_color": [ + "#D6CCA3FF" + ] + }, + { + "fila_color_code": "13403", + "fila_id": "GFA16", + "fila_color_type": "单色", + "fila_type": "PLA Wood", + "fila_color_name": { + "de": "Ockergelb", + "sv": "Ockragul", + "pt": "Amarelo-ocre", + "ko": "오커 옐로우", + "ja": "オーカー イエロー", + "en": "Ochre Yellow", + "it": "Giallo ocra", + "fr": "Jaune ocre", + "hu": "Okkersárga", + "zh": "赭石黄", + "nl": "Okergeel", + "es": "Amarillo ocre" + }, + "color_code": "Y0", + "fila_color": [ + "#C98935FF" + ] + }, + { + "fila_color_code": "14601", + "fila_id": "GFA50", + "fila_color_type": "单色", + "fila_type": "PLA-CF", + "fila_color_name": { + "de": "Königsblau", + "sv": "Kungsblå", + "pt": "Azul Royal", + "ko": "로얄 블루", + "ja": "ロイヤル ブルー", + "en": "Royal Blue", + "it": "Blu royal", + "fr": "Bleu royal", + "hu": "Királykék", + "zh": "皇家蓝", + "nl": "Koningsblauw", + "es": "Azul real" + }, + "color_code": "B6", + "fila_color": [ + "#2842ADFF" + ] + }, + { + "fila_color_code": "14600", + "fila_id": "GFA50", + "fila_color_type": "单色", + "fila_type": "PLA-CF", + "fila_color_name": { + "de": "Jeansblau", + "sv": "Jeansblå", + "pt": "Jeans Azul", + "ko": "진 블루", + "ja": "ジーンズ ブルー", + "en": "Jeans Blue", + "it": "Blu jeans", + "fr": "Jean bleu", + "hu": "Farmerkék", + "zh": "牛仔蓝", + "nl": "Jeansblauw", + "es": "Azul vaquero" + }, + "color_code": "B9", + "fila_color": [ + "#6e88bcFF" + ] + }, + { + "fila_color_code": "14101", + "fila_id": "GFA50", + "fila_color_type": "单色", + "fila_type": "PLA-CF", + "fila_color_name": { + "de": "Lava-Grau", + "sv": "Lavagrå", + "pt": "Lava Cinza", + "ko": "라바 그레이", + "ja": "ラバ グレー", + "en": "Lava Gray", + "it": "Grigio lava", + "fr": "Gris lave", + "hu": "Lávaszürke", + "zh": "熔岩灰", + "nl": "Lavagrijs", + "es": "Gris lava" + }, + "color_code": "D6", + "fila_color": [ + "#4d5054FF" + ] + }, + { + "fila_color_code": "14500", + "fila_id": "GFA50", + "fila_color_type": "单色", + "fila_type": "PLA-CF", + "fila_color_name": { + "de": "Matcha-Grün", + "sv": "Matchagrön", + "pt": "Matcha Green", + "ko": "마차 그린", + "ja": "抹茶グリーン", + "en": "Matcha Green", + "it": "Verde matcha", + "fr": "Vert matcha", + "hu": "Matchazöld", + "zh": "抹茶绿", + "nl": "Matchagroen", + "es": "Verde matcha" + }, + "color_code": "G7", + "fila_color": [ + "#5c9748FF" + ] + }, + { + "fila_color_code": "14100", + "fila_id": "GFA50", + "fila_color_type": "单色", + "fila_type": "PLA-CF", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "14700", + "fila_id": "GFA50", + "fila_color_type": "单色", + "fila_type": "PLA-CF", + "fila_color_name": { + "de": "Iris-Violett", + "sv": "Irislila", + "pt": "Íris Roxa", + "ko": "아이리스 퍼플", + "ja": "アイリス パープル", + "en": "Iris Purple", + "it": "Viola iris", + "fr": "Violet iris", + "hu": "Íriszlila", + "zh": "鸢尾花紫", + "nl": "Irispaars", + "es": "Púrpura iris" + }, + "color_code": "P7", + "fila_color": [ + "#69398EFF" + ] + }, + { + "fila_color_code": "14200", + "fila_id": "GFA50", + "fila_color_type": "单色", + "fila_type": "PLA-CF", + "fila_color_name": { + "de": "Burgunderrot", + "sv": "Vinröd", + "pt": "Burgundy Red", + "ko": "버건디 레드", + "ja": "バーガンディ レッド", + "en": "Burgundy Red", + "it": "Rosso borgogna", + "fr": "Rouge bordeaux", + "hu": "Bordó-vörös", + "zh": "勃艮第红", + "nl": "Wijnrood", + "es": "Rojo burdeos" + }, + "color_code": "R4", + "fila_color": [ + "#951e23FF" + ] + }, + { + "fila_color_code": "40300", + "fila_id": "GFB00", + "fila_color_type": "单色", + "fila_type": "ABS", + "fila_color_name": { + "de": "Orange", + "sv": "Orange", + "pt": "Laranja", + "ko": "오렌지", + "ja": "オレンジ", + "en": "Orange", + "it": "Arancione", + "fr": "Orange", + "hu": "Narancssárga", + "zh": "橙色", + "nl": "Oranje", + "es": "Naranja" + }, + "color_code": "A0", + "fila_color": [ + "#FF6A13FF" + ] + }, + { + "fila_color_code": "40600", + "fila_id": "GFB00", + "fila_color_type": "单色", + "fila_type": "ABS", + "fila_color_name": { + "de": "Blau", + "sv": "Blå", + "pt": "Azul", + "ko": "블루", + "ja": "ブルー", + "en": "Blue", + "it": "Blu", + "fr": "Bleu", + "hu": "Kék", + "zh": "蓝色", + "nl": "Blauw", + "es": "Azul" + }, + "color_code": "B0", + "fila_color": [ + "#0A2CA5FF" + ] + }, + { + "fila_color_code": "40601", + "fila_id": "GFB00", + "fila_color_type": "单色", + "fila_type": "ABS", + "fila_color_name": { + "de": "Azurblau", + "sv": "Azurblå", + "pt": "Azure", + "ko": "애저", + "ja": "アズール", + "en": "Azure", + "it": "Azzurro", + "fr": "Bleu azur", + "hu": "Azúr", + "zh": "天蓝色", + "nl": "Azuurblauw", + "es": "Azul celeste" + }, + "color_code": "B4", + "fila_color": [ + "#489FDFFF" + ] + }, + { + "fila_color_code": "40602", + "fila_id": "GFB00", + "fila_color_type": "单色", + "fila_type": "ABS", + "fila_color_name": { + "de": "Marineblau", + "sv": "Marinblå", + "pt": "Azul-marinho", + "ko": "네이비 블루", + "ja": "ネイビー ブルー", + "en": "Navy Blue", + "it": "Blu navy", + "fr": "Bleu marine", + "hu": "Tengerészkék", + "zh": "藏青色", + "nl": "Marineblauw", + "es": "Azul marino oscuro" + }, + "color_code": "B6", + "fila_color": [ + "#0C2340FF" + ] + }, + { + "fila_color_code": "40501", + "fila_id": "GFB00", + "fila_color_type": "单色", + "fila_type": "ABS", + "fila_color_name": { + "de": "Minze", + "sv": "Mint", + "pt": "Menta", + "ko": "민트", + "ja": "ミント", + "en": "Mint", + "it": "Menta", + "fr": "Menthe", + "hu": "Menta", + "zh": "青色", + "nl": "Munt", + "es": "Menta" + }, + "color_code": "B8", + "fila_color": [ + "#7AE1BFFF" + ] + }, + { + "fila_color_code": "40102", + "fila_id": "GFB00", + "fila_color_type": "单色", + "fila_type": "ABS", + "fila_color_name": { + "de": "Silber", + "sv": "Silver", + "pt": "Prateado", + "ko": "실버", + "ja": "シルバー", + "en": "Silver", + "it": "Argento", + "fr": "Argenté", + "hu": "Ezüst", + "zh": "银色", + "nl": "Zilver", + "es": "Plateado" + }, + "color_code": "D1", + "fila_color": [ + "#87909AFF" + ] + }, + { + "fila_color_code": "40500", + "fila_id": "GFB00", + "fila_color_type": "单色", + "fila_type": "ABS", + "fila_color_name": { + "de": "Bambusgrün", + "sv": "Bambugrön", + "pt": "Verde-bambu", + "ko": "뱀부 그린", + "ja": "バンブー グリーン", + "en": "Bambu Green", + "it": "Verde bambù", + "fr": "Vert bambou", + "hu": "Bambu-zöld", + "zh": "拓竹绿", + "nl": "Bamboegroen", + "es": "Verde bambú" + }, + "color_code": "G6", + "fila_color": [ + "#00AE42FF" + ] + }, + { + "fila_color_code": "40502", + "fila_id": "GFB00", + "fila_color_type": "单色", + "fila_type": "ABS", + "fila_color_name": { + "de": "Olive", + "sv": "Oliv", + "pt": "Olive", + "ko": "올리브", + "ja": "オリーブ", + "en": "Olive", + "it": "Oliva", + "fr": "Olive", + "hu": "Olivazöld", + "zh": "橄榄绿", + "nl": "Olijf", + "es": "Oliva" + }, + "color_code": "G7", + "fila_color": [ + "#789D4AFF" + ] + }, + { + "fila_color_code": "40101", + "fila_id": "GFB00", + "fila_color_type": "单色", + "fila_type": "ABS", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "40701", + "fila_id": "GFB00", + "fila_color_type": "单色", + "fila_type": "ABS", + "fila_color_name": { + "de": "Lavendel", + "sv": "Lavendel", + "pt": "Lavanda", + "ko": "라벤더", + "ja": "ラベンダー", + "en": "Lavender", + "it": "Lavanda", + "fr": "Lavande", + "hu": "Levendula", + "zh": "薰衣草紫", + "nl": "Lavendel", + "es": "Lavanda" + }, + "color_code": "P4", + "fila_color": [ + "#7248BDFF" + ] + }, + { + "fila_color_code": "40700", + "fila_id": "GFB00", + "fila_color_type": "单色", + "fila_type": "ABS", + "fila_color_name": { + "de": "Lila", + "sv": "Lila", + "pt": "Roxo", + "ko": "퍼플", + "ja": "パープル", + "en": "Purple", + "it": "Viola", + "fr": "Violet", + "hu": "Lila", + "zh": "紫色", + "nl": "Paars", + "es": "Púrpura" + }, + "color_code": "P6", + "fila_color": [ + "#AF1685FF" + ] + }, + { + "fila_color_code": "40200", + "fila_id": "GFB00", + "fila_color_type": "单色", + "fila_type": "ABS", + "fila_color_name": { + "de": "Rot", + "sv": "Röd", + "pt": "Vermelho", + "ko": "레드", + "ja": "レッド", + "en": "Red", + "it": "Rosso", + "fr": "Rouge", + "hu": "Piros", + "zh": "红色", + "nl": "Rood", + "es": "Rojo" + }, + "color_code": "R0", + "fila_color": [ + "#D32941FF" + ] + }, + { + "fila_color_code": "40100", + "fila_id": "GFB00", + "fila_color_type": "单色", + "fila_type": "ABS", + "fila_color_name": { + "de": "Weiß", + "sv": "Vit", + "pt": "Branco", + "ko": "화이트", + "ja": "ホワイト", + "en": "White", + "it": "Bianco", + "fr": "Blanc", + "hu": "Fehér", + "zh": "白色", + "nl": "Wit", + "es": "Blanco" + }, + "color_code": "W0", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "40400", + "fila_id": "GFB00", + "fila_color_type": "单色", + "fila_type": "ABS", + "fila_color_name": { + "de": "Gelb", + "sv": "Gul", + "pt": "Amarelo", + "ko": "옐로우", + "ja": "イエロー", + "en": "Yellow", + "it": "Giallo", + "fr": "Jaune", + "hu": "Sárga", + "zh": "黄色", + "nl": "Geel", + "es": "Amarillo" + }, + "color_code": "Y0", + "fila_color": [ + "#FCE900FF" + ] + }, + { + "fila_color_code": "40402", + "fila_id": "GFB00", + "fila_color_type": "单色", + "fila_type": "ABS", + "fila_color_name": { + "de": "Mandarinengelb", + "sv": "Mandaringul", + "pt": "Amarelo Tangerina", + "ko": "탠저린 옐로우", + "ja": "タンジェリン イエロー", + "en": "Tangerine Yellow", + "it": "Giallo tangerine", + "fr": "Jaune mandarine", + "hu": "Tangerin", + "zh": "橘黄", + "nl": "Feloranjegeel", + "es": "Amarillo mandarina" + }, + "color_code": "Y1", + "fila_color": [ + "#FFC72CFF" + ] + }, + { + "fila_color_code": "40401", + "fila_id": "GFB00", + "fila_color_type": "单色", + "fila_type": "ABS", + "fila_color_name": { + "de": "Beige", + "sv": "Beige", + "pt": "Bege", + "ko": "베이지", + "ja": "ベージュ", + "en": "Beige", + "it": "Beige", + "fr": "Beige", + "hu": "Bézs", + "zh": "卡其色", + "nl": "Beige", + "es": "Beis" + }, + "color_code": "Y2", + "fila_color": [ + "#DFD1A7FF" + ] + }, + { + "fila_color_code": "45600", + "fila_id": "GFB01", + "fila_color_type": "单色", + "fila_type": "ASA", + "fila_color_name": { + "de": "Blau", + "sv": "Blå", + "pt": "Azul", + "ko": "블루", + "ja": "ブルー", + "en": "Blue", + "it": "Blu", + "fr": "Bleu", + "hu": "Kék", + "zh": "蓝色", + "nl": "Blauw", + "es": "Azul" + }, + "color_code": "B0", + "fila_color": [ + "#2140B4FF" + ] + }, + { + "fila_color_code": "45102", + "fila_id": "GFB01", + "fila_color_type": "单色", + "fila_type": "ASA", + "fila_color_name": { + "de": "Grau", + "sv": "Grå", + "pt": "Cinza", + "ko": "그레이", + "ja": "グレー", + "en": "Gray", + "it": "Grigio", + "fr": "Gris", + "hu": "Szürke", + "zh": "灰色", + "nl": "Grijs", + "es": "Gris" + }, + "color_code": "D0", + "fila_color": [ + "#8A949EFF" + ] + }, + { + "fila_color_code": "45500", + "fila_id": "GFB01", + "fila_color_type": "单色", + "fila_type": "ASA", + "fila_color_name": { + "de": "Grün", + "sv": "Grön", + "pt": "Verde", + "ko": "그린", + "ja": "グリーン", + "en": "Green", + "it": "Verde", + "fr": "Vert", + "hu": "Zöld", + "zh": "绿色", + "nl": "Groen", + "es": "Verde" + }, + "color_code": "G0", + "fila_color": [ + "#00A6A0FF" + ] + }, + { + "fila_color_code": "45101", + "fila_id": "GFB01", + "fila_color_type": "单色", + "fila_type": "ASA", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "45200", + "fila_id": "GFB01", + "fila_color_type": "单色", + "fila_type": "ASA", + "fila_color_name": { + "de": "Rot", + "sv": "Röd", + "pt": "Vermelho", + "ko": "레드", + "ja": "レッド", + "en": "Red", + "it": "Rosso", + "fr": "Rouge", + "hu": "Piros", + "zh": "红色", + "nl": "Rood", + "es": "Rojo" + }, + "color_code": "R0", + "fila_color": [ + "#E02928FF" + ] + }, + { + "fila_color_code": "45100", + "fila_id": "GFB01", + "fila_color_type": "单色", + "fila_type": "ASA", + "fila_color_name": { + "de": "Weiß", + "sv": "Vit", + "pt": "Branco", + "ko": "화이트", + "ja": "ホワイト", + "en": "White", + "it": "Bianco", + "fr": "Blanc", + "hu": "Fehér", + "zh": "白色", + "nl": "Wit", + "es": "Blanco" + }, + "color_code": "W0", + "fila_color": [ + "#FFFAF2FF" + ] + }, + { + "fila_color_code": "46100", + "fila_id": "GFB02", + "fila_color_type": "单色", + "fila_type": "ASA Aero", + "fila_color_name": { + "de": "Weiß", + "sv": "Vit", + "pt": "Branco", + "ko": "화이트", + "ja": "ホワイト", + "en": "White", + "it": "Bianco", + "fr": "Blanc", + "hu": "Fehér", + "zh": "白色", + "nl": "Wit", + "es": "Blanco" + }, + "color_code": "W0", + "fila_color": [ + "#F5F1DDFF" + ] + }, + { + "fila_color_code": "41300", + "fila_id": "GFB50", + "fila_color_type": "单色", + "fila_type": "ABS-GF", + "fila_color_name": { + "de": "Orange", + "sv": "Orange", + "pt": "Laranja", + "ko": "오렌지", + "ja": "オレンジ", + "en": "Orange", + "it": "Arancione", + "fr": "Orange", + "hu": "Narancssárga", + "zh": "橙色", + "nl": "Oranje", + "es": "Naranja" + }, + "color_code": "A0", + "fila_color": [ + "#F48438FF" + ] + }, + { + "fila_color_code": "41600", + "fila_id": "GFB50", + "fila_color_type": "单色", + "fila_type": "ABS-GF", + "fila_color_name": { + "de": "Blau", + "sv": "Blå", + "pt": "Azul", + "ko": "블루", + "ja": "ブルー", + "en": "Blue", + "it": "Blu", + "fr": "Bleu", + "hu": "Kék", + "zh": "蓝色", + "nl": "Blauw", + "es": "Azul" + }, + "color_code": "B0", + "fila_color": [ + "#0C3B95FF" + ] + }, + { + "fila_color_code": "41102", + "fila_id": "GFB50", + "fila_color_type": "单色", + "fila_type": "ABS-GF", + "fila_color_name": { + "de": "Grau", + "sv": "Grå", + "pt": "Cinza", + "ko": "그레이", + "ja": "グレー", + "en": "Gray", + "it": "Grigio", + "fr": "Gris", + "hu": "Szürke", + "zh": "灰色", + "nl": "Grijs", + "es": "Gris" + }, + "color_code": "D0", + "fila_color": [ + "#C6C6C6FF" + ] + }, + { + "fila_color_code": "41500", + "fila_id": "GFB50", + "fila_color_type": "单色", + "fila_type": "ABS-GF", + "fila_color_name": { + "de": "Grün", + "sv": "Grön", + "pt": "Verde", + "ko": "그린", + "ja": "グリーン", + "en": "Green", + "it": "Verde", + "fr": "Vert", + "hu": "Zöld", + "zh": "绿色", + "nl": "Groen", + "es": "Verde" + }, + "color_code": "G0", + "fila_color": [ + "#61BF36FF" + ] + }, + { + "fila_color_code": "41101", + "fila_id": "GFB50", + "fila_color_type": "单色", + "fila_type": "ABS-GF", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "41200", + "fila_id": "GFB50", + "fila_color_type": "单色", + "fila_type": "ABS-GF", + "fila_color_name": { + "de": "Rot", + "sv": "Röd", + "pt": "Vermelho", + "ko": "레드", + "ja": "レッド", + "en": "Red", + "it": "Rosso", + "fr": "Rouge", + "hu": "Piros", + "zh": "红色", + "nl": "Rood", + "es": "Rojo" + }, + "color_code": "R0", + "fila_color": [ + "#E83100FF" + ] + }, + { + "fila_color_code": "41100", + "fila_id": "GFB50", + "fila_color_type": "单色", + "fila_type": "ABS-GF", + "fila_color_name": { + "de": "Weiß", + "sv": "Vit", + "pt": "Branco", + "ko": "화이트", + "ja": "ホワイト", + "en": "White", + "it": "Bianco", + "fr": "Blanc", + "hu": "Fehér", + "zh": "白色", + "nl": "Wit", + "es": "Blanco" + }, + "color_code": "W0", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "41400", + "fila_id": "GFB50", + "fila_color_type": "单色", + "fila_type": "ABS-GF", + "fila_color_name": { + "de": "Gelb", + "sv": "Gul", + "pt": "Amarelo", + "ko": "옐로우", + "ja": "イエロー", + "en": "Yellow", + "it": "Giallo", + "fr": "Jaune", + "hu": "Sárga", + "zh": "黄色", + "nl": "Geel", + "es": "Amarillo" + }, + "color_code": "Y0", + "fila_color": [ + "#FFE133FF" + ] + }, + { + "fila_color_code": "46101", + "fila_id": "GFB51", + "fila_color_type": "单色", + "fila_type": "ASA-CF", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "60102", + "fila_id": "GFC00", + "fila_color_type": "单色", + "fila_type": "PC", + "fila_color_name": { + "de": "Klares Schwarz", + "sv": "Klar svart", + "pt": "Preto-claro", + "ko": "클리어 블랙", + "ja": "クリア ブラック", + "en": "Clear Black", + "it": "Nero trasparente", + "fr": "Noir transparent", + "hu": "Tiszta fekete", + "zh": "透明黑", + "nl": "Helder zwart", + "es": "Negro transparente" + }, + "color_code": "C0", + "fila_color": [ + "#68686580" + ] + }, + { + "fila_color_code": "60103", + "fila_id": "GFC00", + "fila_color_type": "单色", + "fila_type": "PC", + "fila_color_name": { + "de": "Durchsichtig", + "sv": "Genomskinlig", + "pt": "Transparente", + "ko": "투명", + "ja": "トランスペアレント", + "en": "Transparent", + "it": "Trasparente", + "fr": "Transparent", + "hu": "Áttetsző", + "zh": "透明", + "nl": "Transparant", + "es": "Translúcido" + }, + "color_code": "C1", + "fila_color": [ + "#00000000" + ] + }, + { + "fila_color_code": "60101", + "fila_id": "GFC00", + "fila_color_type": "单色", + "fila_type": "PC", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "60100", + "fila_id": "GFC00", + "fila_color_type": "单色", + "fila_type": "PC", + "fila_color_name": { + "de": "Weiß", + "sv": "Vit", + "pt": "Branco", + "ko": "화이트", + "ja": "ホワイト", + "en": "White", + "it": "Bianco", + "fr": "Blanc", + "hu": "Fehér", + "zh": "白色", + "nl": "Wit", + "es": "Blanco" + }, + "color_code": "W0", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "63102", + "fila_id": "GFC01", + "fila_color_type": "单色", + "fila_type": "PC FR", + "fila_color_name": { + "de": "Grau", + "sv": "Grå", + "pt": "Cinza", + "ko": "그레이", + "ja": "グレー", + "en": "Gray", + "it": "Grigio", + "fr": "Gris", + "hu": "Szürke", + "zh": "灰色", + "nl": "Grijs", + "es": "Gris" + }, + "color_code": "D0", + "fila_color": [ + "#A8A8AAFF" + ] + }, + { + "fila_color_code": "63100", + "fila_id": "GFC01", + "fila_color_type": "单色", + "fila_type": "PC FR", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "63101", + "fila_id": "GFC01", + "fila_color_type": "单色", + "fila_type": "PC FR", + "fila_color_name": { + "de": "Weiß", + "sv": "Vit", + "pt": "Branco", + "ko": "화이트", + "ja": "ホワイト", + "en": "White", + "it": "Bianco", + "fr": "Blanc", + "hu": "Fehér", + "zh": "白色", + "nl": "Wit", + "es": "Blanco" + }, + "color_code": "W0", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "32300", + "fila_id": "GFG01", + "fila_color_type": "单色", + "fila_type": "PETG Translucent", + "fila_color_name": { + "de": "Durchsichtiges Orange", + "sv": "Genomskinlig orange", + "pt": "Laranja Translúcido", + "ko": "반투명 오렌지", + "ja": "トランスルーセント オレンジ", + "en": "Translucent Orange", + "it": "Arancione traslucido", + "fr": "Orange translucide", + "hu": "Áttetsző narancssárga", + "zh": "透明橘", + "nl": "Doorschijnend oranje", + "es": "Naranja translúcido" + }, + "color_code": "A0", + "fila_color": [ + "#FF911A80" + ] + }, + { + "fila_color_code": "32600", + "fila_id": "GFG01", + "fila_color_type": "单色", + "fila_type": "PETG Translucent", + "fila_color_name": { + "de": "Durchsichtiges Hellblau", + "sv": "Genomskinlig ljusblå", + "pt": "Azul-claro Translúcido", + "ko": "반투명 라이트 블루", + "ja": "トランスルーセント ライト ブルー", + "en": "Translucent Light Blue", + "it": "Azzurro traslucido", + "fr": "Bleu clair translucide", + "hu": "Áttetsző világoskék", + "zh": "透明浅蓝", + "nl": "Doorschijnend lichtblauw", + "es": "Azul claro translúcido" + }, + "color_code": "B0", + "fila_color": [ + "#61B0FF80" + ] + }, + { + "fila_color_code": "32101", + "fila_id": "GFG01", + "fila_color_type": "单色", + "fila_type": "PETG Translucent", + "fila_color_name": { + "de": "Klar", + "sv": "Klar", + "pt": "Claro", + "ko": "클리어", + "ja": "クリア", + "en": "Clear", + "it": "Trasparente", + "fr": "Transparent", + "hu": "Átlátszó", + "zh": "透明", + "nl": "Helder", + "es": "Transparente" + }, + "color_code": "C0", + "fila_color": [ + "#00000000" + ] + }, + { + "fila_color_code": "32100", + "fila_id": "GFG01", + "fila_color_type": "单色", + "fila_type": "PETG Translucent", + "fila_color_name": { + "de": "Durchsichtiges Grau", + "sv": "Genomskinlig grå", + "pt": "Cinza Translúcido", + "ko": "반투명 그레이", + "ja": "トランスルーセント グレー", + "en": "Translucent Gray", + "it": "Grigio traslucido", + "fr": "Gris translucide", + "hu": "Áttetsző szürke", + "zh": "透明灰", + "nl": "Doorschijnend grijs", + "es": "Gris translúcido" + }, + "color_code": "D0", + "fila_color": [ + "#8E8E8E80" + ] + }, + { + "fila_color_code": "32500", + "fila_id": "GFG01", + "fila_color_type": "单色", + "fila_type": "PETG Translucent", + "fila_color_name": { + "de": "Durchsichtiges Olivgrün", + "sv": "Genomskinlig oliv", + "pt": "Oliva Translúcido", + "ko": "반투명 올리브", + "ja": "トランスルーセント オリーブ", + "en": "Translucent Olive", + "it": "Oliva traslucido", + "fr": "Olive translucide", + "hu": "Áttetsző olivazöld", + "zh": "透明橄榄绿", + "nl": "Doorschijnend olijf", + "es": "Oliva translúcido" + }, + "color_code": "G0", + "fila_color": [ + "#748C4580" + ] + }, + { + "fila_color_code": "32501", + "fila_id": "GFG01", + "fila_color_type": "单色", + "fila_type": "PETG Translucent", + "fila_color_name": { + "de": "Durchsichtiges Blaugrün", + "sv": "Genomskinlig teal", + "pt": "Azul-petróleo Translúcido", + "ko": "반투명 틸", + "ja": "トランスルーセント ティール", + "en": "Translucent Teal", + "it": "Verde petrolio traslucido", + "fr": "Bleu sarcelle translucide", + "hu": "Áttetsző kékeszöld", + "zh": "透明浅绿", + "nl": "Doorschijnend blauwgroen", + "es": "Verde azulado translúcido" + }, + "color_code": "G1", + "fila_color": [ + "#77EDD780" + ] + }, + { + "fila_color_code": "32800", + "fila_id": "GFG01", + "fila_color_type": "单色", + "fila_type": "PETG Translucent", + "fila_color_name": { + "de": "Durchsichtiges Braun", + "sv": "Genomskinlig brun", + "pt": "Marrom Translúcido", + "ko": "반투명 브라운", + "ja": "トランスルーセント ブラウン", + "en": "Translucent Brown", + "it": "Marrone traslucido", + "fr": "Marron translucide", + "hu": "Áttetsző barna", + "zh": "透明茶色", + "nl": "Doorschijnend bruin", + "es": "Marrón translúcido" + }, + "color_code": "N0", + "fila_color": [ + "#C9A38180" + ] + }, + { + "fila_color_code": "32700", + "fila_id": "GFG01", + "fila_color_type": "单色", + "fila_type": "PETG Translucent", + "fila_color_name": { + "de": "Durchsichtiges Lila", + "sv": "Genomskinlig lila", + "pt": "Roxo Translúcido", + "ko": "반투명 퍼플", + "ja": "トランスルーセント パープル", + "en": "Translucent Purple", + "it": "Viola traslucido", + "fr": "Violet translucide", + "hu": "Áttetsző lila", + "zh": "透明紫", + "nl": "Doorschijnend paars", + "es": "Púrpura translúcido" + }, + "color_code": "P0", + "fila_color": [ + "#D6ABFF80" + ] + }, + { + "fila_color_code": "32200", + "fila_id": "GFG01", + "fila_color_type": "单色", + "fila_type": "PETG Translucent", + "fila_color_name": { + "de": "Durchsichtiges Pink", + "sv": "Genomskinlig rosa", + "pt": "Rosa Translúcido", + "ko": "반투명 핑크", + "ja": "トランスルーセント ピンク", + "en": "Translucent Pink", + "it": "Rosa traslucido", + "fr": "Rose translucide", + "hu": "Áttetsző rózsaszín", + "zh": "透明粉", + "nl": "Doorschijnend roze", + "es": "Rosa translúcido" + }, + "color_code": "P1", + "fila_color": [ + "#F9C1BD80" + ] + }, + { + "fila_color_code": "33300", + "fila_id": "GFG02", + "fila_color_type": "单色", + "fila_type": "PETG HF", + "fila_color_name": { + "de": "Orange", + "sv": "Orange", + "pt": "Laranja", + "ko": "오렌지", + "ja": "オレンジ", + "en": "Orange", + "it": "Arancione", + "fr": "Orange", + "hu": "Narancssárga", + "zh": "橙色", + "nl": "Oranje", + "es": "Naranja" + }, + "color_code": "A0", + "fila_color": [ + "#F75403FF" + ] + }, + { + "fila_color_code": "33600", + "fila_id": "GFG02", + "fila_color_type": "单色", + "fila_type": "PETG HF", + "fila_color_name": { + "de": "Blau", + "sv": "Blå", + "pt": "Azul", + "ko": "블루", + "ja": "ブルー", + "en": "Blue", + "it": "Blu", + "fr": "Bleu", + "hu": "Kék", + "zh": "蓝色", + "nl": "Blauw", + "es": "Azul" + }, + "color_code": "B0", + "fila_color": [ + "#002E96FF" + ] + }, + { + "fila_color_code": "33601", + "fila_id": "GFG02", + "fila_color_type": "单色", + "fila_type": "PETG HF", + "fila_color_name": { + "de": "Blauer See", + "sv": "Sjöblå", + "pt": "Lago Azul", + "ko": "레이크 블루", + "ja": "レイク ブルー", + "en": "Lake Blue", + "it": "Blu lago", + "fr": "Bleu lac", + "hu": "Vízkék", + "zh": "湖蓝", + "nl": "Meerblauw", + "es": "Azul Lago" + }, + "color_code": "B1", + "fila_color": [ + "#1F79E5FF" + ] + }, + { + "fila_color_code": "33101", + "fila_id": "GFG02", + "fila_color_type": "单色", + "fila_type": "PETG HF", + "fila_color_name": { + "de": "Grau", + "sv": "Grå", + "pt": "Cinza", + "ko": "그레이", + "ja": "グレー", + "en": "Gray", + "it": "Grigio", + "fr": "Gris", + "hu": "Szürke", + "zh": "灰色", + "nl": "Grijs", + "es": "Gris" + }, + "color_code": "D0", + "fila_color": [ + "#ADB1B2FF" + ] + }, + { + "fila_color_code": "33103", + "fila_id": "GFG02", + "fila_color_type": "单色", + "fila_type": "PETG HF", + "fila_color_name": { + "de": "Dunkelgrau", + "sv": "Mörkgrå", + "pt": "Cinza-escuro", + "ko": "다크 그레이", + "ja": "ダーク グレー", + "en": "Dark Gray", + "it": "Grigio scuro", + "fr": "Gris foncé", + "hu": "Sötétszürke", + "zh": "深灰", + "nl": "Donkergrijs", + "es": "Gris oscuro" + }, + "color_code": "D1", + "fila_color": [ + "#515151FF" + ] + }, + { + "fila_color_code": "33500", + "fila_id": "GFG02", + "fila_color_type": "单色", + "fila_type": "PETG HF", + "fila_color_name": { + "de": "Grün", + "sv": "Grön", + "pt": "Verde", + "ko": "그린", + "ja": "グリーン", + "en": "Green", + "it": "Verde", + "fr": "Vert", + "hu": "Zöld", + "zh": "绿色", + "nl": "Groen", + "es": "Verde" + }, + "color_code": "G0", + "fila_color": [ + "#00AE42FF" + ] + }, + { + "fila_color_code": "33501", + "fila_id": "GFG02", + "fila_color_type": "单色", + "fila_type": "PETG HF", + "fila_color_name": { + "de": "Limettengrün", + "sv": "Limegrön", + "pt": "Verde-limão", + "ko": "라임 그린", + "ja": "ライム グリーン", + "en": "Lime Green", + "it": "Verde lime", + "fr": "Vert citron", + "hu": "Limezöld", + "zh": "柠檬绿", + "nl": "Limoengroen", + "es": "Verde lima" + }, + "color_code": "G1", + "fila_color": [ + "#6EE53CFF" + ] + }, + { + "fila_color_code": "33502", + "fila_id": "GFG02", + "fila_color_type": "单色", + "fila_type": "PETG HF", + "fila_color_name": { + "de": "Waldgrün", + "sv": "Skogsgrön", + "pt": "Verde-floresta", + "ko": "포레스트 그린", + "ja": "フォレスト グリーン", + "en": "Forest Green", + "it": "Verde foresta", + "fr": "Vert forêt", + "hu": "Erdőzöld", + "zh": "丛林绿", + "nl": "Bosgroen", + "es": "Verde bosque" + }, + "color_code": "G2", + "fila_color": [ + "#39541AFF" + ] + }, + { + "fila_color_code": "33102", + "fila_id": "GFG02", + "fila_color_type": "单色", + "fila_type": "PETG HF", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "33801", + "fila_id": "GFG02", + "fila_color_type": "单色", + "fila_type": "PETG HF", + "fila_color_name": { + "de": "Erdnussbraun", + "sv": "Jordnötsbrun", + "pt": "Peanut Brown", + "ko": "피넛 브라운", + "ja": "ピーナッツ ブラウン", + "en": "Peanut Brown", + "it": "Cognac", + "fr": "Marron cacahuète", + "hu": "Mogyoróbarna", + "zh": "花生棕", + "nl": "Pindabruin", + "es": "Marrón cacahuete" + }, + "color_code": "N1", + "fila_color": [ + "#875718FF" + ] + }, + { + "fila_color_code": "33200", + "fila_id": "GFG02", + "fila_color_type": "单色", + "fila_type": "PETG HF", + "fila_color_name": { + "de": "Rot", + "sv": "Röd", + "pt": "Vermelho", + "ko": "레드", + "ja": "レッド", + "en": "Red", + "it": "Rosso", + "fr": "Rouge", + "hu": "Piros", + "zh": "红色", + "nl": "Rood", + "es": "Rojo" + }, + "color_code": "R0", + "fila_color": [ + "#BC0900FF" + ] + }, + { + "fila_color_code": "33100", + "fila_id": "GFG02", + "fila_color_type": "单色", + "fila_type": "PETG HF", + "fila_color_name": { + "de": "Weiß", + "sv": "Vit", + "pt": "Branco", + "ko": "화이트", + "ja": "ホワイト", + "en": "White", + "it": "Bianco", + "fr": "Blanc", + "hu": "Fehér", + "zh": "白色", + "nl": "Wit", + "es": "Blanco" + }, + "color_code": "W0", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "33400", + "fila_id": "GFG02", + "fila_color_type": "单色", + "fila_type": "PETG HF", + "fila_color_name": { + "de": "Gelb", + "sv": "Gul", + "pt": "Amarelo", + "ko": "옐로우", + "ja": "イエロー", + "en": "Yellow", + "it": "Giallo", + "fr": "Jaune", + "hu": "Sárga", + "zh": "黄色", + "nl": "Geel", + "es": "Amarillo" + }, + "color_code": "Y0", + "fila_color": [ + "#FFD00BFF" + ] + }, + { + "fila_color_code": "33401", + "fila_id": "GFG02", + "fila_color_type": "单色", + "fila_type": "PETG HF", + "fila_color_name": { + "de": "Creme", + "sv": "Cremevit", + "pt": "Creme", + "ko": "크림", + "ja": "クリーム", + "en": "Cream", + "it": "Panna", + "fr": "Crème", + "hu": "Törtfehér", + "zh": "奶油白", + "nl": "Roomkleurig", + "es": "Crema" + }, + "color_code": "Y1", + "fila_color": [ + "#F9DFB9FF" + ] + }, + { + "fila_color_code": "31600", + "fila_id": "GFG50", + "fila_color_type": "单色", + "fila_type": "PETG-CF", + "fila_color_name": { + "de": "Indigo-Blau", + "sv": "Indigoblå", + "pt": "Indigo Blue", + "ko": "인디고 블루", + "ja": "インディゴ ブルー", + "en": "Indigo Blue", + "it": "Blu indaco", + "fr": "Bleu indigo", + "hu": "Indigókék", + "zh": "靛蓝色", + "nl": "Indigoblauw", + "es": "Azul índigo" + }, + "color_code": "B6", + "fila_color": [ + "#324585FF" + ] + }, + { + "fila_color_code": "31101", + "fila_id": "GFG50", + "fila_color_type": "单色", + "fila_type": "PETG-CF", + "fila_color_name": { + "de": "Titangrau", + "sv": "Titangrå", + "pt": "Titan Gray", + "ko": "타이탄 그레이", + "ja": "チタン グレー", + "en": "Titan Gray", + "it": "Grigio titanio", + "fr": "Gris titane", + "hu": "Titánszürke", + "zh": "钛灰色", + "nl": "Titaangrijs", + "es": "Gris titán" + }, + "color_code": "D6", + "fila_color": [ + "#565656FF" + ] + }, + { + "fila_color_code": "31500", + "fila_id": "GFG50", + "fila_color_type": "单色", + "fila_type": "PETG-CF", + "fila_color_name": { + "de": "Malachitgrün", + "sv": "Malakitgrön", + "pt": "Verde Malaquita", + "ko": "말라카이트 그린", + "ja": "マラカイト グリーン", + "en": "Malachite Green", + "it": "Verde malachite", + "fr": "Vert malachite", + "hu": "Malachitzöld", + "zh": "孔雀绿", + "nl": "Malachietgroen", + "es": "Verde malaquita" + }, + "color_code": "G7", + "fila_color": [ + "#16b08eFF" + ] + }, + { + "fila_color_code": "31100", + "fila_id": "GFG50", + "fila_color_type": "单色", + "fila_type": "PETG-CF", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "31700", + "fila_id": "GFG50", + "fila_color_type": "单色", + "fila_type": "PETG-CF", + "fila_color_name": { + "de": "Lila-Violett", + "sv": "Violettlila", + "pt": "Violeta Roxo", + "ko": "바이올렛 퍼플", + "ja": "バイオレット パープル", + "en": "Violet Purple", + "it": "Viola", + "fr": "Violet pourpre", + "hu": "Viola", + "zh": "紫罗兰色", + "nl": "Violetpaars", + "es": "Violeta púrpura" + }, + "color_code": "P7", + "fila_color": [ + "#583061FF" + ] + }, + { + "fila_color_code": "31200", + "fila_id": "GFG50", + "fila_color_type": "单色", + "fila_type": "PETG-CF", + "fila_color_name": { + "de": "Ziegelrot", + "sv": "Tegelröd", + "pt": "Vermelho Tijolo", + "ko": "브릭 레드", + "ja": "ブリック レッド", + "en": "Brick Red", + "it": "Rosso mattone", + "fr": "Rouge brique", + "hu": "Téglavörös", + "zh": "砖红色", + "nl": "Steenrood", + "es": "Rojo ladrillo" + }, + "color_code": "R4", + "fila_color": [ + "#9f332aFF" + ] + }, + { + "fila_color_code": "70100", + "fila_id": "GFN04", + "fila_color_type": "单色", + "fila_type": "PAHT-CF", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "72100", + "fila_id": "GFN05", + "fila_color_type": "单色", + "fila_type": "PA6-CF", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "73100", + "fila_id": "GFN06", + "fila_color_type": "单色", + "fila_type": "PPA-CF", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "72600", + "fila_id": "GFN08", + "fila_color_type": "单色", + "fila_type": "PA6-GF", + "fila_color_name": { + "de": "Blau", + "sv": "Blå", + "pt": "Azul", + "ko": "블루", + "ja": "ブルー", + "en": "Blue", + "it": "Blu", + "fr": "Bleu", + "hu": "Kék", + "zh": "蓝色", + "nl": "Blauw", + "es": "Azul" + }, + "color_code": "B0", + "fila_color": [ + "#75AED8FF" + ] + }, + { + "fila_color_code": "72102", + "fila_id": "GFN08", + "fila_color_type": "单色", + "fila_type": "PA6-GF", + "fila_color_name": { + "de": "Weiß", + "sv": "Vit", + "pt": "Branco", + "ko": "화이트", + "ja": "ホワイト", + "en": "White", + "it": "Bianco", + "fr": "Blanc", + "hu": "Fehér", + "zh": "白色", + "nl": "Wit", + "es": "Blanco" + }, + "color_code": "D0", + "fila_color": [ + "#EAEAE4FF" + ] + }, + { + "fila_color_code": "72103", + "fila_id": "GFN08", + "fila_color_type": "单色", + "fila_type": "PA6-GF", + "fila_color_name": { + "de": "Grau", + "sv": "Grå", + "pt": "Cinza", + "ko": "그레이", + "ja": "グレー", + "en": "Gray", + "it": "Grigio", + "fr": "Gris", + "hu": "Szürke", + "zh": "灰色", + "nl": "Grijs", + "es": "Gris" + }, + "color_code": "D1", + "fila_color": [ + "#353533FF" + ] + }, + { + "fila_color_code": "72500", + "fila_id": "GFN08", + "fila_color_type": "单色", + "fila_type": "PA6-GF", + "fila_color_name": { + "de": "Limette", + "sv": "Lime", + "pt": "Lima", + "ko": "라임", + "ja": "ライム", + "en": "Lime", + "it": "Lime", + "fr": "Citron vert", + "hu": "Lime", + "zh": "柠檬绿", + "nl": "Limoen", + "es": "Lima" + }, + "color_code": "G0", + "fila_color": [ + "#C5ED48FF" + ] + }, + { + "fila_color_code": "72104", + "fila_id": "GFN08", + "fila_color_type": "单色", + "fila_type": "PA6-GF", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "72800", + "fila_id": "GFN08", + "fila_color_type": "单色", + "fila_type": "PA6-GF", + "fila_color_name": { + "de": "Braun", + "sv": "Brun", + "pt": "Marrom", + "ko": "브라운", + "ja": "ブラウン", + "en": "Brown", + "it": "Marrone", + "fr": "Marron", + "hu": "Barna", + "zh": "棕色", + "nl": "Bruin", + "es": "Marrón" + }, + "color_code": "N0", + "fila_color": [ + "#5B492FFF" + ] + }, + { + "fila_color_code": "72200", + "fila_id": "GFN08", + "fila_color_type": "单色", + "fila_type": "PA6-GF", + "fila_color_name": { + "de": "Orange", + "sv": "Orange", + "pt": "Laranja", + "ko": "오렌지", + "ja": "オレンジ", + "en": "Orange", + "it": "Arancione", + "fr": "Orange", + "hu": "Narancssárga", + "zh": "橙色", + "nl": "Oranje", + "es": "Naranja" + }, + "color_code": "R0", + "fila_color": [ + "#FF4800FF" + ] + }, + { + "fila_color_code": "72400", + "fila_id": "GFN08", + "fila_color_type": "单色", + "fila_type": "PA6-GF", + "fila_color_name": { + "de": "Gelb", + "sv": "Gul", + "pt": "Amarelo", + "ko": "옐로우", + "ja": "イエロー", + "en": "Yellow", + "it": "Giallo", + "fr": "Jaune", + "hu": "Sárga", + "zh": "黄色", + "nl": "Geel", + "es": "Amarillo" + }, + "color_code": "Y0", + "fila_color": [ + "#FFCE00FF" + ] + }, + { + "fila_color_code": "65500", + "fila_id": "GFS03", + "fila_color_type": "单色", + "fila_type": "Support for PA/PET", + "fila_color_name": { + "de": "Grün", + "sv": "Grön", + "pt": "Verde", + "ko": "그린", + "ja": "グリーン", + "en": "Green", + "it": "Verde", + "fr": "Vert", + "hu": "Zöld", + "zh": "绿色", + "nl": "Groen", + "es": "Verde" + }, + "color_code": "G1", + "fila_color": [ + "#C0DF16FF" + ] + }, + { + "fila_color_code": "66400", + "fila_id": "GFS04", + "fila_color_type": "单色", + "fila_type": "PVA", + "fila_color_name": { + "de": "Klar", + "sv": "Klar", + "pt": "Claro", + "ko": "클리어", + "ja": "クリア", + "en": "Clear", + "it": "Trasparente", + "fr": "Transparent", + "hu": "Átlátszó", + "zh": "透明浅黄色", + "nl": "Helder", + "es": "Transparente" + }, + "color_code": "Y0", + "fila_color": [ + "#F0F1A880" + ] + }, + { + "fila_color_code": "65102", + "fila_id": "GFS05", + "fila_color_type": "单色", + "fila_type": "Support for PLA/PETG", + "fila_color_name": { + "de": "Natur", + "sv": "Natur", + "pt": "Natureza", + "ko": "네이처", + "ja": "ネイチャー", + "en": "Nature", + "it": "Naturale", + "fr": "Nature", + "hu": "Natúr", + "zh": "半透明", + "nl": "Natuurlijk", + "es": "Naturaleza" + }, + "color_code": "C0", + "fila_color": [ + "#00000000" + ] + }, + { + "fila_color_code": "65103", + "fila_id": "GFS05", + "fila_color_type": "单色", + "fila_type": "Support for PLA/PETG", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "66100", + "fila_id": "GFS06", + "fila_color_type": "单色", + "fila_type": "Support for ABS", + "fila_color_name": { + "de": "Weiß", + "sv": "Vit", + "pt": "Branco", + "ko": "화이트", + "ja": "ホワイト", + "en": "White", + "it": "Bianco", + "fr": "Blanc", + "hu": "Fehér", + "zh": "白色", + "nl": "Wit", + "es": "Blanco" + }, + "color_code": "W0", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "71100", + "fila_id": "GFT01", + "fila_color_type": "单色", + "fila_type": "PET-CF", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "76100", + "fila_id": "GFT02", + "fila_color_type": "单色", + "fila_type": "PPS-CF", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "51600", + "fila_id": "GFU00", + "fila_color_type": "单色", + "fila_type": "TPU 95A HF", + "fila_color_name": { + "de": "Blau", + "sv": "Blå", + "pt": "Azul", + "ko": "블루", + "ja": "ブルー", + "en": "Blue", + "it": "Blu", + "fr": "Bleu", + "hu": "Kék", + "zh": "蓝色", + "nl": "Blauw", + "es": "Azul" + }, + "color_code": "B0", + "fila_color": [ + "#0072CEFF" + ] + }, + { + "fila_color_code": "51101", + "fila_id": "GFU00", + "fila_color_type": "单色", + "fila_type": "TPU 95A HF", + "fila_color_name": { + "de": "Grau", + "sv": "Grå", + "pt": "Cinza", + "ko": "그레이", + "ja": "グレー", + "en": "Gray", + "it": "Grigio", + "fr": "Gris", + "hu": "Szürke", + "zh": "灰色", + "nl": "Grijs", + "es": "Gris" + }, + "color_code": "D0", + "fila_color": [ + "#898D8DFF" + ] + }, + { + "fila_color_code": "51100", + "fila_id": "GFU00", + "fila_color_type": "单色", + "fila_type": "TPU 95A HF", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#101820FF" + ] + }, + { + "fila_color_code": "51200", + "fila_id": "GFU00", + "fila_color_type": "单色", + "fila_type": "TPU 95A HF", + "fila_color_name": { + "de": "Rot", + "sv": "Röd", + "pt": "Vermelho", + "ko": "레드", + "ja": "レッド", + "en": "Red", + "it": "Rosso", + "fr": "Rouge", + "hu": "Piros", + "zh": "红色", + "nl": "Rood", + "es": "Rojo" + }, + "color_code": "R0", + "fila_color": [ + "#C8102EFF" + ] + }, + { + "fila_color_code": "51102", + "fila_id": "GFU00", + "fila_color_type": "单色", + "fila_type": "TPU 95A HF", + "fila_color_name": { + "de": "Weiß", + "sv": "Vit", + "pt": "Branco", + "ko": "화이트", + "ja": "ホワイト", + "en": "White", + "it": "Bianco", + "fr": "Blanc", + "hu": "Fehér", + "zh": "白色", + "nl": "Wit", + "es": "Blanco" + }, + "color_code": "W0", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "51400", + "fila_id": "GFU00", + "fila_color_type": "单色", + "fila_type": "TPU 95A HF", + "fila_color_name": { + "de": "Gelb", + "sv": "Gul", + "pt": "Amarelo", + "ko": "옐로우", + "ja": "イエロー", + "en": "Yellow", + "it": "Giallo", + "fr": "Jaune", + "hu": "Sárga", + "zh": "黄色", + "nl": "Geel", + "es": "Amarillo" + }, + "color_code": "Y0", + "fila_color": [ + "#F3E600FF" + ] + }, + { + "fila_color_code": "50101", + "fila_id": "GFU01", + "fila_color_type": "单色", + "fila_type": "TPU 95A", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "50100", + "fila_id": "GFU01", + "fila_color_type": "单色", + "fila_type": "TPU 95A", + "fila_color_name": { + "de": "Weiß", + "sv": "Vit", + "pt": "Branco", + "ko": "화이트", + "ja": "ホワイト", + "en": "White", + "it": "Bianco", + "fr": "Blanc", + "hu": "Fehér", + "zh": "白色", + "nl": "Wit", + "es": "Blanco" + }, + "color_code": "W0", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "53600", + "fila_id": "GFU02", + "fila_color_type": "单色", + "fila_type": "TPU for AMS", + "fila_color_name": { + "de": "Blau", + "sv": "Blå", + "pt": "Azul", + "ko": "블루", + "ja": "ブルー", + "en": "Blue", + "it": "Blu", + "fr": "Bleu", + "hu": "Kék", + "zh": "蓝色", + "nl": "Blauw", + "es": "Azul" + }, + "color_code": "B0", + "fila_color": [ + "#5898DDFF" + ] + }, + { + "fila_color_code": "53102", + "fila_id": "GFU02", + "fila_color_type": "单色", + "fila_type": "TPU for AMS", + "fila_color_name": { + "de": "Grau", + "sv": "Grå", + "pt": "Cinza", + "ko": "그레이", + "ja": "グレー", + "en": "Gray", + "it": "Grigio", + "fr": "Gris", + "hu": "Szürke", + "zh": "灰色", + "nl": "Grijs", + "es": "Gris" + }, + "color_code": "D0", + "fila_color": [ + "#939393FF" + ] + }, + { + "fila_color_code": "53500", + "fila_id": "GFU02", + "fila_color_type": "单色", + "fila_type": "TPU for AMS", + "fila_color_name": { + "de": "Neongrün", + "sv": "Neongrön", + "pt": "Verde-neon", + "ko": "네온 그린", + "ja": "ネオン グリーン", + "en": "Neon Green", + "it": "Verde neon", + "fr": "Vert fluo", + "hu": "Neonzöld", + "zh": "荧光绿", + "nl": "Neongroen", + "es": "Verde neón" + }, + "color_code": "G0", + "fila_color": [ + "#90FF1AFF" + ] + }, + { + "fila_color_code": "53101", + "fila_id": "GFU02", + "fila_color_type": "单色", + "fila_type": "TPU for AMS", + "fila_color_name": { + "de": "Schwarz", + "sv": "Svart", + "pt": "Preto", + "ko": "블랙", + "ja": "ブラック", + "en": "Black", + "it": "Nero", + "fr": "Noir", + "hu": "Fekete", + "zh": "黑色", + "nl": "Zwart", + "es": "Negro" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "53200", + "fila_id": "GFU02", + "fila_color_type": "单色", + "fila_type": "TPU for AMS", + "fila_color_name": { + "de": "Rot", + "sv": "Röd", + "pt": "Vermelho", + "ko": "레드", + "ja": "レッド", + "en": "Red", + "it": "Rosso", + "fr": "Rouge", + "hu": "Piros", + "zh": "红色", + "nl": "Rood", + "es": "Rojo" + }, + "color_code": "R0", + "fila_color": [ + "#ED0000FF" + ] + }, + { + "fila_color_code": "53100", + "fila_id": "GFU02", + "fila_color_type": "单色", + "fila_type": "TPU for AMS", + "fila_color_name": { + "de": "Weiß", + "sv": "Vit", + "pt": "Branco", + "ko": "화이트", + "ja": "ホワイト", + "en": "White", + "it": "Bianco", + "fr": "Blanc", + "hu": "Fehér", + "zh": "白色", + "nl": "Wit", + "es": "Blanco" + }, + "color_code": "W0", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "53400", + "fila_id": "GFU02", + "fila_color_type": "单色", + "fila_type": "TPU for AMS", + "fila_color_name": { + "de": "Gelb", + "sv": "Gul", + "pt": "Amarelo", + "ko": "옐로우", + "ja": "イエロー", + "en": "Yellow", + "it": "Giallo", + "fr": "Jaune", + "hu": "Sárga", + "zh": "黄色", + "nl": "Geel", + "es": "Amarillo" + }, + "color_code": "Y0", + "fila_color": [ + "#F9EF41FF" + ] + }, + { + "fila_color_code": "16100", + "fila_id": "GFA18", + "fila_color_type": "单色", + "fila_type": "PLA Lite", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Black", + "it": "", + "fr": "", + "hu": "", + "zh": "黑色", + "nl": "", + "es": "" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "16400", + "fila_id": "GFA18", + "fila_color_type": "单色", + "fila_type": "PLA Lite", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Yellow", + "it": "", + "fr": "", + "hu": "", + "zh": "黄色", + "nl": "", + "es": "" + }, + "color_code": "Y0", + "fila_color": [ + "#EFE255FF" + ] + }, + { + "fila_color_code": "16103", + "fila_id": "GFA18", + "fila_color_type": "单色", + "fila_type": "PLA Lite", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "White", + "it": "", + "fr": "", + "hu": "", + "zh": "白色", + "nl": "", + "es": "" + }, + "color_code": "W0", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "16600", + "fila_id": "GFA18", + "fila_color_type": "单色", + "fila_type": "PLA Lite", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Cyan", + "it": "", + "fr": "", + "hu": "", + "zh": "天蓝色", + "nl": "", + "es": "" + }, + "color_code": "B0", + "fila_color": [ + "#4DAFDAFF" + ] + }, + { + "fila_color_code": "16200", + "fila_id": "GFA18", + "fila_color_type": "单色", + "fila_type": "PLA Lite", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Red", + "it": "", + "fr": "", + "hu": "", + "zh": "深红色", + "nl": "", + "es": "" + }, + "color_code": "R0", + "fila_color": [ + "#C6001AFF" + ] + }, + { + "fila_color_code": "16101", + "fila_id": "GFA18", + "fila_color_type": "单色", + "fila_type": "PLA Lite", + "fila_color_name": { + "de": "Grau", + "sv": "Grå", + "pt": "Cinza", + "ko": "그레이", + "ja": "グレー", + "en": "Gray", + "it": "Grigio", + "fr": "Gris", + "hu": "Szürke", + "zh": "灰色", + "nl": "Grijs", + "es": "Gris" + }, + "color_code": "D0", + "fila_color": [ + "#999D9DFF" + ] + }, + { + "fila_color_code": "13210", + "fila_id": "GFA17", + "fila_color_type": "单色", + "fila_type": "PLA Translucent", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Red", + "it": "", + "fr": "", + "hu": "", + "zh": "透明红", + "nl": "", + "es": "" + }, + "color_code": "R0", + "fila_color": [ + "#B5001180" + ] + }, + { + "fila_color_code": "13211", + "fila_id": "GFA17", + "fila_color_type": "单色", + "fila_type": "PLA Translucent", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Cherry Pink", + "it": "", + "fr": "", + "hu": "", + "zh": "果冻粉", + "nl": "", + "es": "" + }, + "color_code": "R1", + "fila_color": [ + "#F5B6CD80" + ] + }, + { + "fila_color_code": "13301", + "fila_id": "GFA17", + "fila_color_type": "单色", + "fila_type": "PLA Translucent", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Orange", + "it": "", + "fr": "", + "hu": "", + "zh": "透明橙", + "nl": "", + "es": "" + }, + "color_code": "A0", + "fila_color": [ + "#F74E0280" + ] + }, + { + "fila_color_code": "13410", + "fila_id": "GFA17", + "fila_color_type": "单色", + "fila_type": "PLA Translucent", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Mellow Yellow", + "it": "", + "fr": "", + "hu": "", + "zh": "黄水晶", + "nl": "", + "es": "" + }, + "color_code": "Y0", + "fila_color": [ + "#F5DBAB80" + ] + }, + { + "fila_color_code": "13510", + "fila_id": "GFA17", + "fila_color_type": "单色", + "fila_type": "PLA Translucent", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Light Jade", + "it": "", + "fr": "", + "hu": "", + "zh": "浅青玉", + "nl": "", + "es": "" + }, + "color_code": "G0", + "fila_color": [ + "#96D8AF80" + ] + }, + { + "fila_color_code": "13610", + "fila_id": "GFA17", + "fila_color_type": "单色", + "fila_type": "PLA Translucent", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Ice Blue", + "it": "", + "fr": "", + "hu": "", + "zh": "冰蓝", + "nl": "", + "es": "" + }, + "color_code": "B0", + "fila_color": [ + "#B8CDE980" + ] + }, + { + "fila_color_code": "13611", + "fila_id": "GFA17", + "fila_color_type": "单色", + "fila_type": "PLA Translucent", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Blue", + "it": "", + "fr": "", + "hu": "", + "zh": "透明蓝", + "nl": "", + "es": "" + }, + "color_code": "B1", + "fila_color": [ + "#0047BB80" + ] + }, + { + "fila_color_code": "13612", + "fila_id": "GFA17", + "fila_color_type": "单色", + "fila_type": "PLA Translucent", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Teal", + "it": "", + "fr": "", + "hu": "", + "zh": "蓝绿色", + "nl": "", + "es": "" + }, + "color_code": "B2", + "fila_color": [ + "#009FA180" + ] + }, + { + "fila_color_code": "13710", + "fila_id": "GFA17", + "fila_color_type": "单色", + "fila_type": "PLA Translucent", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Purple", + "it": "", + "fr": "", + "hu": "", + "zh": "透明紫", + "nl": "", + "es": "" + }, + "color_code": "P0", + "fila_color": [ + "#8344B080" + ] + }, + { + "fila_color_code": "13711", + "fila_id": "GFA17", + "fila_color_type": "单色", + "fila_type": "PLA Translucent", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Lavender", + "it": "", + "fr": "", + "hu": "", + "zh": "紫罗兰", + "nl": "", + "es": "" + }, + "color_code": "P1", + "fila_color": [ + "#B8ACD680" + ] + }, + { + "fila_color_code": "13906", + "fila_id": "GFA05", + "fila_color_type": "渐变色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "South Beach", + "it": "", + "fr": "", + "hu": "", + "zh": "马卡龙", + "nl": "", + "es": "" + }, + "color_code": "M1", + "fila_color": [ + "#F772A4FF", + "#00918BFF" + ] + }, + { + "fila_color_code": "13909", + "fila_id": "GFA05", + "fila_color_type": "渐变色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Aurora Purple", + "it": "", + "fr": "", + "hu": "", + "zh": "星云紫", + "nl": "", + "es": "" + }, + "color_code": "M4", + "fila_color": [ + "#7F3696FF", + "#006EC9FF" + ] + }, + { + "fila_color_code": "13912", + "fila_id": "GFA05", + "fila_color_type": "渐变色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Dawn Radiance", + "it": "", + "fr": "", + "hu": "", + "zh": "浅彩虹", + "nl": "", + "es": "" + }, + "color_code": "M8", + "fila_color": [ + "#EC984CFF", + "#6CD4BCFF", + "#A66EB9FF", + "#D87694FF" + ] + }, + { + "fila_color_code": "51103", + "fila_id": "GFU03", + "fila_color_type": "单色", + "fila_type": "TPU 90A", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Black", + "it": "", + "fr": "", + "hu": "", + "zh": "黑色", + "nl": "", + "es": "" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "51105", + "fila_id": "GFU03", + "fila_color_type": "单色", + "fila_type": "TPU 90A", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "White", + "it": "", + "fr": "", + "hu": "", + "zh": "白色", + "nl": "", + "es": "" + }, + "color_code": "W1", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "51305", + "fila_id": "GFU04", + "fila_color_type": "单色", + "fila_type": "TPU 85A", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Neon Orange", + "it": "", + "fr": "", + "hu": "", + "zh": "暖橙色", + "nl": "", + "es": "" + }, + "color_code": "A1", + "fila_color": [ + "#F68B1BFF" + ] + }, + { + "fila_color_code": "51500", + "fila_id": "GFU04", + "fila_color_type": "单色", + "fila_type": "TPU 85A", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Light Cyan", + "it": "", + "fr": "", + "hu": "", + "zh": "苍青色", + "nl": "", + "es": "" + }, + "color_code": "G0", + "fila_color": [ + "#C3E2D6FF" + ] + }, + { + "fila_color_code": "51900", + "fila_id": "GFU03", + "fila_color_type": "渐变色", + "fila_type": "TPU 90A", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Frozen", + "it": "", + "fr": "", + "hu": "", + "zh": "冰封蓝", + "nl": "", + "es": "" + }, + "color_code": "M0", + "fila_color": [ + "#40B6E4FF", + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "51901", + "fila_id": "GFU03", + "fila_color_type": "渐变色", + "fila_type": "TPU 90A", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Blaze", + "it": "", + "fr": "", + "hu": "", + "zh": "西瓜红", + "nl": "", + "es": "" + }, + "color_code": "M1", + "fila_color": [ + "#D21B3CFF", + "#F1AAA8FF" + ] + }, + { + "fila_color_code": "65104", + "fila_id": "GFS02", + "fila_color_type": "单色", + "fila_type": "Support for PLA", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "White", + "it": "", + "fr": "", + "hu": "", + "zh": "白色", + "nl": "", + "es": "" + }, + "color_code": "W1", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "12104", + "fila_id": "GFA10", + "fila_color_type": "单色", + "fila_type": "PLA Tough+", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Black", + "it": "", + "fr": "", + "hu": "", + "zh": "黑色", + "nl": "", + "es": "" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "12105", + "fila_id": "GFA10", + "fila_color_type": "单色", + "fila_type": "PLA Tough+", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Gray", + "it": "", + "fr": "", + "hu": "", + "zh": "浅灰色", + "nl": "", + "es": "" + }, + "color_code": "D0", + "fila_color": [ + "#AFB1AEFF" + ] + }, + { + "fila_color_code": "12106", + "fila_id": "GFA10", + "fila_color_type": "单色", + "fila_type": "PLA Tough+", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Silver", + "it": "", + "fr": "", + "hu": "", + "zh": "银色", + "nl": "", + "es": "" + }, + "color_code": "D1", + "fila_color": [ + "#959698FF" + ] + }, + { + "fila_color_code": "12107", + "fila_id": "GFA10", + "fila_color_type": "单色", + "fila_type": "PLA Tough+", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "White", + "it": "", + "fr": "", + "hu": "", + "zh": "白色", + "nl": "", + "es": "" + }, + "color_code": "W0", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "12301", + "fila_id": "GFA10", + "fila_color_type": "单色", + "fila_type": "PLA Tough+", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Orange", + "it": "", + "fr": "", + "hu": "", + "zh": "橙色", + "nl": "", + "es": "" + }, + "color_code": "A0", + "fila_color": [ + "#DC3A27FF" + ] + }, + { + "fila_color_code": "12401", + "fila_id": "GFA10", + "fila_color_type": "单色", + "fila_type": "PLA Tough+", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Yellow", + "it": "", + "fr": "", + "hu": "", + "zh": "亮黄色", + "nl": "", + "es": "" + }, + "color_code": "Y0", + "fila_color": [ + "#F4D53FFF" + ] + }, + { + "fila_color_code": "12601", + "fila_id": "GFA10", + "fila_color_type": "单色", + "fila_type": "PLA Tough+", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Cyan", + "it": "", + "fr": "", + "hu": "", + "zh": "天蓝色", + "nl": "", + "es": "" + }, + "color_code": "B0", + "fila_color": [ + "#009BD8FF" + ] + }, + { + "fila_color_code": "13100", + "fila_id": "GFA02", + "fila_color_type": "单色", + "fila_type": "PLA Metal", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Iron Gray Metallic", + "it": "", + "fr": "", + "hu": "", + "zh": "深空灰", + "nl": "", + "es": "" + }, + "color_code": "D2", + "fila_color": [ + "#43403DFF" + ] + }, + { + "fila_color_code": "13400", + "fila_id": "GFA02", + "fila_color_type": "单色", + "fila_type": "PLA Metal", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Iridium Gold Metallic", + "it": "", + "fr": "", + "hu": "", + "zh": "香槟金", + "nl": "", + "es": "" + }, + "color_code": "Y1", + "fila_color": [ + "#B39B84FF" + ] + }, + { + "fila_color_code": "13500", + "fila_id": "GFA02", + "fila_color_type": "单色", + "fila_type": "PLA Metal", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Oxide Green Metallic", + "it": "", + "fr": "", + "hu": "", + "zh": "极光绿", + "nl": "", + "es": "" + }, + "color_code": "G2", + "fila_color": [ + "#1D7C6AFF" + ] + }, + { + "fila_color_code": "13600", + "fila_id": "GFA02", + "fila_color_type": "单色", + "fila_type": "PLA Metal", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Cobalt Blue Metallic", + "it": "", + "fr": "", + "hu": "", + "zh": "典雅蓝", + "nl": "", + "es": "" + }, + "color_code": "B2", + "fila_color": [ + "#39699EFF" + ] + }, + { + "fila_color_code": "13800", + "fila_id": "GFA02", + "fila_color_type": "单色", + "fila_type": "PLA Metal", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Copper Brown Metallic", + "it": "", + "fr": "", + "hu": "", + "zh": "咖啡金", + "nl": "", + "es": "" + }, + "color_code": "N3", + "fila_color": [ + "#AA6443FF" + ] + }, + { + "fila_color_code": "16601", + "fila_id": "GFA18", + "fila_color_type": "单色", + "fila_type": "PLA Lite", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Blue", + "it": "", + "fr": "", + "hu": "", + "zh": "蓝色", + "nl": "", + "es": "" + }, + "color_code": "B1", + "fila_color": [ + "#004EA8FF" + ] + }, + { + "fila_color_code": "16401", + "fila_id": "GFA18", + "fila_color_type": "单色", + "fila_type": "PLA Lite", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Sunflower Yellow", + "it": "", + "fr": "", + "hu": "", + "zh": "橙黄色", + "nl": "", + "es": "" + }, + "color_code": "Y1", + "fila_color": [ + "#FFB549FF" + ] + }, + { + "fila_color_code": "16501", + "fila_id": "GFA18", + "fila_color_type": "单色", + "fila_type": "PLA Lite", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Green", + "it": "", + "fr": "", + "hu": "", + "zh": "绿色", + "nl": "", + "es": "" + }, + "color_code": "G1", + "fila_color": [ + "#00BB31FF" + ] + }, + { + "fila_color_code": "16301", + "fila_id": "GFA18", + "fila_color_type": "单色", + "fila_type": "PLA Lite", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Orange", + "it": "", + "fr": "", + "hu": "", + "zh": "橙色", + "nl": "", + "es": "" + }, + "color_code": "A1", + "fila_color": [ + "#FF671FFF" + ] + }, + { + "fila_color_code": "16700", + "fila_id": "GFA18", + "fila_color_type": "单色", + "fila_type": "PLA Lite", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Matte Beige", + "it": "", + "fr": "", + "hu": "", + "zh": "浅肤色", + "nl": "", + "es": "" + }, + "color_code": "P0", + "fila_color": [ + "#ECC3B2FF" + ] + }, + { + "fila_color_code": "16800", + "fila_id": "GFA18", + "fila_color_type": "单色", + "fila_type": "PLA Lite", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Cocoa Brown", + "it": "", + "fr": "", + "hu": "", + "zh": "棕色", + "nl": "", + "es": "" + }, + "color_code": "N0", + "fila_color": [ + "#745335FF" + ] + }, + { + "fila_color_code": "16102", + "fila_id": "GFA18", + "fila_color_type": "单色", + "fila_type": "PLA Lite", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Dark Gray", + "it": "", + "fr": "", + "hu": "", + "zh": "深灰", + "nl": "", + "es": "" + }, + "color_code": "D1", + "fila_color": [ + "#8c8b8cFF" + ] + }, + { + "fila_color_code": "13913", + "fila_id": "GFA05", + "fila_color_type": "多拼色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Mystic Magenta", + "it": "", + "fr": "", + "hu": "", + "zh": "北极光", + "nl": "", + "es": "" + }, + "color_code": "T7", + "fila_color": [ + "#720062FF", + "#3a913fFF" + ] + }, + { + "fila_color_code": "13916", + "fila_id": "GFA05", + "fila_color_type": "多拼色", + "fila_type": "PLA Silk", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Phantom Blue", + "it": "", + "fr": "", + "hu": "", + "zh": "幻影蓝", + "nl": "", + "es": "" + }, + "color_code": "T9", + "fila_color": [ + "#00629bFF", + "#000000FF" + ] + }, + { + "fila_color_code": "51601", + "fila_id": "GFU03", + "fila_color_type": "单色", + "fila_type": "TPU 90A", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Crystal Blue", + "it": "", + "fr": "", + "hu": "", + "zh": "水晶蓝", + "nl": "", + "es": "" + }, + "color_code": "B1", + "fila_color": [ + "#7eb4e180" + ] + }, + { + "fila_color_code": "51106", + "fila_id": "GFU03", + "fila_color_type": "单色", + "fila_type": "TPU 90A", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Quicksilver", + "it": "", + "fr": "", + "hu": "", + "zh": "水银色", + "nl": "", + "es": "" + }, + "color_code": "D0", + "fila_color": [ + "#9ea2a2FF" + ] + }, + { + "fila_color_code": "51201", + "fila_id": "GFU04", + "fila_color_type": "单色", + "fila_type": "TPU 85A", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Rose Beige/Flesh", + "it": "", + "fr": "", + "hu": "", + "zh": "肤色", + "nl": "", + "es": "" + }, + "color_code": "P0", + "fila_color": [ + "#F3CFB2FF" + ] + }, + { + "fila_color_code": "51700", + "fila_id": "GFU03", + "fila_color_type": "单色", + "fila_type": "TPU 90A", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Grape Jelly", + "it": "", + "fr": "", + "hu": "", + "zh": "果冻紫", + "nl": "", + "es": "" + }, + "color_code": "P1", + "fila_color": [ + "#D6ABFF80" + ] + }, + { + "fila_color_code": "51107", + "fila_id": "GFU04", + "fila_color_type": "单色", + "fila_type": "TPU 85A", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Black", + "it": "", + "fr": "", + "hu": "", + "zh": "黑色", + "nl": "", + "es": "" + }, + "color_code": "K0", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "51501", + "fila_id": "GFU04", + "fila_color_type": "单色", + "fila_type": "TPU 85A", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Lime Green", + "it": "", + "fr": "", + "hu": "", + "zh": "苹果绿", + "nl": "", + "es": "" + }, + "color_code": "G1", + "fila_color": [ + "#CDEA80FF" + ] + }, + { + "fila_color_code": "51800", + "fila_id": "GFU03", + "fila_color_type": "单色", + "fila_type": "TPU 90A", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Cocoa Brown", + "it": "", + "fr": "", + "hu": "", + "zh": "皮革棕", + "nl": "", + "es": "" + }, + "color_code": "N0", + "fila_color": [ + "#5C4738FF" + ] + }, + { + "fila_color_code": "30105", + "fila_id": "GFG00", + "fila_color_type": "单色", + "fila_type": "PETG Basic", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Black", + "it": "", + "fr": "", + "hu": "", + "zh": "黑色", + "nl": "", + "es": "" + }, + "color_code": "K00", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "30106", + "fila_id": "GFG00", + "fila_color_type": "单色", + "fila_type": "PETG Basic", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "White", + "it": "", + "fr": "", + "hu": "", + "zh": "白色", + "nl": "", + "es": "" + }, + "color_code": "W00", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "30107", + "fila_id": "GFG00", + "fila_color_type": "单色", + "fila_type": "PETG Basic", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Gray", + "it": "", + "fr": "", + "hu": "", + "zh": "灰色", + "nl": "", + "es": "" + }, + "color_code": "D00", + "fila_color": [ + "#7F7E83FF" + ] + }, + { + "fila_color_code": "30402", + "fila_id": "GFG00", + "fila_color_type": "单色", + "fila_type": "PETG Basic", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Yellow", + "it": "", + "fr": "", + "hu": "", + "zh": "黄色", + "nl": "", + "es": "" + }, + "color_code": "Y00", + "fila_color": [ + "#FCE300FF" + ] + }, + { + "fila_color_code": "30201", + "fila_id": "GFG00", + "fila_color_type": "单色", + "fila_type": "PETG Basic", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Red", + "it": "", + "fr": "", + "hu": "", + "zh": "红色", + "nl": "", + "es": "" + }, + "color_code": "R00", + "fila_color": [ + "#D6001CFF" + ] + }, + { + "fila_color_code": "30603", + "fila_id": "GFG00", + "fila_color_type": "单色", + "fila_type": "PETG Basic", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Reflex Blue", + "it": "", + "fr": "", + "hu": "", + "zh": "深蓝色", + "nl": "", + "es": "" + }, + "color_code": "B00", + "fila_color": [ + "#001489FF" + ] + }, + { + "fila_color_code": "30800", + "fila_id": "GFG00", + "fila_color_type": "单色", + "fila_type": "PETG Basic", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Dark Brown", + "it": "", + "fr": "", + "hu": "", + "zh": "深棕色", + "nl": "", + "es": "" + }, + "color_code": "N00", + "fila_color": [ + "#4f2c1dFF" + ] + }, + { + "fila_color_code": "30502", + "fila_id": "GFG00", + "fila_color_type": "单色", + "fila_type": "PETG Basic", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Green", + "it": "", + "fr": "", + "hu": "", + "zh": "绿色", + "nl": "", + "es": "" + }, + "color_code": "G00", + "fila_color": [ + "#009639FF" + ] + }, + { + "fila_color_code": "30301", + "fila_id": "GFG00", + "fila_color_type": "单色", + "fila_type": "PETG Basic", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Orange", + "it": "", + "fr": "", + "hu": "", + "zh": "橙色", + "nl": "", + "es": "" + }, + "color_code": "A00", + "fila_color": [ + "#FF671FFF" + ] + }, + { + "fila_color_code": "30503", + "fila_id": "GFG00", + "fila_color_type": "单色", + "fila_type": "PETG Basic", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Pine Green", + "it": "", + "fr": "", + "hu": "", + "zh": "墨绿色", + "nl": "", + "es": "" + }, + "color_code": "G01", + "fila_color": [ + "#034638FF" + ] + }, + { + "fila_color_code": "30604", + "fila_id": "GFG00", + "fila_color_type": "单色", + "fila_type": "PETG Basic", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Navy Blue", + "it": "", + "fr": "", + "hu": "", + "zh": "湖蓝色", + "nl": "", + "es": "" + }, + "color_code": "B01", + "fila_color": [ + "#0086d6FF" + ] + }, + { + "fila_color_code": "30108", + "fila_id": "GFG00", + "fila_color_type": "单色", + "fila_type": "PETG Basic", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Misty Blue", + "it": "", + "fr": "", + "hu": "", + "zh": "蓝灰色", + "nl": "", + "es": "" + }, + "color_code": "D01", + "fila_color": [ + "#688197FF" + ] + }, + { + "fila_color_code": "30403", + "fila_id": "GFG00", + "fila_color_type": "单色", + "fila_type": "PETG Basic", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Dark Beige", + "it": "", + "fr": "", + "hu": "", + "zh": "深米色", + "nl": "", + "es": "" + }, + "color_code": "Y01", + "fila_color": [ + "#dbc8b6FF" + ] + }, + { + "fila_color_code": "17100", + "fila_id": "GFA19", + "fila_color_type": "单色", + "fila_type": "PLA Pure", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Pure White", + "it": "", + "fr": "", + "hu": "", + "zh": "纯净白", + "nl": "", + "es": "" + }, + "color_code": "W00", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "17101", + "fila_id": "GFA19", + "fila_color_type": "单色", + "fila_type": "PLA Pure", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Absolute Black", + "it": "", + "fr": "", + "hu": "", + "zh": "纯净黑", + "nl": "", + "es": "" + }, + "color_code": "K00", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "17200", + "fila_id": "GFA19", + "fila_color_type": "单色", + "fila_type": "PLA Pure", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Milky Pink", + "it": "", + "fr": "", + "hu": "", + "zh": "水玉粉", + "nl": "", + "es": "" + }, + "color_code": "P00", + "fila_color": [ + "#f7ced7FF" + ] + }, + { + "fila_color_code": "17600", + "fila_id": "GFA19", + "fila_color_type": "单色", + "fila_type": "PLA Pure", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Baby Blue", + "it": "", + "fr": "", + "hu": "", + "zh": "雪山蓝", + "nl": "", + "es": "" + }, + "color_code": "B00", + "fila_color": [ + "#a4dbe8FF" + ] + }, + { + "fila_color_code": "17300", + "fila_id": "GFA19", + "fila_color_type": "单色", + "fila_type": "PLA Pure", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Apricot", + "it": "", + "fr": "", + "hu": "", + "zh": "杏子黄", + "nl": "", + "es": "" + }, + "color_code": "A00", + "fila_color": [ + "#ffb673FF" + ] + }, + { + "fila_color_code": "30701", + "fila_id": "GFG00", + "fila_color_type": "单色", + "fila_type": "PETG Basic", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Purple", + "it": "", + "fr": "", + "hu": "", + "zh": "紫色", + "nl": "", + "es": "" + }, + "color_code": "P01", + "fila_color": [ + "#8A75D1FF" + ] + }, + { + "fila_color_code": "30404", + "fila_id": "GFG00", + "fila_color_type": "单色", + "fila_type": "PETG Basic", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Sunflower Yellow", + "it": "", + "fr": "", + "hu": "", + "zh": "芒果橙", + "nl": "", + "es": "" + }, + "color_code": "Y04", + "fila_color": [ + "#FFB81CFF" + ] + }, + { + "fila_color_code": "30504", + "fila_id": "GFG00", + "fila_color_type": "单色", + "fila_type": "PETG Basic", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Bright Green", + "it": "", + "fr": "", + "hu": "", + "zh": "苹果绿", + "nl": "", + "es": "" + }, + "color_code": "G04", + "fila_color": [ + "#97D700FF" + ] + }, + { + "fila_color_code": "30702", + "fila_id": "GFG00", + "fila_color_type": "单色", + "fila_type": "PETG Basic", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Hot Pink", + "it": "", + "fr": "", + "hu": "", + "zh": "粉紫色", + "nl": "", + "es": "" + }, + "color_code": "P02", + "fila_color": [ + "#F277C6FF" + ] + }, + { + "fila_color_code": "35100", + "fila_id": "GFG03", + "fila_color_type": "单色", + "fila_type": "PETG Matte", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "White", + "it": "", + "fr": "", + "hu": "", + "zh": "白色", + "nl": "", + "es": "" + }, + "color_code": "W00", + "fila_color": [ + "#FFFFFFFF" + ] + }, + { + "fila_color_code": "35101", + "fila_id": "GFG03", + "fila_color_type": "单色", + "fila_type": "PETG Matte", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Black", + "it": "", + "fr": "", + "hu": "", + "zh": "黑色", + "nl": "", + "es": "" + }, + "color_code": "K00", + "fila_color": [ + "#000000FF" + ] + }, + { + "fila_color_code": "35500", + "fila_id": "GFG03", + "fila_color_type": "单色", + "fila_type": "PETG Matte", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Lime", + "it": "", + "fr": "", + "hu": "", + "zh": "黄绿色", + "nl": "", + "es": "" + }, + "color_code": "G00", + "fila_color": [ + "#c0df16FF" + ] + }, + { + "fila_color_code": "35102", + "fila_id": "GFG03", + "fila_color_type": "单色", + "fila_type": "PETG Matte", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Gray", + "it": "", + "fr": "", + "hu": "", + "zh": "灰色", + "nl": "", + "es": "" + }, + "color_code": "D00", + "fila_color": [ + "#7F7E83FF" + ] + }, + { + "fila_color_code": "35700", + "fila_id": "GFG03", + "fila_color_type": "单色", + "fila_type": "PETG Matte", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Pink", + "it": "", + "fr": "", + "hu": "", + "zh": "粉色", + "nl": "", + "es": "" + }, + "color_code": "P00", + "fila_color": [ + "#FABBCBFF" + ] + }, + { + "fila_color_code": "35600", + "fila_id": "GFG03", + "fila_color_type": "单色", + "fila_type": "PETG Matte", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Baby Blue", + "it": "", + "fr": "", + "hu": "", + "zh": "浅蓝色", + "nl": "", + "es": "" + }, + "color_code": "B00", + "fila_color": [ + "#B9D9EBFF" + ] + }, + { + "fila_color_code": "35702", + "fila_id": "GFG03", + "fila_color_type": "单色", + "fila_type": "PETG Matte", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Violet", + "it": "", + "fr": "", + "hu": "", + "zh": "紫罗兰", + "nl": "", + "es": "" + }, + "color_code": "P02", + "fila_color": [ + "#A7A4E0FF" + ] + }, + { + "fila_color_code": "35501", + "fila_id": "GFG03", + "fila_color_type": "单色", + "fila_type": "PETG Matte", + "fila_color_name": { + "de": "", + "sv": "", + "pt": "", + "ko": "", + "ja": "", + "en": "Avocado Green", + "it": "", + "fr": "", + "hu": "", + "zh": "牛油果绿", + "nl": "", + "es": "" + }, + "color_code": "G01", + "fila_color": [ + "#bce194FF" + ] + } + ], + "total": 318 +} \ No newline at end of file diff --git a/resources/profiles/BBL/filament/support_recommended_params.json b/resources/profiles/BBL/filament/support_recommended_params.json new file mode 100644 index 0000000000..18bfcb48a7 --- /dev/null +++ b/resources/profiles/BBL/filament/support_recommended_params.json @@ -0,0 +1,263 @@ +{ + "type": "filament", + "description": "Recommended support parameters for specific material combinations. support_material_type/model_material_type can be 'name' or 'type'", + "combinations": [ + { + "model_material": "PLA", + "model_material_type": "type", + "support_material_list": [ + "Bambu Support For PLA/PETG", + "Bambu Support For PLA" + ], + "support_material_type": "name", + "priority": 3, + "recommended_params": { + "enable_support": true, + "support_type": "tree(auto)", + "support_style": "tree_hybrid", + "support_threshold_angle": 35, + "support_on_build_plate_only": false, + "raft_first_layer_expansion": 5.0, + "support_top_z_distance": 0.0, + "support_interface_pattern": "rectilinear_interlaced", + "support_interface_spacing": 0.0, + "tree_support_branch_diameter": 3.0, + "tree_support_branch_diameter_angle": 7.0, + "support_interface_speed": [ + 50.0, + 50.0, + 50.0, + 50.0 + ] + } + }, + { + "model_material": "PLA", + "model_material_type": "type", + "support_material_list": [ + "PETG" + ], + "support_material_type": "type", + "priority": 1, + "recommended_params": { + "enable_support": true, + "support_type": "tree(auto)", + "support_style": "tree_hybrid", + "support_threshold_angle": 35, + "support_on_build_plate_only": false, + "raft_first_layer_expansion": 5.0, + "support_top_z_distance": 0.0, + "support_interface_pattern": "rectilinear_interlaced", + "support_interface_spacing": 0.0, + "tree_support_branch_diameter": 3.0, + "tree_support_branch_diameter_angle": 7.0, + "support_interface_speed": [ + 50.0, + 50.0, + 50.0, + 50.0 + ] + } + }, + { + "model_material": "PLA", + "model_material_type": "type", + "support_material_list": [ + "PVA" + ], + "support_material_type": "type", + "priority": 2, + "recommended_params": { + "enable_support": true, + "support_type": "tree(auto)", + "support_on_build_plate_only": false, + "support_top_z_distance": 0.0, + "support_bottom_z_distance": 0.0, + "support_interface_pattern": "rectilinear_interlaced", + "support_interface_spacing": 0.0, + "support_object_xy_distance": 0.0 + } + }, + { + "model_material": "PETG", + "model_material_type": "type", + "support_material_list": [ + "Bambu Support For PLA/PETG" + ], + "support_material_type": "name", + "priority": 3, + "recommended_params": { + "enable_support": true, + "support_type": "tree(auto)", + "support_style": "tree_hybrid", + "support_threshold_angle": 35, + "support_on_build_plate_only": false, + "raft_first_layer_expansion": 5.0, + "support_top_z_distance": 0.0, + "support_interface_pattern": "rectilinear_interlaced", + "support_interface_spacing": 0.0, + "tree_support_branch_diameter": 3.0, + "tree_support_branch_diameter_angle": 7.0, + "support_interface_speed": [ + 50.0, + 50.0, + 50.0, + 50.0 + ] + } + }, + { + "model_material": "PETG", + "model_material_type": "type", + "support_material_list": [ + "PLA" + ], + "support_material_type": "type", + "priority": 1, + "recommended_params": { + "enable_support": true, + "support_type": "tree(auto)", + "support_style": "tree_hybrid", + "support_threshold_angle": 35, + "support_on_build_plate_only": false, + "raft_first_layer_expansion": 5.0, + "support_top_z_distance": 0.0, + "support_interface_pattern": "rectilinear_interlaced", + "support_interface_spacing": 0.0, + "tree_support_branch_diameter": 3.0, + "tree_support_branch_diameter_angle": 7.0, + "support_interface_speed": [ + 50.0, + 50.0, + 50.0, + 50.0 + ] + } + }, + { + "model_material": "ABS", + "model_material_type": "type", + "support_material_list": [ + "Bambu Support for ABS" + ], + "support_material_type": "name", + "priority": 3, + "recommended_params": { + "enable_support": true, + "support_type": "tree(auto)", + "support_on_build_plate_only": false, + "support_top_z_distance": 0.0, + "support_interface_pattern": "rectilinear_interlaced", + "support_interface_spacing": 0.0 + } + }, + { + "model_material": "PA", + "model_material_type": "type", + "support_material_list": [ + "Bambu Support For PA/PET", + "Bambu ASA", + "Bambu ABS" + ], + "support_material_type": "name", + "priority": 3, + "recommended_params": { + "enable_support": true, + "support_type": "tree(auto)", + "support_style": "tree_hybrid", + "support_on_build_plate_only": false, + "support_top_z_distance": 0.0, + "support_interface_pattern": "rectilinear_interlaced", + "support_interface_spacing": 0.0 + } + }, + { + "model_material": "TPU", + "model_material_type": "type", + "support_material_list": [ + "PLA" + ], + "support_material_type": "type", + "priority": 2, + "recommended_params": { + "enable_support": true, + "support_type": "tree(auto)", + "support_on_build_plate_only": false, + "support_top_z_distance": 0.0, + "support_interface_pattern": "rectilinear_interlaced", + "support_interface_spacing": 0.0, + "support_object_xy_distance": 0.0 + } + }, + { + "model_material": "Bambu PA6-GF", + "model_material_type": "name", + "support_material_list": [ + "ABS" + ], + "support_material_type": "type", + "priority": 2, + "recommended_params": { + "support_top_z_distance": 0.0, + "support_interface_pattern": "rectilinear_interlaced", + "support_interface_spacing": 0.0 + } + }, + { + "model_material": "Bambu PET-CF", + "model_material_type": "name", + "support_material_list": [ + "ASA" + ], + "support_material_type": "type", + "priority": 2, + "recommended_params": { + "support_top_z_distance": 0.0, + "support_interface_pattern": "rectilinear_interlaced", + "support_interface_spacing": 0.0 + } + }, + { + "model_material": "Bambu PPA-CF", + "model_material_type": "name", + "support_material_list": [ + "ASA" + ], + "support_material_type": "type", + "priority": 2, + "recommended_params": { + "support_top_z_distance": 0.0, + "support_interface_pattern": "rectilinear_interlaced", + "support_interface_spacing": 0.0 + } + }, + { + "model_material": "Bambu PAHT-CF", + "model_material_type": "name", + "support_material_list": [ + "ASA" + ], + "support_material_type": "type", + "priority": 2, + "recommended_params": { + "support_top_z_distance": 0.0, + "support_interface_pattern": "rectilinear_interlaced", + "support_interface_spacing": 0.0 + } + }, + { + "model_material": "Bambu PA6-CF", + "model_material_type": "name", + "support_material_list": [ + "ASA" + ], + "support_material_type": "type", + "priority": 2, + "recommended_params": { + "support_top_z_distance": 0.0, + "support_interface_pattern": "rectilinear_interlaced", + "support_interface_spacing": 0.0 + } + } + ] +} diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab A1 0.2 nozzle.json index 7dc3281418..469834f156 100644 --- a/resources/profiles/BBL/machine/Bambu Lab A1 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab A1 0.2 nozzle.json @@ -1,29 +1,32 @@ { - "type": "machine", - "name": "Bambu Lab A1 0.2 nozzle", - "inherits": "Bambu Lab A1 0.4 nozzle", - "from": "system", - "setting_id": "GM029", - "instantiation": "true", - "nozzle_diameter": [ - "0.2" - ], - "printer_model": "Bambu Lab A1", - "printer_variant": "0.2", - "default_filament_profile": [ - "Bambu PLA Basic @BBL A1 0.2 nozzle" - ], - "default_print_profile": "0.10mm Standard @BBL A1 0.2 nozzle", - "max_layer_height": [ - "0.14" - ], - "min_layer_height": [ - "0.04" - ], - "upward_compatible_machine": [ - "Bambu Lab H2D 0.2 nozzle", - "Bambu Lab H2D Pro 0.2 nozzle", - "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle" - ] + "type": "machine", + "name": "Bambu Lab A1 0.2 nozzle", + "inherits": "Bambu Lab A1 0.4 nozzle", + "from": "system", + "setting_id": "GM029", + "instantiation": "true", + "nozzle_diameter": [ + "0.2" + ], + "printer_model": "Bambu Lab A1", + "printer_variant": "0.2", + "default_filament_profile": [ + "Bambu PLA Basic @BBL A1 0.2 nozzle" + ], + "default_print_profile": "0.10mm Standard @BBL A1 0.2 nozzle", + "max_layer_height": [ + "0.14" + ], + "min_layer_height": [ + "0.04" + ], + "upward_compatible_machine": [ + "Bambu Lab H2D 0.2 nozzle", + "Bambu Lab H2D Pro 0.2 nozzle", + "Bambu Lab H2S 0.2 nozzle", + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab H2C 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab A2L 0.2 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template change_filament_gcode.json b/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template change_filament_gcode.json new file mode 100644 index 0000000000..3c415c212b --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template change_filament_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab A1 0.4 nozzle template change_filament_gcode", + "instantiation": "false", + "change_filament_gcode": ";===== A1 20251031 =======================\nM1007 S0 ; turn off mass estimation\nG392 S0\nM620 S[next_extruder]A\nM204 S9000\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\nM106 P2 S0\n{if old_filament_temp > 142 && next_extruder < 255}\nM104 S[old_filament_temp]\n{endif}\n\nG1 X267 F18000\n\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F1200\n{else}\nM620.11 S0\n{endif}\nM400\n\nM620.1 E F{flush_volumetric_speeds[previous_extruder]/2.4053*60} T{flush_temperatures[previous_extruder]}\nM620.10 A0 F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nT[next_extruder]\nM620.1 E F{flush_volumetric_speeds[next_extruder]/2.4053*60} T{flush_temperatures[next_extruder]}\nM620.10 A1 F{flush_volumetric_speeds[next_extruder]/2.4053*60} L[flush_length] H[nozzle_diameter] T{flush_temperatures[next_extruder]}\n\nG1 Y128 F9000\n\n{if next_extruder < 255}\n\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\n\nM400\nG92 E0\nM628 S0\n\n{if flush_length_1 > 1}\n; FLUSH_START\n; always use highest temperature to flush\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S[flush_temperatures[next_extruder]]\nM106 P1 S60\n{if flush_length_1 > 23.7}\nG1 E23.7 F{flush_volumetric_speeds[previous_extruder]/2.4053*60} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\n{else}\nG1 E{flush_length_1} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\nM400\nM1002 set_filament_type:{filament_type[next_extruder]}\n{endif}\n\n{if flush_length_1 > 45 && flush_length_2 > 1}\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n{endif}\n\n{if flush_length_2 > 1}\nM106 P1 S60\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 45 && flush_length_3 > 1}\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n{endif}\n\n{if flush_length_3 > 1}\nM106 P1 S60\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 45 && flush_length_4 > 1}\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n{endif}\n\n{if flush_length_4 > 1}\nM106 P1 S60\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n\nM629\n\nM400\nM106 P1 S60\nM109 S[new_filament_temp]\nG1 E6 F{flush_volumetric_speeds[next_extruder]/2.4053*60} ;Compensate for filament spillage during waiting temperature\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nG1 Z{max_layer_z + 3.0} F3000\nM106 P1 S0\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\n\nM622.1 S0\nM9833 F{outer_wall_volumetric_speed/2.4} A0.3 ; cali dynamic extrusion compensation\nM1002 judge_flag filament_need_cali_flag\nM622 J1\n G92 E0\n G1 E-[new_retract_length_toolchange] F1800\n M400\n \n M106 P1 S178\n M400 S4\n G1 X-38.2 F18000\n G1 X-48.2 F3000\n G1 X-38.2 F18000 ;wipe and shake\n G1 X-48.2 F3000\n G1 X-38.2 F12000 ;wipe and shake\n G1 X-48.2 F3000\n M400\n M106 P1 S0 \nM623\n\nM621 S[next_extruder]A\nG392 S0\n\nM1007 S1\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template layer_change_gcode.json b/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template layer_change_gcode.json new file mode 100644 index 0000000000..42e7835633 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template layer_change_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab A1 0.4 nozzle template layer_change_gcode", + "instantiation": "false", + "layer_change_gcode": "; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template machine_end_gcode.json b/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template machine_end_gcode.json new file mode 100644 index 0000000000..ea1cf17af5 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template machine_end_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab A1 0.4 nozzle template machine_end_gcode", + "instantiation": "false", + "machine_end_gcode": ";===== date: 20260513 =====================\nG392 S0 ;turn off nozzle clog detect\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG90\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\nG1 X0 Y{first_layer_center_no_wipe_tower[1]} F18000 ; move to safe pos\nG1 X-13.0 F3000 ; move to safe pos\n{if !spiral_mode && print_sequence != \"by object\"}\nM1002 judge_flag timelapse_record_flag\nM622 J1\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM991 S0 P-1 ;end timelapse at safe pos\nM623\n{endif}\n\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\n;G1 X27 F15000 ; wipe\n\n; pull back filament to AMS\nM620 S255\nG1 X267 F15000\nT255\nG1 X-28.5 F18000\nG1 X-48.2 F3000\nG1 X-28.5 F18000\nG1 X-48.2 F3000\nM621 S255\n\nM104 S0 ; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 256}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z256 F600\n G1 Z256\n{endif}\nM400 P100\nM17 R ; restore z current\n\nG90\nG1 X-48 Y180 F3600\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A0 B20 L100 C37 D20 M40 E42 F20 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C46 D10 M80 E46 F10 N80\nM1006 A44 B20 L100 C39 D20 M60 E48 F20 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C39 D10 M60 E39 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C39 D10 M60 E39 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C48 D10 M60 E44 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A44 B20 L100 C49 D20 M80 E41 F20 N80\nM1006 A0 B20 L100 C0 D20 M60 E0 F20 N80\nM1006 A0 B20 L100 C37 D20 M30 E37 F20 N60\nM1006 W\n;=====printer finish sound=========\n\n;M17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\nM400\nM18 X Y Z\n\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..e5fc622ad8 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab A1 0.4 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: A1 =========================\n;===== date: 20260513 ==================\nG392 S0\nM9833.2\n;M400\n;M73 P1.717\n\n;===== start to heat heatbead&hotend==========\nM1002 gcode_claim_action : 2\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\nM104 S140\nM140 S[bed_temperature_initial_layer_single]\n\n;=====start printer sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A43 B10 L100 C46 D10 M70 E39 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A0 B10 L100 C43 D10 M60 E39 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A0 B10 L100 C41 D10 M80 E41 F10 N80\nM1006 A0 B10 L100 C44 D10 M80 E44 F10 N80\nM1006 A0 B10 L100 C49 D10 M80 E49 F10 N80\nM1006 A0 B10 L100 C0 D10 M80 E0 F10 N80\nM1006 A44 B10 L100 C48 D10 M60 E39 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A0 B10 L100 C44 D10 M80 E39 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A43 B10 L100 C46 D10 M60 E39 F10 N80\nM1006 W\nM18 \n;=====start printer sound ===================\n\n;=====avoid end stop =================\nG91\nG380 S2 Z40 F1200\nG380 S3 Z-15 F1200\nG90\n\n;===== reset machine status =================\n;M290 X39 Y39 Z8\nM204 S6000\n\nM630 S0 P0\nG91\nM17 Z0.3 ; lower the z-motor current\n\nG90\nM17 X0.65 Y1.2 Z0.6 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\n;M211 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\n\n;====== cog noise reduction=================\nM982.2 S1 ; turn on cog noise reduction\n\nM1002 gcode_claim_action : 13\n\nG28 X\nG91\nG1 Z5 F1200\nG90\nG0 X128 F30000\nG0 Y254 F3000\nG91\nG1 Z-5 F1200\n\nM109 S25 H140\n\nM17 E0.3\nM83\nG1 E10 F1200\nG1 E-0.5 F30\nM17 D\n\nG28 Z P0 T140; home z with low precision,permit 300deg temperature\nM104 S{nozzle_temperature_initial_layer[initial_extruder]}\n\nM1002 judge_flag build_plate_detect_flag\nM622 S1\n G39.4\n G90\n G1 Z5 F1200\nM623\n\n;M400\n;M73 P1.717\n\n;===== prepare print temperature and material ==========\nM1002 gcode_claim_action : 24\n\nM400\n;G392 S1\nM211 X0 Y0 Z0 ;turn off soft endstop\nM975 S1 ; turn on\n\nG90\nG1 X-28.5 F30000\nG1 X-48.2 F3000\n\nM620 M ;enable remap\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M1002 gcode_claim_action : 4\n M400\n M1002 set_filament_type:UNKNOWN\n M109 S[nozzle_temperature_initial_layer]\n{if (filament_type[initial_no_support_extruder] == \"PLA\") && (nozzle_diameter != 0.2)}\n M104 S220\n{else}\n M104 S250\n{endif}\n M400\n T[initial_no_support_extruder]\n G1 X-48.2 F3000\n M400\n\n{if (filament_type[initial_no_support_extruder] == \"PLA\") && (nozzle_diameter != 0.2)}\n M620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T220\n M109 S220 ;set nozzle to common flush temp\n{else}\n M620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n M109 S250 ;set nozzle to common flush temp\n{endif}\n M106 P1 S0\n G92 E0\n G1 E50 F200\n M400\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\nM621 S[initial_no_support_extruder]A\n\n{if (filament_type[initial_no_support_extruder] == \"PLA\") && (nozzle_diameter != 0.2)}\n M109 S220 H300\n{else}\n M109 S{flush_temperatures[initial_no_support_extruder]} H300\n{endif}\nG92 E0\nG1 E50 F200 ; lower extrusion speed to avoid clog\nM400\nM106 P1 S178\nG92 E0\nG1 E5 F200\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG92 E0\nG1 E-0.5 F300\n\nG1 X-28.5 F30000\nG1 X-48.2 F3000\nG1 X-28.5 F30000 ;wipe and shake\nG1 X-48.2 F3000\nG1 X-28.5 F30000 ;wipe and shake\nG1 X-48.2 F3000\n\n;G392 S0\n\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n;M400\n;M73 P1.717\n\n;===== auto extrude cali start =========================\nM975 S1\n;G392 S1\n\nG90\nM83\nT1000\nG1 X-48.2 Y0 Z10 F10000\nM400\nM1002 set_filament_type:UNKNOWN\n\nM412 S1 ; ===turn on filament runout detection===\nM400 P10\nM620.3 W1; === turn on filament tangle detection===\nM400 S2\n\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n\n;M1002 set_flag extrude_cali_flag=1\nM1002 judge_flag extrude_cali_flag\n\nM622 J1\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_extruder]}\n G1 E10 F{outer_wall_volumetric_speed/2.4*60}\n M983 F{outer_wall_volumetric_speed/2.4} A0.3 H[nozzle_diameter]; cali dynamic extrusion compensation\n\n M106 P1 S255\n M400 S5\n G1 X-28.5 F18000\n G1 X-48.2 F3000\n G1 X-28.5 F18000 ;wipe and shake\n G1 X-48.2 F3000\n G1 X-28.5 F12000 ;wipe and shake\n G1 X-48.2 F3000\n M400\n M106 P1 S0\n\n M1002 judge_last_extrude_cali_success\n M622 J0\n M983 F{outer_wall_volumetric_speed/2.4} A0.3 H[nozzle_diameter]; cali dynamic extrusion compensation\n M106 P1 S255\n M400 S5\n G1 X-28.5 F18000\n G1 X-48.2 F3000\n G1 X-28.5 F18000 ;wipe and shake\n G1 X-48.2 F3000\n G1 X-28.5 F12000 ;wipe and shake\n M400\n M106 P1 S0\n M623\n \n G1 X-48.2 F3000\n M400\n M984 A0.1 E1 S1 F{outer_wall_volumetric_speed/2.4} H[nozzle_diameter]\n M106 P1 S178\n M400 S7\n G1 X-28.5 F18000\n G1 X-48.2 F3000\n G1 X-28.5 F18000 ;wipe and shake\n G1 X-48.2 F3000\n G1 X-28.5 F12000 ;wipe and shake\n G1 X-48.2 F3000\n M400\n M106 P1 S0\nM623 ; end of \"draw extrinsic para cali paint\"\n\n;G392 S0\n;===== auto extrude cali end ========================\n\n;M400\n;M73 P1.717\n\nM104 S170 ; prepare to wipe nozzle\nM106 S255 ; turn on fan\n\n;===== mech mode fast check start =====================\nM1002 gcode_claim_action : 3\n\nG1 X128 Y128 F20000\nG1 Z5 F1200\nM400 P200\nM970.3 Q1 A5 K0 O3\nM974 Q1 S2 P0\n\nM970.2 Q1 K1 W58 Z0.1\nM974 S2\n\nG1 X128 Y128 F20000\nG1 Z5 F1200\nM400 P200\nM970.3 Q0 A10 K0 O1\nM974 Q0 S2 P0\n\nM970.2 Q0 K1 W78 Z0.1\nM974 S2\n\nM975 S1\nG1 F30000\nG1 X0 Y5\nG28 X ; re-home XY\n\nG1 Z4 F1200\n\n;===== mech mode fast check end =======================\n\n;M400\n;M73 P1.717\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\n\nM975 S1\nM106 S255 ; turn on fan (G28 has turn off fan)\nM211 S; push soft endstop status\nM211 X0 Y0 Z0 ;turn off Z axis endstop\n\n;===== remove waste by touching start =====\n\nM104 S170 ; set temp down to heatbed acceptable\n\nM83\nG1 E-1 F500\nG90\nM83\n\nM109 S170\nG0 X108 Y-0.5 F30000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X110 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X112 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X114 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X116 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X118 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X120 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X122 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X124 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X126 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X128 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X130 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X132 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X134 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X136 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X138 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X140 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X142 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X144 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X146 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X148 F10000\nG380 S3 Z-5 F1200\n\nG1 Z5 F30000\n;===== remove waste by touching end =====\n\nG1 Z10 F1200\nG0 X118 Y261 F30000\nG1 Z5 F1200\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-50}\n\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nM104 S140 ; prepare to abl\nG0 Z5 F20000\n\nG0 X128 Y261 F20000 ; move to exposed steel surface\nG0 Z-1.01 F1200 ; stop the nozzle\n\nG91\nG2 I1 J0 X2 Y0 F2000.1\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\n\nG90\nG1 Z10 F1200\n\n;===== brush material wipe nozzle =====\n\nG90\nG1 Y250 F30000\nG1 X55\nG1 Z1.300 F1200\nG1 Y262.5 F6000\nG91\nG1 X-35 F30000\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Z5.000 F1200\n\nG90\nG1 X30 Y250.000 F30000\nG1 Z1.300 F1200\nG1 Y262.5 F6000\nG91\nG1 X35 F30000\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Z10.000 F1200\n\n;===== brush material wipe nozzle end =====\n\nG90\n;G0 X128 Y261 F20000 ; move to exposed steel surface\nG1 Y250 F30000\nG1 X138\nG1 Y261\nG0 Z-1.01 F1200 ; stop the nozzle\n\nG91\nG2 I1 J0 X2 Y0 F2000.1\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\n\nM109 S140\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM211 R; pop softend status\n\n;===== wipe nozzle end ================================\n\n;M400\n;M73 P1.717\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\n\nG90\nG1 Z5 F1200\nG1 X0 Y0 F30000\nG29.2 S1 ; turn on ABL\n\nM190 S[bed_temperature_initial_layer_single]; ensure bed temp\nM109 S140\nM106 S0 ; turn off fan , too noisy\n\nM622 J1\n M1002 gcode_claim_action : 1\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n\n;===== home after wipe mouth end =======================\n\n;M400\n;M73 P1.717\n\nG1 X108.000 Y-0.500 F30000\nG1 Z0.300 F1200\nM400\nG2814 Z0.32\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; prepare to print\n\n;===== nozzle load line ===============================\n;G90\n;M83\n;G1 Z5 F1200\n;G1 X88 Y-0.5 F20000\n;G1 Z0.3 F1200\n\n;M109 S{nozzle_temperature_initial_layer[initial_extruder]}\n\n;G1 E2 F300\n;G1 X168 E4.989 F6000\n;G1 Z1 F1200\n;===== nozzle load line end ===========================\n\n;===== extrude cali test ===============================\n\nM400\n M900 S\n M900 C\n G90\n M83\n\n M109 S{nozzle_temperature_initial_layer[initial_extruder]}\n G0 X128 E8 F{outer_wall_volumetric_speed/(24/20) * 60}\n G0 X133 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X138 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X143 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X148 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X153 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G91\n G1 X1 Z-0.300\n G1 X4\n G1 Z1 F1200\n G90\n M400\n\nM900 R\n\nM1002 judge_flag extrude_cali_flag\nM622 J1\n G90\n G1 X108.000 Y1.000 F30000\n G91\n G1 Z-0.700 F1200\n G90\n M83\n G0 X128 E10 F{outer_wall_volumetric_speed/(24/20) * 60}\n G0 X133 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X138 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X143 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X148 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X153 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G91\n G1 X1 Z-0.300\n G1 X4\n G1 Z1 F1200\n G90\n M400\nM623\n\nG1 Z0.2\n\n;M400\n;M73 P1.717\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.02} ; for Textured PEI Plate\n{endif}\n\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n\nM211 X0 Y0 Z0 ;turn off soft endstop\n;G392 S1 ; turn on clog detection\nM1007 S1 ; turn on mass estimation\nG29.4\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template time_lapse_gcode.json b/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template time_lapse_gcode.json new file mode 100644 index 0000000000..7d91e7c3b0 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle template time_lapse_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab A1 0.4 nozzle template time_lapse_gcode", + "instantiation": "false", + "time_lapse_gcode": ";===================== date: 20250206 =====================\n{if !spiral_mode && print_sequence != \"by object\"}\n; don't support timelapse gcode in spiral_mode and by object sequence for I3 structure printer\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\nG92 E0\nG1 Z{max_layer_z + 0.4}\nG1 X0 Y{first_layer_center_no_wipe_tower[1]} F18000 ; move to safe pos\nG1 X-48.2 F3000 ; move to safe pos\nM400\nM1004 S5 P1 ; external shutter\nM400 P300\nM971 S11 C11 O0\nG92 E0\nG1 X0 F18000\nM623\n\n; SKIPTYPE: head_wrap_detect\nM622.1 S1\nM1002 judge_flag g39_3rd_layer_detect_flag\nM622 J1\n ; enable nozzle clog detect at 3rd layer\n {if layer_num == 2}\n M400\n G90\n M83\n M204 S5000\n G0 Z2 F4000\n G0 X261 Y250 F20000\n M400 P200\n G39 S1\n G0 Z2 F4000\n {endif}\n\n\n M622.1 S1\n M1002 judge_flag g39_detection_flag\n M622 J1\n {if !in_head_wrap_detect_zone}\n M622.1 S0\n M1002 judge_flag g39_mass_exceed_flag\n M622 J1\n {if layer_num > 2}\n G392 S0\n M400\n G90\n M83\n M204 S5000\n G0 Z{max_layer_z + 0.4} F4000\n G39.3 S1\n G0 Z{max_layer_z + 0.4} F4000\n G392 S0\n {endif}\n M623\n {endif}\n M623\nM623\n; SKIPPABLE_END\n{endif}\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle.json index c63d8f717c..ad543aa32f 100644 --- a/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab A1 0.4 nozzle.json @@ -1,80 +1,83 @@ { - "type": "machine", - "name": "Bambu Lab A1 0.4 nozzle", - "inherits": "fdm_bbl_3dp_001_common", - "from": "system", - "setting_id": "GM030", - "instantiation": "true", - "nozzle_diameter": [ - "0.4" - ], - "printer_model": "Bambu Lab A1", - "printer_variant": "0.4", - "auxiliary_fan": "0", - "bed_exclude_area": [], - "default_filament_profile": [ - "Bambu PLA Basic @BBL A1" - ], - "default_print_profile": "0.20mm Standard @BBL A1", - "enable_long_retraction_when_cut": "2", - "extruder_clearance_dist_to_rod": "56.5", - "extruder_clearance_height_to_lid": "256", - "extruder_clearance_height_to_rod": "25", - "extruder_clearance_max_radius": "73", - "grab_length": [ - "17.4" - ], - "head_wrap_detect_zone": [ - "226x224", - "256x224", - "256x256", - "226x256" - ], - "machine_load_filament_time": "25", - "machine_max_acceleration_extruding": [ - "12000", - "12000" - ], - "machine_max_acceleration_x": [ - "12000", - "12000" - ], - "machine_max_acceleration_y": [ - "12000", - "12000" - ], - "machine_max_acceleration_z": [ - "1500", - "1500" - ], - "machine_max_jerk_e": [ - "3", - "3" - ], - "machine_max_speed_z": [ - "30", - "30" - ], - "nozzle_height": "4.76", - "nozzle_type": [ - "stainless_steel" - ], - "nozzle_volume": [ - "92" - ], - "printable_height": "256", - "printer_structure": "i3", - "retract_lift_below": [ - "255" - ], - "upward_compatible_machine": [ - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle" - ], - "machine_start_gcode": ";===== machine: A1 =========================\n;===== date: 20250822 ==================\nG392 S0\nM9833.2\n;M400\n;M73 P1.717\n\n;===== start to heat heatbead&hotend==========\nM1002 gcode_claim_action : 2\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\nM104 S140\nM140 S[bed_temperature_initial_layer_single]\n\n;=====start printer sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A43 B10 L100 C46 D10 M70 E39 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A0 B10 L100 C43 D10 M60 E39 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A0 B10 L100 C41 D10 M80 E41 F10 N80\nM1006 A0 B10 L100 C44 D10 M80 E44 F10 N80\nM1006 A0 B10 L100 C49 D10 M80 E49 F10 N80\nM1006 A0 B10 L100 C0 D10 M80 E0 F10 N80\nM1006 A44 B10 L100 C48 D10 M60 E39 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A0 B10 L100 C44 D10 M80 E39 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A43 B10 L100 C46 D10 M60 E39 F10 N80\nM1006 W\nM18 \n;=====start printer sound ===================\n\n;=====avoid end stop =================\nG91\nG380 S2 Z40 F1200\nG380 S3 Z-15 F1200\nG90\n\n;===== reset machine status =================\n;M290 X39 Y39 Z8\nM204 S6000\n\nM630 S0 P0\nG91\nM17 Z0.3 ; lower the z-motor current\n\nG90\nM17 X0.65 Y1.2 Z0.6 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\n;M211 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\n\n;====== cog noise reduction=================\nM982.2 S1 ; turn on cog noise reduction\n\nM1002 gcode_claim_action : 13\n\nG28 X\nG91\nG1 Z5 F1200\nG90\nG0 X128 F30000\nG0 Y254 F3000\nG91\nG1 Z-5 F1200\n\nM109 S25 H140\n\nM17 E0.3\nM83\nG1 E10 F1200\nG1 E-0.5 F30\nM17 D\n\nG28 Z P0 T140; home z with low precision,permit 300deg temperature\nM104 S{nozzle_temperature_initial_layer[initial_extruder]}\n\nM1002 judge_flag build_plate_detect_flag\nM622 S1\n G39.4\n G90\n G1 Z5 F1200\nM623\n\n;M400\n;M73 P1.717\n\n;===== prepare print temperature and material ==========\nM1002 gcode_claim_action : 24\n\nM400\n;G392 S1\nM211 X0 Y0 Z0 ;turn off soft endstop\nM975 S1 ; turn on\n\nG90\nG1 X-28.5 F30000\nG1 X-48.2 F3000\n\nM620 M ;enable remap\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M1002 gcode_claim_action : 4\n M400\n M1002 set_filament_type:UNKNOWN\n M109 S[nozzle_temperature_initial_layer]\n M104 S250\n M400\n T[initial_no_support_extruder]\n G1 X-48.2 F3000\n M400\n\n M620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n M109 S250 ;set nozzle to common flush temp\n M106 P1 S0\n G92 E0\n G1 E50 F200\n M400\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\nM621 S[initial_no_support_extruder]A\n\nM109 S{flush_temperatures[initial_no_support_extruder]} H300\nG92 E0\nG1 E50 F200 ; lower extrusion speed to avoid clog\nM400\nM106 P1 S178\nG92 E0\nG1 E5 F200\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG92 E0\nG1 E-0.5 F300\n\nG1 X-28.5 F30000\nG1 X-48.2 F3000\nG1 X-28.5 F30000 ;wipe and shake\nG1 X-48.2 F3000\nG1 X-28.5 F30000 ;wipe and shake\nG1 X-48.2 F3000\n\n;G392 S0\n\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n;M400\n;M73 P1.717\n\n;===== auto extrude cali start =========================\nM975 S1\n;G392 S1\n\nG90\nM83\nT1000\nG1 X-48.2 Y0 Z10 F10000\nM400\nM1002 set_filament_type:UNKNOWN\n\nM412 S1 ; ===turn on filament runout detection===\nM400 P10\nM620.3 W1; === turn on filament tangle detection===\nM400 S2\n\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n\n;M1002 set_flag extrude_cali_flag=1\nM1002 judge_flag extrude_cali_flag\n\nM622 J1\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_extruder]}\n G1 E10 F{outer_wall_volumetric_speed/2.4*60}\n M983 F{outer_wall_volumetric_speed/2.4} A0.3 H[nozzle_diameter]; cali dynamic extrusion compensation\n\n M106 P1 S255\n M400 S5\n G1 X-28.5 F18000\n G1 X-48.2 F3000\n G1 X-28.5 F18000 ;wipe and shake\n G1 X-48.2 F3000\n G1 X-28.5 F12000 ;wipe and shake\n G1 X-48.2 F3000\n M400\n M106 P1 S0\n\n M1002 judge_last_extrude_cali_success\n M622 J0\n M983 F{outer_wall_volumetric_speed/2.4} A0.3 H[nozzle_diameter]; cali dynamic extrusion compensation\n M106 P1 S255\n M400 S5\n G1 X-28.5 F18000\n G1 X-48.2 F3000\n G1 X-28.5 F18000 ;wipe and shake\n G1 X-48.2 F3000\n G1 X-28.5 F12000 ;wipe and shake\n M400\n M106 P1 S0\n M623\n \n G1 X-48.2 F3000\n M400\n M984 A0.1 E1 S1 F{outer_wall_volumetric_speed/2.4} H[nozzle_diameter]\n M106 P1 S178\n M400 S7\n G1 X-28.5 F18000\n G1 X-48.2 F3000\n G1 X-28.5 F18000 ;wipe and shake\n G1 X-48.2 F3000\n G1 X-28.5 F12000 ;wipe and shake\n G1 X-48.2 F3000\n M400\n M106 P1 S0\nM623 ; end of \"draw extrinsic para cali paint\"\n\n;G392 S0\n;===== auto extrude cali end ========================\n\n;M400\n;M73 P1.717\n\nM104 S170 ; prepare to wipe nozzle\nM106 S255 ; turn on fan\n\n;===== mech mode fast check start =====================\nM1002 gcode_claim_action : 3\n\nG1 X128 Y128 F20000\nG1 Z5 F1200\nM400 P200\nM970.3 Q1 A5 K0 O3\nM974 Q1 S2 P0\n\nM970.2 Q1 K1 W58 Z0.1\nM974 S2\n\nG1 X128 Y128 F20000\nG1 Z5 F1200\nM400 P200\nM970.3 Q0 A10 K0 O1\nM974 Q0 S2 P0\n\nM970.2 Q0 K1 W78 Z0.1\nM974 S2\n\nM975 S1\nG1 F30000\nG1 X0 Y5\nG28 X ; re-home XY\n\nG1 Z4 F1200\n\n;===== mech mode fast check end =======================\n\n;M400\n;M73 P1.717\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\n\nM975 S1\nM106 S255 ; turn on fan (G28 has turn off fan)\nM211 S; push soft endstop status\nM211 X0 Y0 Z0 ;turn off Z axis endstop\n\n;===== remove waste by touching start =====\n\nM104 S170 ; set temp down to heatbed acceptable\n\nM83\nG1 E-1 F500\nG90\nM83\n\nM109 S170\nG0 X108 Y-0.5 F30000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X110 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X112 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X114 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X116 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X118 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X120 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X122 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X124 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X126 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X128 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X130 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X132 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X134 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X136 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X138 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X140 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X142 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X144 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X146 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X148 F10000\nG380 S3 Z-5 F1200\n\nG1 Z5 F30000\n;===== remove waste by touching end =====\n\nG1 Z10 F1200\nG0 X118 Y261 F30000\nG1 Z5 F1200\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-50}\n\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nM104 S140 ; prepare to abl\nG0 Z5 F20000\n\nG0 X128 Y261 F20000 ; move to exposed steel surface\nG0 Z-1.01 F1200 ; stop the nozzle\n\nG91\nG2 I1 J0 X2 Y0 F2000.1\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\n\nG90\nG1 Z10 F1200\n\n;===== brush material wipe nozzle =====\n\nG90\nG1 Y250 F30000\nG1 X55\nG1 Z1.300 F1200\nG1 Y262.5 F6000\nG91\nG1 X-35 F30000\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Z5.000 F1200\n\nG90\nG1 X30 Y250.000 F30000\nG1 Z1.300 F1200\nG1 Y262.5 F6000\nG91\nG1 X35 F30000\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Z10.000 F1200\n\n;===== brush material wipe nozzle end =====\n\nG90\n;G0 X128 Y261 F20000 ; move to exposed steel surface\nG1 Y250 F30000\nG1 X138\nG1 Y261\nG0 Z-1.01 F1200 ; stop the nozzle\n\nG91\nG2 I1 J0 X2 Y0 F2000.1\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\n\nM109 S140\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM211 R; pop softend status\n\n;===== wipe nozzle end ================================\n\n;M400\n;M73 P1.717\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\n\nG90\nG1 Z5 F1200\nG1 X0 Y0 F30000\nG29.2 S1 ; turn on ABL\n\nM190 S[bed_temperature_initial_layer_single]; ensure bed temp\nM109 S140\nM106 S0 ; turn off fan , too noisy\n\nM622 J1\n M1002 gcode_claim_action : 1\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n\n;===== home after wipe mouth end =======================\n\n;M400\n;M73 P1.717\n\nG1 X108.000 Y-0.500 F30000\nG1 Z0.300 F1200\nM400\nG2814 Z0.32\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; prepare to print\n\n;===== nozzle load line ===============================\n;G90\n;M83\n;G1 Z5 F1200\n;G1 X88 Y-0.5 F20000\n;G1 Z0.3 F1200\n\n;M109 S{nozzle_temperature_initial_layer[initial_extruder]}\n\n;G1 E2 F300\n;G1 X168 E4.989 F6000\n;G1 Z1 F1200\n;===== nozzle load line end ===========================\n\n;===== extrude cali test ===============================\n\nM400\n M900 S\n M900 C\n G90\n M83\n\n M109 S{nozzle_temperature_initial_layer[initial_extruder]}\n G0 X128 E8 F{outer_wall_volumetric_speed/(24/20) * 60}\n G0 X133 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X138 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X143 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X148 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X153 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G91\n G1 X1 Z-0.300\n G1 X4\n G1 Z1 F1200\n G90\n M400\n\nM900 R\n\nM1002 judge_flag extrude_cali_flag\nM622 J1\n G90\n G1 X108.000 Y1.000 F30000\n G91\n G1 Z-0.700 F1200\n G90\n M83\n G0 X128 E10 F{outer_wall_volumetric_speed/(24/20) * 60}\n G0 X133 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X138 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X143 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X148 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X153 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G91\n G1 X1 Z-0.300\n G1 X4\n G1 Z1 F1200\n G90\n M400\nM623\n\nG1 Z0.2\n\n;M400\n;M73 P1.717\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.02} ; for Textured PEI Plate\n{endif}\n\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n\nM211 X0 Y0 Z0 ;turn off soft endstop\n;G392 S1 ; turn on clog detection\nM1007 S1 ; turn on mass estimation\nG29.4\n", - "machine_end_gcode": ";===== date: 20231229 =====================\nG392 S0 ;turn off nozzle clog detect\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X0 Y{first_layer_center_no_wipe_tower[1]} F18000 ; move to safe pos\nG1 X-13.0 F3000 ; move to safe pos\n{if !spiral_mode && print_sequence != \"by object\"}\nM1002 judge_flag timelapse_record_flag\nM622 J1\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM991 S0 P-1 ;end timelapse at safe pos\nM623\n{endif}\n\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\n;G1 X27 F15000 ; wipe\n\n; pull back filament to AMS\nM620 S255\nG1 X267 F15000\nT255\nG1 X-28.5 F18000\nG1 X-48.2 F3000\nG1 X-28.5 F18000\nG1 X-48.2 F3000\nM621 S255\n\nM104 S0 ; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 256}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z256 F600\n G1 Z256\n{endif}\nM400 P100\nM17 R ; restore z current\n\nG90\nG1 X-48 Y180 F3600\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A0 B20 L100 C37 D20 M40 E42 F20 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C46 D10 M80 E46 F10 N80\nM1006 A44 B20 L100 C39 D20 M60 E48 F20 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C39 D10 M60 E39 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C39 D10 M60 E39 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C48 D10 M60 E44 F10 N80\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N80\nM1006 A44 B20 L100 C49 D20 M80 E41 F20 N80\nM1006 A0 B20 L100 C0 D20 M60 E0 F20 N80\nM1006 A0 B20 L100 C37 D20 M30 E37 F20 N60\nM1006 W\n;=====printer finish sound=========\n\n;M17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\nM400\nM18 X Y Z\n\n", - "time_lapse_gcode": ";===================== date: 20250206 =====================\n{if !spiral_mode && print_sequence != \"by object\"}\n; don't support timelapse gcode in spiral_mode and by object sequence for I3 structure printer\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\nG92 E0\nG1 Z{max_layer_z + 0.4}\nG1 X0 Y{first_layer_center_no_wipe_tower[1]} F18000 ; move to safe pos\nG1 X-48.2 F3000 ; move to safe pos\nM400\nM1004 S5 P1 ; external shutter\nM400 P300\nM971 S11 C11 O0\nG92 E0\nG1 X0 F18000\nM623\n\n; SKIPTYPE: head_wrap_detect\nM622.1 S1\nM1002 judge_flag g39_3rd_layer_detect_flag\nM622 J1\n ; enable nozzle clog detect at 3rd layer\n {if layer_num == 2}\n M400\n G90\n M83\n M204 S5000\n G0 Z2 F4000\n G0 X261 Y250 F20000\n M400 P200\n G39 S1\n G0 Z2 F4000\n {endif}\n\n\n M622.1 S1\n M1002 judge_flag g39_detection_flag\n M622 J1\n {if !in_head_wrap_detect_zone}\n M622.1 S0\n M1002 judge_flag g39_mass_exceed_flag\n M622 J1\n {if layer_num > 2}\n G392 S0\n M400\n G90\n M83\n M204 S5000\n G0 Z{max_layer_z + 0.4} F4000\n G39.3 S1\n G0 Z{max_layer_z + 0.4} F4000\n G392 S0\n {endif}\n M623\n {endif}\n M623\nM623\n; SKIPPABLE_END\n{endif}\n", - "change_filament_gcode": ";===== A1 20250822 =======================\nM1007 S0 ; turn off mass estimation\nG392 S0\nM620 S[next_extruder]A\nM204 S9000\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\nM106 P2 S0\n{if nozzle_temperature[previous_extruder] > 142 && next_extruder < 255}\nM104 S{nozzle_temperature[previous_extruder]}\n{endif}\n\nG1 X267 F18000\n\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F1200\n{else}\nM620.11 S0\n{endif}\nM400\n\nM620.1 E F{flush_volumetric_speeds[previous_extruder]/2.4053*60} T{flush_temperatures[previous_extruder]}\nM620.10 A0 F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nT[next_extruder]\nM620.1 E F{flush_volumetric_speeds[next_extruder]/2.4053*60} T{flush_temperatures[next_extruder]}\nM620.10 A1 F{flush_volumetric_speeds[next_extruder]/2.4053*60} L[flush_length] H[nozzle_diameter] T{flush_temperatures[next_extruder]}\n\nG1 Y128 F9000\n\n{if next_extruder < 255}\n\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\n\nM400\nG92 E0\nM628 S0\n\n{if flush_length_1 > 1}\n; FLUSH_START\n; always use highest temperature to flush\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S[flush_temperatures[next_extruder]]\nM106 P1 S60\n{if flush_length_1 > 23.7}\nG1 E23.7 F{flush_volumetric_speeds[previous_extruder]/2.4053*60} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\n{else}\nG1 E{flush_length_1} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\nM400\nM1002 set_filament_type:{filament_type[next_extruder]}\n{endif}\n\n{if flush_length_1 > 45 && flush_length_2 > 1}\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n{endif}\n\n{if flush_length_2 > 1}\nM106 P1 S60\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 45 && flush_length_3 > 1}\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n{endif}\n\n{if flush_length_3 > 1}\nM106 P1 S60\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 45 && flush_length_4 > 1}\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n{endif}\n\n{if flush_length_4 > 1}\nM106 P1 S60\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n\nM629\n\nM400\nM106 P1 S60\nM109 S{nozzle_temperature[next_extruder]}\nG1 E6 F{flush_volumetric_speeds[next_extruder]/2.4053*60} ;Compensate for filament spillage during waiting temperature\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nG1 Z{max_layer_z + 3.0} F3000\nM106 P1 S0\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\n\nM622.1 S0\nM9833 F{outer_wall_volumetric_speed/2.4} A0.3 ; cali dynamic extrusion compensation\nM1002 judge_flag filament_need_cali_flag\nM622 J1\n G92 E0\n G1 E-[new_retract_length_toolchange] F1800\n M400\n \n M106 P1 S178\n M400 S4\n G1 X-38.2 F18000\n G1 X-48.2 F3000\n G1 X-38.2 F18000 ;wipe and shake\n G1 X-48.2 F3000\n G1 X-38.2 F12000 ;wipe and shake\n G1 X-48.2 F3000\n M400\n M106 P1 S0 \nM623\n\nM621 S[next_extruder]A\nG392 S0\n\nM1007 S1\n" + "type": "machine", + "name": "Bambu Lab A1 0.4 nozzle", + "inherits": "fdm_bbl_3dp_001_common", + "from": "system", + "setting_id": "GM030", + "instantiation": "true", + "nozzle_diameter": [ + "0.4" + ], + "printer_model": "Bambu Lab A1", + "printer_variant": "0.4", + "auxiliary_fan": "0", + "bed_exclude_area": [], + "default_filament_profile": [ + "Bambu PLA Basic @BBL A1" + ], + "default_print_profile": "0.20mm Standard @BBL A1", + "enable_long_retraction_when_cut": "2", + "extruder_clearance_dist_to_rod": "56.5", + "extruder_clearance_height_to_lid": "256", + "extruder_clearance_height_to_rod": "25", + "extruder_clearance_max_radius": "73", + "grab_length": [ + "17.4" + ], + "head_wrap_detect_zone": [ + "226x224", + "256x224", + "256x256", + "226x256" + ], + "include": [ + "Bambu Lab A1 0.4 nozzle template machine_start_gcode", + "Bambu Lab A1 0.4 nozzle template machine_end_gcode", + "Bambu Lab A1 0.4 nozzle template time_lapse_gcode", + "Bambu Lab A1 0.4 nozzle template change_filament_gcode", + "Bambu Lab A1 0.4 nozzle template layer_change_gcode" + ], + "machine_load_filament_time": "25", + "machine_max_acceleration_extruding": [ + "12000", + "12000" + ], + "machine_max_acceleration_x": [ + "12000", + "12000" + ], + "machine_max_acceleration_y": [ + "12000", + "12000" + ], + "machine_max_acceleration_z": [ + "1500", + "1500" + ], + "machine_max_jerk_e": [ + "3", + "3" + ], + "machine_max_speed_z": [ + "30", + "30" + ], + "nozzle_height": "4.76", + "nozzle_volume": [ + "92" + ], + "printable_height": "256", + "printer_structure": "i3", + "retract_lift_below": [ + "255" + ], + "upward_compatible_machine": [ + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab H2C 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab A2L 0.4 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab A1 0.6 nozzle.json index e09f5e1353..dc2de73fab 100644 --- a/resources/profiles/BBL/machine/Bambu Lab A1 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab A1 0.6 nozzle.json @@ -1,29 +1,32 @@ { - "type": "machine", - "name": "Bambu Lab A1 0.6 nozzle", - "inherits": "Bambu Lab A1 0.4 nozzle", - "from": "system", - "setting_id": "GM031", - "instantiation": "true", - "nozzle_diameter": [ - "0.6" - ], - "printer_model": "Bambu Lab A1", - "printer_variant": "0.6", - "default_filament_profile": [ - "Bambu PLA Basic @BBL A1" - ], - "default_print_profile": "0.30mm Strength @BBL A1 0.6 nozzle", - "max_layer_height": [ - "0.42" - ], - "min_layer_height": [ - "0.12" - ], - "upward_compatible_machine": [ - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle" - ] + "type": "machine", + "name": "Bambu Lab A1 0.6 nozzle", + "inherits": "Bambu Lab A1 0.4 nozzle", + "from": "system", + "setting_id": "GM031", + "instantiation": "true", + "nozzle_diameter": [ + "0.6" + ], + "printer_model": "Bambu Lab A1", + "printer_variant": "0.6", + "default_filament_profile": [ + "Bambu PLA Basic @BBL A1" + ], + "default_print_profile": "0.30mm Strength @BBL A1 0.6 nozzle", + "max_layer_height": [ + "0.42" + ], + "min_layer_height": [ + "0.12" + ], + "upward_compatible_machine": [ + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab A2L 0.6 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab A1 0.8 nozzle.json index 6b75929717..2d6b04082c 100644 --- a/resources/profiles/BBL/machine/Bambu Lab A1 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab A1 0.8 nozzle.json @@ -1,29 +1,32 @@ { - "type": "machine", - "name": "Bambu Lab A1 0.8 nozzle", - "inherits": "Bambu Lab A1 0.4 nozzle", - "from": "system", - "setting_id": "GM032", - "instantiation": "true", - "nozzle_diameter": [ - "0.8" - ], - "printer_model": "Bambu Lab A1", - "printer_variant": "0.8", - "default_filament_profile": [ - "Bambu PLA Basic @BBL A1" - ], - "default_print_profile": "0.40mm Standard @BBL A1 0.8 nozzle", - "max_layer_height": [ - "0.56" - ], - "min_layer_height": [ - "0.16" - ], - "upward_compatible_machine": [ - "Bambu Lab H2D 0.8 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle", - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ] + "type": "machine", + "name": "Bambu Lab A1 0.8 nozzle", + "inherits": "Bambu Lab A1 0.4 nozzle", + "from": "system", + "setting_id": "GM032", + "instantiation": "true", + "nozzle_diameter": [ + "0.8" + ], + "printer_model": "Bambu Lab A1", + "printer_variant": "0.8", + "default_filament_profile": [ + "Bambu PLA Basic @BBL A1" + ], + "default_print_profile": "0.40mm Standard @BBL A1 0.8 nozzle", + "max_layer_height": [ + "0.56" + ], + "min_layer_height": [ + "0.16" + ], + "upward_compatible_machine": [ + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab H2C 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.2 nozzle.json index d43fbf3d67..bb3a2ba202 100644 --- a/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.2 nozzle.json @@ -1,38 +1,41 @@ { - "type": "machine", - "name": "Bambu Lab A1 mini 0.2 nozzle", - "inherits": "Bambu Lab A1 mini 0.4 nozzle", - "from": "system", - "setting_id": "GM021", - "instantiation": "true", - "nozzle_diameter": [ - "0.2" - ], - "printer_model": "Bambu Lab A1 mini", - "printer_variant": "0.2", - "default_filament_profile": [ - "Bambu PLA Basic @BBL A1M 0.2 nozzle" - ], - "default_print_profile": "0.10mm Standard @BBL A1M 0.2 nozzle", - "max_layer_height": [ - "0.14" - ], - "min_layer_height": [ - "0.04" - ], - "retraction_length": [ - "0.4" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab P1P 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle", - "Bambu Lab A1 0.2 nozzle", - "Bambu Lab H2D 0.2 nozzle", - "Bambu Lab H2D Pro 0.2 nozzle", - "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle" - ] + "type": "machine", + "name": "Bambu Lab A1 mini 0.2 nozzle", + "inherits": "Bambu Lab A1 mini 0.4 nozzle", + "from": "system", + "setting_id": "GM021", + "instantiation": "true", + "nozzle_diameter": [ + "0.2" + ], + "printer_model": "Bambu Lab A1 mini", + "printer_variant": "0.2", + "default_filament_profile": [ + "Bambu PLA Basic @BBL A1M 0.2 nozzle" + ], + "default_print_profile": "0.10mm Standard @BBL A1M 0.2 nozzle", + "max_layer_height": [ + "0.14" + ], + "min_layer_height": [ + "0.04" + ], + "retraction_length": [ + "0.4" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab P1P 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle", + "Bambu Lab A1 0.2 nozzle", + "Bambu Lab H2D 0.2 nozzle", + "Bambu Lab H2D Pro 0.2 nozzle", + "Bambu Lab H2S 0.2 nozzle", + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab H2C 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab A2L 0.2 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template change_filament_gcode.json b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template change_filament_gcode.json new file mode 100644 index 0000000000..dc1daa8e4e --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template change_filament_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab A1 mini 0.4 nozzle template change_filament_gcode", + "instantiation": "false", + "change_filament_gcode": ";===== A1mini 20251031 =====\nG392 S0\nM1007 S0\nM620 S[next_extruder]A\nM204 S9000\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\nM106 P2 S0\n{if old_filament_temp > 142 && next_extruder < 255}\nM104 S[old_filament_temp]\n{endif}\n\nG1 X180 F18000\n\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F1200\n{else}\nM620.11 S0\n{endif}\nM400\n\nM620.1 E F{flush_volumetric_speeds[previous_extruder]/2.4053*60} T{flush_temperatures[previous_extruder]}\nM620.10 A0 F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nT[next_extruder]\nM620.1 E F{flush_volumetric_speeds[next_extruder]/2.4053*60} T{flush_temperatures[next_extruder]}\nM620.10 A1 F{flush_volumetric_speeds[next_extruder]/2.4053*60} L[flush_length] H[nozzle_diameter] T{flush_temperatures[next_extruder]}\n\nG1 Y90 F9000\n\n{if next_extruder < 255}\n\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\n\nM400\nG92 E0\nM628 S0\n\n{if flush_length_1 > 1}\n; FLUSH_START\n; always use highest temperature to flush\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S[flush_temperatures[next_extruder]]\nM106 P1 S60\n{if flush_length_1 > 23.7}\nG1 E23.7 F{flush_volumetric_speeds[previous_extruder]/2.4053*60} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\n{else}\nG1 E{flush_length_1} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\nM400\nM1002 set_filament_type:{filament_type[next_extruder]}\n{endif}\n\n{if flush_length_1 > 45 && flush_length_2 > 1}\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n{endif}\n\n{if flush_length_2 > 1}\nM106 P1 S60\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 45 && flush_length_3 > 1}\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n{endif}\n\n{if flush_length_3 > 1}\nM106 P1 S60\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 45 && flush_length_4 > 1}\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n{endif}\n\n{if flush_length_4 > 1}\nM106 P1 S60\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n\nM629\n\nM400\nM106 P1 S60\nM109 S[new_filament_temp]\nG1 E5 F{flush_volumetric_speeds[next_extruder]/2.4053*60} ;Compensate for filament spillage during waiting temperature\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nG1 Z{max_layer_z + 3.0} F3000\nM106 P1 S0\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\n\nM622.1 S0\nM9833 F{outer_wall_volumetric_speed/2.4} A0.3 ; cali dynamic extrusion compensation\nM1002 judge_flag filament_need_cali_flag\nM622 J1\n G92 E0\n G1 E-[new_retract_length_toolchange] F1800\n M400\n \n M106 P1 S178\n M400 S7\n G1 X0 F18000\n G1 X-13.5 F3000\n G1 X0 F18000 ;wipe and shake\n G1 X-13.5 F3000\n G1 X0 F12000 ;wipe and shake\n G1 X-13.5 F3000\n G1 X0 F12000 ;wipe and shake\n M400\n M106 P1 S0 \nM623\n\nM621 S[next_extruder]A\nG392 S0\n\nM1007 S1\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template layer_change_gcode.json b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template layer_change_gcode.json new file mode 100644 index 0000000000..5741b3c5d4 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template layer_change_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab A1 mini 0.4 nozzle template layer_change_gcode", + "instantiation": "false", + "layer_change_gcode": "; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template machine_end_gcode.json b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template machine_end_gcode.json new file mode 100644 index 0000000000..9b58e6aa50 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template machine_end_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab A1 mini 0.4 nozzle template machine_end_gcode", + "instantiation": "false", + "machine_end_gcode": ";===== date: 20260513 =====================\n;turn off nozzle clog detect\nG392 S0\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG90\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\nG1 X0 Y{first_layer_center_no_wipe_tower[1]} F18000 ; move to safe pos\nG1 X-13.0 F3000 ; move to safe pos\n{if !spiral_mode && print_sequence != \"by object\"}\nM1002 judge_flag timelapse_record_flag\nM622 J1\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM991 S0 P-1 ;end timelapse at safe pos\nM623\n{endif}\n\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\n;G1 X27 F15000 ; wipe\n\n; pull back filament to AMS\nM620 S255\nG1 X181 F12000\nT255\nG1 X0 F18000\nG1 X-13.0 F3000\nG1 X0 F18000 ; wipe\nM621 S255\n\nM104 S0 ; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 180}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z180 F600\n G1 Z180\n{endif}\nM400 P100\nM17 R ; restore z current\n\nG90\nG1 X-13 Y180 F3600\n\nG91\nG1 Z-1 F600\nG90\nM83\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A0 B20 L100 C37 D20 M100 E42 F20 N100\nM1006 A0 B10 L100 C44 D10 M100 E44 F10 N100\nM1006 A0 B10 L100 C46 D10 M100 E46 F10 N100\nM1006 A44 B20 L100 C39 D20 M100 E48 F20 N100\nM1006 A0 B10 L100 C44 D10 M100 E44 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B10 L100 C39 D10 M100 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B10 L100 C44 D10 M100 E44 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B10 L100 C39 D10 M100 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E48 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A44 B20 L100 C41 D20 M100 E49 F20 N100\nM1006 A0 B20 L100 C0 D20 M100 E0 F20 N100\nM1006 A0 B20 L100 C37 D20 M100 E37 F20 N100\nM1006 W\n;=====printer finish sound=========\nM400 S1\nM18 X Y Z\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..943565b7cb --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab A1 mini 0.4 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: A1 mini =========================\n;===== date: 20260513 ==================\n\n;===== start to heat heatbead&hotend==========\nM1002 gcode_claim_action : 2\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\nM104 S170\nM140 S[bed_temperature_initial_layer_single]\nG392 S0 ;turn off clog detect\nM9833.2\n;=====start printer sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B0 L100 C37 D10 M100 E37 F10 N100\nM1006 A0 B0 L100 C41 D10 M100 E41 F10 N100\nM1006 A0 B0 L100 C44 D10 M100 E44 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A43 B10 L100 C39 D10 M100 E46 F10 N100\nM1006 A0 B0 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B0 L100 C39 D10 M100 E43 F10 N100\nM1006 A0 B0 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B0 L100 C41 D10 M100 E41 F10 N100\nM1006 A0 B0 L100 C44 D10 M100 E44 F10 N100\nM1006 A0 B0 L100 C49 D10 M100 E49 F10 N100\nM1006 A0 B0 L100 C0 D10 M100 E0 F10 N100\nM1006 A44 B10 L100 C39 D10 M100 E48 F10 N100\nM1006 A0 B0 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B0 L100 C39 D10 M100 E44 F10 N100\nM1006 A0 B0 L100 C0 D10 M100 E0 F10 N100\nM1006 A43 B10 L100 C39 D10 M100 E46 F10 N100\nM1006 W\nM18\n;=====avoid end stop =================\nG91\nG380 S2 Z30 F1200\nG380 S3 Z-20 F1200\nG1 Z5 F1200\nG90\n\n;===== reset machine status =================\nM204 S6000\n\nM630 S0 P0\nG91\nM17 Z0.3 ; lower the z-motor current\n\nG90\nM17 X0.7 Y0.9 Z0.5 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM83\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\n;====== cog noise reduction=================\nM982.2 S1 ; turn on cog noise reduction\n\n;===== prepare print temperature and material ==========\nM400\nM18\nM109 S100 H170\nM104 S170\nM400\nM17\nM400\nG28 X\n\nM211 X0 Y0 Z0 ;turn off soft endstop ; turn off soft endstop to prevent protential logic problem\n\nM975 S1 ; turn on\n\nG1 X0.0 F30000\nG1 X-13.5 F3000\n\nM620 M ;enable remap\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n G392 S0 ;turn on clog detect\n M1002 gcode_claim_action : 4\n M400\n M1002 set_filament_type:UNKNOWN\n M109 S[nozzle_temperature_initial_layer]\n{if (filament_type[initial_no_support_extruder] == \"PLA\") && (nozzle_diameter != 0.2)}\n M104 S220\n{else}\n M104 S250\n{endif}\n M400\n T[initial_no_support_extruder]\n G1 X-13.5 F3000\n M400\n{if (filament_type[initial_no_support_extruder] == \"PLA\") && (nozzle_diameter != 0.2)}\n M620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T220\n M109 S220 ;set nozzle to common flush temp\n{else}\n M620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n M109 S250 ;set nozzle to common flush temp\n{endif}\n M106 P1 S0\n G92 E0\n G1 E50 F200\n M400\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n{if (filament_type[initial_no_support_extruder] == \"PLA\") && (nozzle_diameter != 0.2)}\n M104 S220\n{else}\n M104 S{flush_temperatures[initial_no_support_extruder]}\n{endif}\n G92 E0\n G1 E50 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60}\n M400\n M106 P1 S178\n G92 E0\n G1 E5 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60}\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-40}\n G92 E0\n G1 E-0.5 F300\n\n G1 X0 F30000\n G1 X-13.5 F3000\n G1 X0 F30000 ;wipe and shake\n G1 X-13.5 F3000\n G1 X0 F12000 ;wipe and shake\n G1 X0 F30000\n G1 X-13.5 F3000\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-40}\n G392 S0 ;turn off clog detect\nM621 S[initial_no_support_extruder]A\n\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== mech mode fast check============================\nM1002 gcode_claim_action : 3\nG0 X25 Y175 F20000 ; find a soft place to home\n;M104 S0\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nM104 S170\n\n; build plate detect\nM1002 judge_flag build_plate_detect_flag\nM622 S1\n G39.4\n M400\nM623\n\nG1 Z5 F3000\nG1 X90 Y-1 F30000\nM400 P200\nM970.3 Q1 A7 K0 O2\nM974 Q1 S2 P0\n\nG1 X90 Y0 Z5 F30000\nM400 P200\nM970 Q0 A10 B50 C90 H15 K0 M20 O3\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X-1 Y10\nG28 X ; re-home XY\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\n\nM104 S170 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\nM211 S; push soft endstop status\nM211 X0 Y0 Z0 ;turn off Z axis endstop\n\nM83\nG1 E-1 F500\nG90\nM83\n\nM109 S170\nM104 S140\nG0 X90 Y-4 F30000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X91 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X92 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X93 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X94 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X95 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X96 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X97 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X98 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X99 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X99 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X99 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X99 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X99 F10000\nG380 S3 Z-5 F1200\n\nG1 Z5 F30000\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\nG1 X25 Y175 F30000.1 ;Brush material\nG1 Z0.2 F30000.1\nG1 Y185\nG91\nG1 X-30 F30000\nG1 Y-2\nG1 X27\nG1 Y1.5\nG1 X-28\nG1 Y-2\nG1 X30\nG1 Y1.5\nG1 X-30\nG90\nM83\n\nG1 Z5 F3000\nG0 X50 Y175 F20000 ; find a soft place to home\nG28 Z P0 T300; home z with low precision, permit 300deg temperature\nG29.2 S0 ; turn off ABL\n\nG0 X85 Y185 F10000 ;move to exposed steel surface and stop the nozzle\nG0 Z-1.01 F10000\nG91\n\nG2 I1 J0 X2 Y0 F2000.1\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\n\nG90\nG1 Z5 F30000\nG1 X25 Y175 F30000.1 ;Brush material\nG1 Z0.2 F30000.1\nG1 Y185\nG91\nG1 X-30 F30000\nG1 Y-2\nG1 X27\nG1 Y1.5\nG1 X-28\nG1 Y-2\nG1 X30\nG1 Y1.5\nG1 X-30\nG90\nM83\n\nG1 Z5\nG0 X55 Y175 F20000 ; find a soft place to home\nG28 Z P0 T300; home z with low precision, permit 300deg temperature\nG29.2 S0 ; turn off ABL\n\nG1 Z10\nG1 X85 Y185\nG1 Z-1.01\nG1 X95\nG1 X90\n\nM211 R; pop softend status\n\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== wait heatbed ====================\nM1002 gcode_claim_action:54\nM104 S0\nM190 S[bed_temperature_initial_layer_single];set bed temp\nM109 S140\n\nG1 Z5 F3000\nG29.2 S1\nG1 X10 Y10 F20000\n\n;===== bed leveling ==================================\n;M1002 set_flag g29_before_print_flag=1\nM1002 judge_flag g29_before_print_flag\nM622 J1\n M1002 gcode_claim_action : 1\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28 T145\n\nM623\n\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\n\nG1 X-13.5 Y0 Z10 F10000\nG1 E1.2 F500\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S{nozzle_temperature[initial_extruder]}\nM400\n\nM412 S1 ; ===turn on filament runout detection===\nM400 P10\n\nG392 S0 ;turn on clog detect\n\nM620.3 W1; === turn on filament tangle detection===\nM400 S2\n\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n;M1002 set_flag extrude_cali_flag=1\nM1002 judge_flag extrude_cali_flag\nM622 J1\n M1002 gcode_claim_action : 8\n \n M400\n M900 K0.0 L1000.0 M1.0\n G90\n M83\n G0 X68 Y-4 F30000\n G0 Z0.3 F18000 ;Move to start position\n M400\n G0 X88 E10 F{outer_wall_volumetric_speed/(24/20) * 60}\n G0 X93 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X98 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X103 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X108 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X113 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 Y0 Z0 F20000\n M400\n \n G1 X-13.5 Y0 Z10 F10000\n M400\n \n G1 E10 F{outer_wall_volumetric_speed/2.4*60}\n M983 F{outer_wall_volumetric_speed/2.4} A0.3 H[nozzle_diameter]; cali dynamic extrusion compensation\n M106 P1 S178\n M400 S7\n G1 X0 F18000\n G1 X-13.5 F3000\n G1 X0 F18000 ;wipe and shake\n G1 X-13.5 F3000\n G1 X0 F12000 ;wipe and shake\n G1 X-13.5 F3000\n M400\n M106 P1 S0\n\n M1002 judge_last_extrude_cali_success\n M622 J0\n M983 F{outer_wall_volumetric_speed/2.4} A0.3 H[nozzle_diameter]; cali dynamic extrusion compensation\n M106 P1 S178\n M400 S7\n G1 X0 F18000\n G1 X-13.5 F3000\n G1 X0 F18000 ;wipe and shake\n G1 X-13.5 F3000\n G1 X0 F12000 ;wipe and shake\n M400\n M106 P1 S0\n M623\n \n G1 X-13.5 F3000\n M400\n M984 A0.1 E1 S1 F{outer_wall_volumetric_speed/2.4} H[nozzle_diameter]\n M106 P1 S178\n M400 S7\n G1 X0 F18000\n G1 X-13.5 F3000\n G1 X0 F18000 ;wipe and shake\n G1 X-13.5 F3000\n G1 X0 F12000 ;wipe and shake\n G1 X-13.5 F3000\n M400\n M106 P1 S0\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n;===== extrude cali test ===============================\nM104 S{nozzle_temperature_initial_layer[initial_extruder]}\nG90\nM83\nG0 X68 Y-2.5 F30000\nG0 Z0.3 F18000 ;Move to start position\nG0 X88 E10 F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X93 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X98 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 X103 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X108 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 X113 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X115 Z0 F20000\nG0 Z5\nM400\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\n\nM400 ; wait all motion done before implement the emprical L parameters\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.02} ; for Textured PEI Plate\n{endif}\n\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n\nM211 X0 Y0 Z0 ;turn off soft endstop\nM1007 S1\n\n\n\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template time_lapse_gcode.json b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template time_lapse_gcode.json new file mode 100644 index 0000000000..03bd284f25 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle template time_lapse_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab A1 mini 0.4 nozzle template time_lapse_gcode", + "instantiation": "false", + "time_lapse_gcode": ";===================== date: 20250206 =====================\n{if !spiral_mode && print_sequence != \"by object\"}\n; don't support timelapse gcode in spiral_mode and by object sequence for I3 structure printer\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\nG92 E0\nG1 Z{max_layer_z + 0.4}\nG1 X0 Y{first_layer_center_no_wipe_tower[1]} F18000 ; move to safe pos\nG1 X-13.0 F3000 ; move to safe pos\nM400\nM1004 S5 P1 ; external shutter\nM400 P300\nM971 S11 C11 O0\nG92 E0\nG1 X0 F18000\nM623\n\n; SKIPTYPE: head_wrap_detect\nM622.1 S1\nM1002 judge_flag g39_3rd_layer_detect_flag\nM622 J1\n ; enable nozzle clog detect at 3rd layer\n {if layer_num == 2}\n M400\n G90\n M83\n M204 S5000\n G0 Z2 F4000\n G0 X187 Y178 F20000\n G39 S1 X187 Y178\n G0 Z2 F4000\n {endif}\n\n\n M622.1 S1\n M1002 judge_flag g39_detection_flag\n M622 J1\n {if !in_head_wrap_detect_zone}\n M622.1 S0\n M1002 judge_flag g39_mass_exceed_flag\n M622 J1\n {if layer_num > 2}\n G392 S0\n M400\n G90\n M83\n M204 S5000\n G0 Z{max_layer_z + 0.4} F4000\n G39.3 S1\n G0 Z{max_layer_z + 0.4} F4000\n G392 S0\n {endif}\n M623\n {endif}\n M623\nM623\n; SKIPPABLE_END\n{endif}\n\n\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle.json index 0cc3b0b8fb..c4907fd48e 100644 --- a/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.4 nozzle.json @@ -1,87 +1,89 @@ { - "type": "machine", - "name": "Bambu Lab A1 mini 0.4 nozzle", - "inherits": "fdm_bbl_3dp_001_common", - "from": "system", - "setting_id": "GM020", - "instantiation": "true", - "nozzle_diameter": [ - "0.4" - ], - "printer_model": "Bambu Lab A1 mini", - "printer_variant": "0.4", - "auxiliary_fan": "0", - "bed_exclude_area": [], - "best_object_pos": "0.7x0.5", - "default_filament_profile": [ - "Bambu PLA Basic @BBL A1M" - ], - "default_print_profile": "0.20mm Standard @BBL A1M", - "enable_long_retraction_when_cut": "2", - "extruder_clearance_dist_to_rod": "56.5", - "extruder_clearance_height_to_lid": "180", - "extruder_clearance_height_to_rod": "25", - "extruder_clearance_max_radius": "73", - "grab_length": [ - "17.4" - ], - "head_wrap_detect_zone": [ - "156x152", - "180x152", - "180x180", - "156x180" - ], - "machine_load_filament_time": "28", - "machine_max_acceleration_z": [ - "1500", - "1500" - ], - "machine_max_jerk_e": [ - "3", - "3" - ], - "machine_max_jerk_z": [ - "5", - "5" - ], - "machine_max_speed_z": [ - "30", - "30" - ], - "machine_unload_filament_time": "34", - "nozzle_height": "4.76", - "nozzle_type": [ - "stainless_steel" - ], - "nozzle_volume": [ - "92" - ], - "printable_area": [ - "0x0", - "180x0", - "180x180", - "0x180" - ], - "printable_height": "180", - "printer_structure": "i3", - "retract_lift_below": [ - "179" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle" - ], - "machine_start_gcode": ";===== machine: A1 mini =========================\n;===== date: 20250822 ==================\n\n;===== start to heat heatbead&hotend==========\nM1002 gcode_claim_action : 2\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\nM104 S170\nM140 S[bed_temperature_initial_layer_single]\nG392 S0 ;turn off clog detect\nM9833.2\n;=====start printer sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B0 L100 C37 D10 M100 E37 F10 N100\nM1006 A0 B0 L100 C41 D10 M100 E41 F10 N100\nM1006 A0 B0 L100 C44 D10 M100 E44 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A43 B10 L100 C39 D10 M100 E46 F10 N100\nM1006 A0 B0 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B0 L100 C39 D10 M100 E43 F10 N100\nM1006 A0 B0 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B0 L100 C41 D10 M100 E41 F10 N100\nM1006 A0 B0 L100 C44 D10 M100 E44 F10 N100\nM1006 A0 B0 L100 C49 D10 M100 E49 F10 N100\nM1006 A0 B0 L100 C0 D10 M100 E0 F10 N100\nM1006 A44 B10 L100 C39 D10 M100 E48 F10 N100\nM1006 A0 B0 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B0 L100 C39 D10 M100 E44 F10 N100\nM1006 A0 B0 L100 C0 D10 M100 E0 F10 N100\nM1006 A43 B10 L100 C39 D10 M100 E46 F10 N100\nM1006 W\nM18\n;=====avoid end stop =================\nG91\nG380 S2 Z30 F1200\nG380 S3 Z-20 F1200\nG1 Z5 F1200\nG90\n\n;===== reset machine status =================\nM204 S6000\n\nM630 S0 P0\nG91\nM17 Z0.3 ; lower the z-motor current\n\nG90\nM17 X0.7 Y0.9 Z0.5 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM83\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\n;====== cog noise reduction=================\nM982.2 S1 ; turn on cog noise reduction\n\n;===== prepare print temperature and material ==========\nM400\nM18\nM109 S100 H170\nM104 S170\nM400\nM17\nM400\nG28 X\n\nM211 X0 Y0 Z0 ;turn off soft endstop ; turn off soft endstop to prevent protential logic problem\n\nM975 S1 ; turn on\n\nG1 X0.0 F30000\nG1 X-13.5 F3000\n\nM620 M ;enable remap\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n G392 S0 ;turn on clog detect\n M1002 gcode_claim_action : 4\n M400\n M1002 set_filament_type:UNKNOWN\n M109 S[nozzle_temperature_initial_layer]\n M104 S250\n M400\n T[initial_no_support_extruder]\n G1 X-13.5 F3000\n M400\n M620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n M109 S250 ;set nozzle to common flush temp\n M106 P1 S0\n G92 E0\n G1 E50 F200\n M400\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M104 S{flush_temperatures[initial_no_support_extruder]}\n G92 E0\n G1 E50 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60}\n M400\n M106 P1 S178\n G92 E0\n G1 E5 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60}\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-40}\n G92 E0\n G1 E-0.5 F300\n\n G1 X0 F30000\n G1 X-13.5 F3000\n G1 X0 F30000 ;wipe and shake\n G1 X-13.5 F3000\n G1 X0 F12000 ;wipe and shake\n G1 X0 F30000\n G1 X-13.5 F3000\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-40}\n G392 S0 ;turn off clog detect\nM621 S[initial_no_support_extruder]A\n\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== mech mode fast check============================\nM1002 gcode_claim_action : 3\nG0 X25 Y175 F20000 ; find a soft place to home\n;M104 S0\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nM104 S170\n\n; build plate detect\nM1002 judge_flag build_plate_detect_flag\nM622 S1\n G39.4\n M400\nM623\n\nG1 Z5 F3000\nG1 X90 Y-1 F30000\nM400 P200\nM970.3 Q1 A7 K0 O2\nM974 Q1 S2 P0\n\nG1 X90 Y0 Z5 F30000\nM400 P200\nM970 Q0 A10 B50 C90 H15 K0 M20 O3\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X-1 Y10\nG28 X ; re-home XY\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\n\nM104 S170 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\nM211 S; push soft endstop status\nM211 X0 Y0 Z0 ;turn off Z axis endstop\n\nM83\nG1 E-1 F500\nG90\nM83\n\nM109 S170\nM104 S140\nG0 X90 Y-4 F30000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X91 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X92 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X93 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X94 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X95 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X96 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X97 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X98 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X99 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X99 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X99 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X99 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X99 F10000\nG380 S3 Z-5 F1200\n\nG1 Z5 F30000\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\nG1 X25 Y175 F30000.1 ;Brush material\nG1 Z0.2 F30000.1\nG1 Y185\nG91\nG1 X-30 F30000\nG1 Y-2\nG1 X27\nG1 Y1.5\nG1 X-28\nG1 Y-2\nG1 X30\nG1 Y1.5\nG1 X-30\nG90\nM83\n\nG1 Z5 F3000\nG0 X50 Y175 F20000 ; find a soft place to home\nG28 Z P0 T300; home z with low precision, permit 300deg temperature\nG29.2 S0 ; turn off ABL\n\nG0 X85 Y185 F10000 ;move to exposed steel surface and stop the nozzle\nG0 Z-1.01 F10000\nG91\n\nG2 I1 J0 X2 Y0 F2000.1\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\n\nG90\nG1 Z5 F30000\nG1 X25 Y175 F30000.1 ;Brush material\nG1 Z0.2 F30000.1\nG1 Y185\nG91\nG1 X-30 F30000\nG1 Y-2\nG1 X27\nG1 Y1.5\nG1 X-28\nG1 Y-2\nG1 X30\nG1 Y1.5\nG1 X-30\nG90\nM83\n\nG1 Z5\nG0 X55 Y175 F20000 ; find a soft place to home\nG28 Z P0 T300; home z with low precision, permit 300deg temperature\nG29.2 S0 ; turn off ABL\n\nG1 Z10\nG1 X85 Y185\nG1 Z-1.01\nG1 X95\nG1 X90\n\nM211 R; pop softend status\n\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== wait heatbed ====================\nM1002 gcode_claim_action : 2\nM104 S0\nM190 S[bed_temperature_initial_layer_single];set bed temp\nM109 S140\n\nG1 Z5 F3000\nG29.2 S1\nG1 X10 Y10 F20000\n\n;===== bed leveling ==================================\n;M1002 set_flag g29_before_print_flag=1\nM1002 judge_flag g29_before_print_flag\nM622 J1\n M1002 gcode_claim_action : 1\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28 T145\n\nM623\n\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\n\nG1 X-13.5 Y0 Z10 F10000\nG1 E1.2 F500\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S{nozzle_temperature[initial_extruder]}\nM400\n\nM412 S1 ; ===turn on filament runout detection===\nM400 P10\n\nG392 S0 ;turn on clog detect\n\nM620.3 W1; === turn on filament tangle detection===\nM400 S2\n\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n;M1002 set_flag extrude_cali_flag=1\nM1002 judge_flag extrude_cali_flag\nM622 J1\n M1002 gcode_claim_action : 8\n \n M400\n M900 K0.0 L1000.0 M1.0\n G90\n M83\n G0 X68 Y-4 F30000\n G0 Z0.3 F18000 ;Move to start position\n M400\n G0 X88 E10 F{outer_wall_volumetric_speed/(24/20) * 60}\n G0 X93 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X98 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X103 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 X108 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X113 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n G0 Y0 Z0 F20000\n M400\n \n G1 X-13.5 Y0 Z10 F10000\n M400\n \n G1 E10 F{outer_wall_volumetric_speed/2.4*60}\n M983 F{outer_wall_volumetric_speed/2.4} A0.3 H[nozzle_diameter]; cali dynamic extrusion compensation\n M106 P1 S178\n M400 S7\n G1 X0 F18000\n G1 X-13.5 F3000\n G1 X0 F18000 ;wipe and shake\n G1 X-13.5 F3000\n G1 X0 F12000 ;wipe and shake\n G1 X-13.5 F3000\n M400\n M106 P1 S0\n\n M1002 judge_last_extrude_cali_success\n M622 J0\n M983 F{outer_wall_volumetric_speed/2.4} A0.3 H[nozzle_diameter]; cali dynamic extrusion compensation\n M106 P1 S178\n M400 S7\n G1 X0 F18000\n G1 X-13.5 F3000\n G1 X0 F18000 ;wipe and shake\n G1 X-13.5 F3000\n G1 X0 F12000 ;wipe and shake\n M400\n M106 P1 S0\n M623\n \n G1 X-13.5 F3000\n M400\n M984 A0.1 E1 S1 F{outer_wall_volumetric_speed/2.4} H[nozzle_diameter]\n M106 P1 S178\n M400 S7\n G1 X0 F18000\n G1 X-13.5 F3000\n G1 X0 F18000 ;wipe and shake\n G1 X-13.5 F3000\n G1 X0 F12000 ;wipe and shake\n G1 X-13.5 F3000\n M400\n M106 P1 S0\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n;===== extrude cali test ===============================\nM104 S{nozzle_temperature_initial_layer[initial_extruder]}\nG90\nM83\nG0 X68 Y-2.5 F30000\nG0 Z0.3 F18000 ;Move to start position\nG0 X88 E10 F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X93 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X98 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 X103 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X108 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 X113 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X115 Z0 F20000\nG0 Z5\nM400\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\n\nM400 ; wait all motion done before implement the emprical L parameters\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.02} ; for Textured PEI Plate\n{endif}\n\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n\nM211 X0 Y0 Z0 ;turn off soft endstop\nM1007 S1\n\n\n\n", - "machine_end_gcode": ";===== date: 20231229 =====================\n;turn off nozzle clog detect\nG392 S0\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X0 Y{first_layer_center_no_wipe_tower[1]} F18000 ; move to safe pos\nG1 X-13.0 F3000 ; move to safe pos\n{if !spiral_mode && print_sequence != \"by object\"}\nM1002 judge_flag timelapse_record_flag\nM622 J1\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM991 S0 P-1 ;end timelapse at safe pos\nM623\n{endif}\n\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\n;G1 X27 F15000 ; wipe\n\n; pull back filament to AMS\nM620 S255\nG1 X181 F12000\nT255\nG1 X0 F18000\nG1 X-13.0 F3000\nG1 X0 F18000 ; wipe\nM621 S255\n\nM104 S0 ; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 180}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z180 F600\n G1 Z180\n{endif}\nM400 P100\nM17 R ; restore z current\n\nG90\nG1 X-13 Y180 F3600\n\nG91\nG1 Z-1 F600\nG90\nM83\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A0 B20 L100 C37 D20 M100 E42 F20 N100\nM1006 A0 B10 L100 C44 D10 M100 E44 F10 N100\nM1006 A0 B10 L100 C46 D10 M100 E46 F10 N100\nM1006 A44 B20 L100 C39 D20 M100 E48 F20 N100\nM1006 A0 B10 L100 C44 D10 M100 E44 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B10 L100 C39 D10 M100 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B10 L100 C44 D10 M100 E44 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B10 L100 C39 D10 M100 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E48 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A44 B20 L100 C41 D20 M100 E49 F20 N100\nM1006 A0 B20 L100 C0 D20 M100 E0 F20 N100\nM1006 A0 B20 L100 C37 D20 M100 E37 F20 N100\nM1006 W\n;=====printer finish sound=========\nM400 S1\nM18 X Y Z\n", - "layer_change_gcode": "; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change\n", - "time_lapse_gcode": ";===================== date: 20250206 =====================\n{if !spiral_mode && print_sequence != \"by object\"}\n; don't support timelapse gcode in spiral_mode and by object sequence for I3 structure printer\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\nG92 E0\nG1 Z{max_layer_z + 0.4}\nG1 X0 Y{first_layer_center_no_wipe_tower[1]} F18000 ; move to safe pos\nG1 X-13.0 F3000 ; move to safe pos\nM400\nM1004 S5 P1 ; external shutter\nM400 P300\nM971 S11 C11 O0\nG92 E0\nG1 X0 F18000\nM623\n\n; SKIPTYPE: head_wrap_detect\nM622.1 S1\nM1002 judge_flag g39_3rd_layer_detect_flag\nM622 J1\n ; enable nozzle clog detect at 3rd layer\n {if layer_num == 2}\n M400\n G90\n M83\n M204 S5000\n G0 Z2 F4000\n G0 X187 Y178 F20000\n G39 S1 X187 Y178\n G0 Z2 F4000\n {endif}\n\n\n M622.1 S1\n M1002 judge_flag g39_detection_flag\n M622 J1\n {if !in_head_wrap_detect_zone}\n M622.1 S0\n M1002 judge_flag g39_mass_exceed_flag\n M622 J1\n {if layer_num > 2}\n G392 S0\n M400\n G90\n M83\n M204 S5000\n G0 Z{max_layer_z + 0.4} F4000\n G39.3 S1\n G0 Z{max_layer_z + 0.4} F4000\n G392 S0\n {endif}\n M623\n {endif}\n M623\nM623\n; SKIPPABLE_END\n{endif}\n\n\n", - "change_filament_gcode": ";===== A1mini 20250822 =====\nG392 S0\nM1007 S0\nM620 S[next_extruder]A\nM204 S9000\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\nM106 P2 S0\n{if nozzle_temperature[previous_extruder] > 142 && next_extruder < 255}\nM104 S{nozzle_temperature[previous_extruder]}\n{endif}\n\nG1 X180 F18000\n\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F1200\n{else}\nM620.11 S0\n{endif}\nM400\n\nM620.1 E F{flush_volumetric_speeds[previous_extruder]/2.4053*60} T{flush_temperatures[previous_extruder]}\nM620.10 A0 F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nT[next_extruder]\nM620.1 E F{flush_volumetric_speeds[next_extruder]/2.4053*60} T{flush_temperatures[next_extruder]}\nM620.10 A1 F{flush_volumetric_speeds[next_extruder]/2.4053*60} L[flush_length] H[nozzle_diameter] T{flush_temperatures[next_extruder]}\n\nG1 Y90 F9000\n\n{if next_extruder < 255}\n\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\n\nM400\nG92 E0\nM628 S0\n\n{if flush_length_1 > 1}\n; FLUSH_START\n; always use highest temperature to flush\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S[flush_temperatures[next_extruder]]\nM106 P1 S60\n{if flush_length_1 > 23.7}\nG1 E23.7 F{flush_volumetric_speeds[previous_extruder]/2.4053*60} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\n{else}\nG1 E{flush_length_1} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\nM400\nM1002 set_filament_type:{filament_type[next_extruder]}\n{endif}\n\n{if flush_length_1 > 45 && flush_length_2 > 1}\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n{endif}\n\n{if flush_length_2 > 1}\nM106 P1 S60\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 45 && flush_length_3 > 1}\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n{endif}\n\n{if flush_length_3 > 1}\nM106 P1 S60\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 45 && flush_length_4 > 1}\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n{endif}\n\n{if flush_length_4 > 1}\nM106 P1 S60\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n\nM629\n\nM400\nM106 P1 S60\nM109 S{nozzle_temperature[next_extruder]}\nG1 E5 F{flush_volumetric_speeds[next_extruder]/2.4053*60} ;Compensate for filament spillage during waiting temperature\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nG1 Z{max_layer_z + 3.0} F3000\nM106 P1 S0\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\n\nM622.1 S0\nM9833 F{outer_wall_volumetric_speed/2.4} A0.3 ; cali dynamic extrusion compensation\nM1002 judge_flag filament_need_cali_flag\nM622 J1\n G92 E0\n G1 E-[new_retract_length_toolchange] F1800\n M400\n \n M106 P1 S178\n M400 S7\n G1 X0 F18000\n G1 X-13.5 F3000\n G1 X0 F18000 ;wipe and shake\n G1 X-13.5 F3000\n G1 X0 F12000 ;wipe and shake\n G1 X-13.5 F3000\n G1 X0 F12000 ;wipe and shake\n M400\n M106 P1 S0 \nM623\n\nM621 S[next_extruder]A\nG392 S0\n\nM1007 S1\n" + "type": "machine", + "name": "Bambu Lab A1 mini 0.4 nozzle", + "inherits": "fdm_bbl_3dp_001_common", + "from": "system", + "setting_id": "GM020", + "instantiation": "true", + "nozzle_diameter": [ + "0.4" + ], + "printer_model": "Bambu Lab A1 mini", + "printer_variant": "0.4", + "auxiliary_fan": "0", + "bed_exclude_area": [], + "best_object_pos": "0.7x0.5", + "default_filament_profile": [ + "Bambu PLA Basic @BBL A1M" + ], + "default_print_profile": "0.20mm Standard @BBL A1M", + "enable_long_retraction_when_cut": "2", + "extruder_clearance_dist_to_rod": "56.5", + "extruder_clearance_height_to_lid": "180", + "extruder_clearance_height_to_rod": "25", + "extruder_clearance_max_radius": "73", + "grab_length": [ + "17.4" + ], + "head_wrap_detect_zone": [ + "156x152", + "180x152", + "180x180", + "156x180" + ], + "include": [ + "Bambu Lab A1 mini 0.4 nozzle template machine_start_gcode", + "Bambu Lab A1 mini 0.4 nozzle template machine_end_gcode", + "Bambu Lab A1 mini 0.4 nozzle template layer_change_gcode", + "Bambu Lab A1 mini 0.4 nozzle template time_lapse_gcode", + "Bambu Lab A1 mini 0.4 nozzle template change_filament_gcode" + ], + "machine_load_filament_time": "28", + "machine_max_acceleration_z": [ + "1500", + "1500" + ], + "machine_max_jerk_e": [ + "3", + "3" + ], + "machine_max_jerk_z": [ + "5", + "5" + ], + "machine_max_speed_z": [ + "30", + "30" + ], + "machine_unload_filament_time": "34", + "nozzle_height": "4.76", + "nozzle_volume": [ + "92" + ], + "printable_area": [ + "0x0", + "180x0", + "180x180", + "0x180" + ], + "printable_height": "180", + "printer_structure": "i3", + "retract_lift_below": [ + "179" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab H2C 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab A2L 0.4 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.6 nozzle.json index 53439cbb62..0bc539c678 100644 --- a/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.6 nozzle.json @@ -1,44 +1,44 @@ { - "type": "machine", - "name": "Bambu Lab A1 mini 0.6 nozzle", - "inherits": "Bambu Lab A1 mini 0.4 nozzle", - "from": "system", - "setting_id": "GM022", - "instantiation": "true", - "nozzle_diameter": [ - "0.6" - ], - "printer_model": "Bambu Lab A1 mini", - "printer_variant": "0.6", - "default_filament_profile": [ - "Bambu PLA Basic @BBL A1M" - ], - "default_print_profile": "0.30mm Standard @BBL A1M 0.6 nozzle", - "max_layer_height": [ - "0.42" - ], - "min_layer_height": [ - "0.12" - ], - "nozzle_type": [ - "hardened_steel" - ], - "retraction_length": [ - "1.4" - ], - "retraction_minimum_travel": [ - "3" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle" - ] + "type": "machine", + "name": "Bambu Lab A1 mini 0.6 nozzle", + "inherits": "Bambu Lab A1 mini 0.4 nozzle", + "from": "system", + "setting_id": "GM022", + "instantiation": "true", + "nozzle_diameter": [ + "0.6" + ], + "printer_model": "Bambu Lab A1 mini", + "printer_variant": "0.6", + "default_filament_profile": [ + "Bambu PLA Basic @BBL A1M" + ], + "default_print_profile": "0.30mm Standard @BBL A1M 0.6 nozzle", + "max_layer_height": [ + "0.42" + ], + "min_layer_height": [ + "0.12" + ], + "retraction_length": [ + "1.4" + ], + "retraction_minimum_travel": [ + "3" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab A2L 0.6 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.8 nozzle.json index c347db6859..b0ae2d100d 100644 --- a/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab A1 mini 0.8 nozzle.json @@ -1,44 +1,44 @@ { - "type": "machine", - "name": "Bambu Lab A1 mini 0.8 nozzle", - "inherits": "Bambu Lab A1 mini 0.4 nozzle", - "from": "system", - "setting_id": "GM023", - "instantiation": "true", - "nozzle_diameter": [ - "0.8" - ], - "printer_model": "Bambu Lab A1 mini", - "printer_variant": "0.8", - "default_filament_profile": [ - "Bambu PLA Basic @BBL A1M" - ], - "default_print_profile": "0.40mm Standard @BBL A1M 0.8 nozzle", - "max_layer_height": [ - "0.56" - ], - "min_layer_height": [ - "0.16" - ], - "nozzle_type": [ - "hardened_steel" - ], - "retract_length_toolchange": [ - "3" - ], - "retraction_length": [ - "3" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab P1P 0.8 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1E 0.8 nozzle", - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab H2D 0.8 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle", - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ] + "type": "machine", + "name": "Bambu Lab A1 mini 0.8 nozzle", + "inherits": "Bambu Lab A1 mini 0.4 nozzle", + "from": "system", + "setting_id": "GM023", + "instantiation": "true", + "nozzle_diameter": [ + "0.8" + ], + "printer_model": "Bambu Lab A1 mini", + "printer_variant": "0.8", + "default_filament_profile": [ + "Bambu PLA Basic @BBL A1M" + ], + "default_print_profile": "0.40mm Standard @BBL A1M 0.8 nozzle", + "max_layer_height": [ + "0.56" + ], + "min_layer_height": [ + "0.16" + ], + "retract_length_toolchange": [ + "3" + ], + "retraction_length": [ + "3" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab H2C 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab A1 mini.json b/resources/profiles/BBL/machine/Bambu Lab A1 mini.json index 33cf76e05b..064b0b21e7 100644 --- a/resources/profiles/BBL/machine/Bambu Lab A1 mini.json +++ b/resources/profiles/BBL/machine/Bambu Lab A1 mini.json @@ -1,15 +1,16 @@ { - "type": "machine_model", - "name": "Bambu Lab A1 mini", - "nozzle_diameter": "0.4;0.2;0.6;0.8", - "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", - "bed_model": "bbl-3dp-A1M.stl", - "bed_texture": "bbl-3dp-logo.svg", - "default_bed_type": "Textured PEI Plate", - "image_bed_type": "mini", - "not_support_bed_type": "Smooth Cool Plate;Engineering Plate", - "family": "BBL-3DP", - "machine_tech": "FFF", - "model_id": "N1", - "default_materials": "Bambu PLA Matte @BBL A1M;Bambu PLA Basic @BBL A1M;Bambu PLA Silk @BBL A1M;Bambu Support For PLA @BBL A1M;Bambu TPU 95A @BBL A1M;Generic PLA @BBL A1M;Generic PLA High Speed @BBL A1M;Bambu PLA Metal @BBL A1M;Generic PETG @BBL A1M;Bambu PLA Marble @BBL A1M;Bambu PLA-CF @BBL A1M;Bambu PETG-CF @BBL A1M;Bambu PETG HF @BBL A1M;Bambu PLA Basic @BBL A1M 0.2 nozzle" -} + "type": "machine_model", + "name": "Bambu Lab A1 mini", + "nozzle_diameter": "0.4;0.2;0.6;0.8", + "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", + "bed_model": "bbl-3dp-A1M.stl", + "bed_texture": "bbl-3dp-logo.svg", + "default_bed_type": "Textured PEI Plate", + "image_bed_type": "mini", + "not_support_bed_type": "Cool Plate;Engineering Plate", + "support_side_panel_fan": "false", + "family": "BBL-3DP", + "machine_tech": "FFF", + "model_id": "N1", + "default_materials": "Bambu PLA Matte @BBL A1M;Bambu PLA Basic @BBL A1M;Bambu PLA Silk @BBL A1M;Bambu Support For PLA @BBL A1M;Bambu TPU 95A @BBL A1M;Generic PLA @BBL A1M;Generic PLA High Speed @BBL A1M;Bambu PLA Metal @BBL A1M;Generic PETG @BBL A1M;Bambu PLA Marble @BBL A1M;Bambu PLA-CF @BBL A1M;Bambu PETG-CF @BBL A1M;Bambu PETG HF @BBL A1M;Bambu PLA Pure @BBL A1M;Bambu PLA Basic @BBL A1M 0.2 nozzle" +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab A1.json b/resources/profiles/BBL/machine/Bambu Lab A1.json index 1ce5f24296..d3b7597def 100644 --- a/resources/profiles/BBL/machine/Bambu Lab A1.json +++ b/resources/profiles/BBL/machine/Bambu Lab A1.json @@ -1,13 +1,14 @@ { - "type": "machine_model", - "name": "Bambu Lab A1", - "nozzle_diameter": "0.4;0.2;0.6;0.8", - "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", - "bed_model": "bbl-3dp-X1.stl", - "bed_texture": "bbl-3dp-logo.svg", - "default_bed_type": "Textured PEI Plate", - "family": "BBL-3DP", - "machine_tech": "FFF", - "model_id": "N2S", - "default_materials": "Bambu PLA Matte @BBL A1;Bambu PLA Basic @BBL A1;Bambu PLA Silk @BBL A1;Bambu Support For PA/PET @BBL A1;Bambu ABS @BBL A1;Bambu TPU 95A @BBL A1;Bambu PLA Tough @BBL A1;Generic PLA @BBL A1;Generic PLA High Speed @BBL A1;Generic PETG @BBL A1;Generic PVA @BBL A1;Bambu PETG HF @BBL A1;Bambu PLA Basic @BBL A1 0.2 nozzle" -} + "type": "machine_model", + "name": "Bambu Lab A1", + "nozzle_diameter": "0.4;0.2;0.6;0.8", + "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", + "bed_model": "bbl-3dp-X1.stl", + "bed_texture": "bbl-3dp-logo.svg", + "default_bed_type": "Textured PEI Plate", + "support_side_panel_fan": "false", + "family": "BBL-3DP", + "machine_tech": "FFF", + "model_id": "N2S", + "default_materials": "Bambu PLA Matte @BBL A1;Bambu PLA Basic @BBL A1;Bambu PLA Silk @BBL A1;Bambu Support For PA/PET @BBL A1;Bambu ABS @BBL A1;Bambu TPU 95A @BBL A1;Bambu PLA Tough @BBL A1;Generic PLA @BBL A1;Generic PLA High Speed @BBL A1;Generic PETG @BBL A1;Generic PVA @BBL A1;Bambu PETG HF @BBL A1;Bambu PLA Pure @BBL A1;Bambu PLA Basic @BBL A1 0.2 nozzle" +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab A2L 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab A2L 0.2 nozzle.json index afdfa19fdd..e8991904a8 100644 --- a/resources/profiles/BBL/machine/Bambu Lab A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab A2L 0.2 nozzle.json @@ -1,37 +1,37 @@ { - "type": "machine", - "name": "Bambu Lab A2L 0.2 nozzle", - "inherits": "Bambu Lab A2L 0.4 nozzle", - "from": "system", - "setting_id": "GM055", - "instantiation": "true", - "nozzle_diameter": [ - "0.2" - ], - "printer_model": "Bambu Lab A2L", - "printer_variant": "0.2", - "default_filament_profile": [ - "Bambu PLA Basic @BBL A2L 0.2 nozzle" - ], - "default_print_profile": "0.10mm Standard @BBL A2L 0.2 nozzle", - "machine_max_speed_x": [ - "500", - "200" - ], - "machine_max_speed_y": [ - "500", - "200" - ], - "max_layer_height": [ - "0.14" - ], - "min_layer_height": [ - "0.04" - ], - "retract_lift_below": [ - "326" - ], - "upward_compatible_machine": [ - "Bambu Lab H2S 0.2 nozzle" - ] + "type": "machine", + "name": "Bambu Lab A2L 0.2 nozzle", + "inherits": "Bambu Lab A2L 0.4 nozzle", + "from": "system", + "setting_id": "GM055", + "instantiation": "true", + "nozzle_diameter": [ + "0.2" + ], + "printer_model": "Bambu Lab A2L", + "printer_variant": "0.2", + "default_filament_profile": [ + "Bambu PLA Basic @BBL A2L 0.2 nozzle" + ], + "default_print_profile": "0.10mm Standard @BBL A2L 0.2 nozzle", + "machine_max_speed_x": [ + "500", + "200" + ], + "machine_max_speed_y": [ + "500", + "200" + ], + "max_layer_height": [ + "0.14" + ], + "min_layer_height": [ + "0.04" + ], + "retract_lift_below": [ + "326" + ], + "upward_compatible_machine": [ + "Bambu Lab H2S 0.2 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template change_filament_gcode.json b/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template change_filament_gcode.json new file mode 100644 index 0000000000..57c4eb3421 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template change_filament_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab A2L 0.4 nozzle template change_filament_gcode", + "instantiation": "false", + "change_filament_gcode": ";======== A2L filament_change gcode ==========\n;===== 2026/05/26 =====\n\nM620 S[next_filament_id]A\nM204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_filament_id] == 0 || z_hop_types[current_filament_id] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\n\n;nozzle_change_gcode\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\n{if ((filament_type[current_filament_id] == \"PLA\") || (filament_type[current_filament_id] == \"PLA-CF\") || (filament_type[current_filament_id] == \"PETG\") || (filament_type[current_filament_id] == \"PETG-CF\")) && (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[current_filament_id]/2.4053*60} L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{endif}\n\n{if ((filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG\") || (filament_type[next_filament_id] == \"PETG-CF\")) && (nozzle_diameter_at_nozzle_id[next_nozzle_id] == 0.2)}\nM620.10 A1 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{else}\nM620.10 A1 F{flush_volumetric_speeds[next_filament_id]/2.4053*60} L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{endif}\n\n{if long_retraction_when_cut}\nM620.11 P1 L0 I[current_filament_id] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 P0 L0 I[current_filament_id] E0\n{endif}\n\nM620.11 K0 I[current_filament_id] R0\n\n\nT[next_filament_id]\n\n;deretract\n{if filament_type[next_filament_id] == \"TPU\"}\n{else}\n;VG1 E4 F{max(new_filament_e_feedrate, 200)}\n;VG1 E4 F{max(new_filament_e_feedrate/2, 100)}\n{endif}\n\n\n; VFLUSH_START\n\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\n\nSYNC T{ceil(flush_length / 80) * 7.5 + 6.5}\n\n; compensate for heating and cooling\n{if flush_length > 0}\n{if flush_temperatures[next_filament_id] > new_filament_temp}\nSYNC T{(flush_temperatures[next_filament_id]-(new_filament_temp - filament_cooling_before_tower[next_filament_id]))/hotend_cooling_rate[filament_map[next_filament_id]-1]}\nSYNC T{(flush_temperatures[next_filament_id]-(new_filament_temp - filament_cooling_before_tower[next_filament_id]))/hotend_heating_rate[filament_map[next_filament_id]-1]}\n{else}\nSYNC T{(new_filament_temp - filament_cooling_before_tower[next_filament_id] -flush_temperatures[next_filament_id])/hotend_cooling_rate[filament_map[next_filament_id]-1]}\nSYNC T{(new_filament_temp - filament_cooling_before_tower[next_filament_id] -flush_temperatures[next_filament_id])/hotend_heating_rate[filament_map[next_filament_id]-1]}\n{endif}\n{endif}\n\n; VFLUSH_END\n\n\n\nM1002 set_filament_type:{filament_type[next_filament_id]}\n\nM400\nM83\n{if next_filament_id < 255}\nM620.10 R{retract_length_toolchange[filament_map[next_filament_id]-1]}\nM628 S0\n;VM109 S[new_filament_temp]\nM629\nM400\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_filament_id]-1]}\nM400\n\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[travel_acceleration]\n{endif}\n\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\n\nM621 S[next_filament_id]A\n\nM622.1 S0 ;for prev version, default skip\nM1002 judge_flag powerloss_resume_flag\nM622 J1\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_filament_id]-1]}\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[travel_acceleration]\n{endif}\nM1002 set_flag powerloss_resume_flag=0\nM623\n\n{if (filament_type[next_filament_id] == \"TPU\")}\nM1015.3 S1 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]};enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PETG\")\n || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} ;disable E air printing detect\n{endif}\n\n{if ((filament_type[next_filament_id] == \"PETG\") || (filament_type[next_filament_id] == \"PETG-CF\") || (filament_type[next_filament_id] == \"TPU\") || (filament_type[next_filament_id] == \"TPU-AMS\"))}\n G390.7 M6 G4 C3\n{else}\n G390.7 M6 G6 C3\n{endif}\n\nM620.6 I[next_filament_id] W1 ;enable ams air printing detect\n\n;Set the filament gear warning temperature\n{if (temperature_vitrification[next_filament_id] <= 50)}\n {if ((filament_ids[next_filament_id]==\"GFA05\") || (filament_ids[next_filament_id]==\"GFA06\"))}\n M142 P1 O45; set PLASILK gear warning temperature when filament change\n {else}\n M142 P1 O60; set PLA/PLACF/PLAAERO/PVA/TPU gear warning temperature when filament change\n {endif}\n{else}\n M142 P1 O100 ; set gear warning temperature when filament change\n{endif}\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template layer_change_gcode.json b/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template layer_change_gcode.json new file mode 100644 index 0000000000..d53ce80cbb --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template layer_change_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab A2L 0.4 nozzle template layer_change_gcode", + "instantiation": "false", + "layer_change_gcode": ";======== A2L layer_change gcode ==========\n;===== 2026/04/29 ====\n; update layer progress\nM201 N1 Y[curr_y_acceleration_limit]\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change\nM1007 L1" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template machine_end_gcode.json b/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template machine_end_gcode.json new file mode 100644 index 0000000000..f1f28d1280 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template machine_end_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab A2L 0.4 nozzle template machine_end_gcode", + "instantiation": "false", + "machine_end_gcode": ";======== A2L end gcode ==========\n;===== 2026/07/29 =====\n\nM1003 S0\nM73 P100 R0\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\n\n; pull back filament to AMS\nM620 S65535\nT65535\nG150.2\nM621 S65535\nG150.3\nG1 Y295 F3600\nG90\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S5 ;wait for last picture to be taken\nM623 ;end of \"timelapse_record_flag\"\n\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM142 P1 Q0 ; turn off extruder autocool\n\nM220 S100 ; Reset feedrate magnitude\nM204.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\n\nM1015.3 S0 ;disable clog detect\nM1015.4 S0 K0 ;disable air printing detect\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L30 C53 D10 M30 E53 F10 N30 \nM1006 A57 B10 L30 C57 D10 M30 E57 F10 N30 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A53 B10 L30 C53 D10 M30 E53 F10 N30 \nM1006 A57 B10 L30 C57 D10 M30 E57 F10 N30 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A48 B10 L30 C48 D10 M30 E48 F10 N30 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A60 B10 L30 C60 D10 M30 E60 F10 N30 \nM1006 W\n;=====printer finish sound=========\nM400\nM18\n\nM104 S0 ; turn off hotend\nM140 S0 ; turn off bed\nM1007 S0" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..ca5c2c516c --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab A2L 0.4 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";M1002 set_flag extrude_cali_flag=1\n;M1002 set_flag g29_before_print_flag=1\n;M1002 set_flag build_plate_detect_flag=1\n;M1002 set_flag bed_heat_stable_wait_flag=1\n\n;======== A2L start gcode==========\n;===== 2026/07/14 =====\nT1000 O0\nM1002 gcode_claim_action : 2\n{if hold_chamber_temp_for_flat_print && (bed_temperature_initial_layer_single == 55)}\n M140 S65\n{else}\n M140 S[bed_temperature_initial_layer_single] ; heat heatbed first\n{endif}\n\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\nM400\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L30 C53 D9 M30 E53 F9 N30\nM1006 A56 B9 L30 C56 D9 M30 E56 F9 N30\nM1006 A61 B9 L30 C61 D9 M30 E61 F9 N30\nM1006 A53 B9 L30 C53 D9 M30 E53 F9 N30\nM1006 A56 B9 L30 C56 D9 M30 E56 F9 N30\nM1006 A61 B18 L30 C61 D18 M30 E61 F18 N30\nM1006 W\n;=====printer start sound ===================\n\n M620 M ;enable remap\n G389\n\n;===== avoid end stop =================\n G91\n G380 S2 Z22 F1200\n G380 S2 Z-12 F1200\n G90\n;===== avoid end stop =================\n\n;===== reset machine status =================\n M204 S10000\n M630 S0 P1\n G90\n M17 D ; reset motor current to default\n M960 S5 P1 ; turn on logo lamp\n M220 S100 ;Reset Feedrate\n M221 S100 ;Reset Flowrate\n M73.2 R1.0 ;Reset left time magnitude\n G29.1 Z{+0.0} ; clear z-trim value first\n M983.1 M1\n M982.2 S1 ; turn on cog noise reduction\n M983.4 S0\n;===== reset machine status =================\n;Set the filament gear warning temperature\n{if (temperature_vitrification[initial_filament_id] <= 50)}\n {if ((filament_ids[initial_filament_id]==\"GFA05\") || (filament_ids[initial_filament_id]==\"GFA06\"))}\n M142 P1 O45; set PLASILK gear warning temperature when start\n {else}\n M142 P1 O60; set PLA/PLACF/PLAAERO/PVA/TPU gear warning temperature when start\n {endif}\n{else}\n M142 P1 O100 ; set gear warning temperature when start\n{endif}\n;===== start to heat heatbed & hotend==========\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M104 S140 A\n\n G29.2 S0 ; avoid invalid abl data\n\n;===== first homing start =====\n M1002 gcode_claim_action : 13\n M105\n G28 X Z P0 T300 W\n G150.3\n G1 Z1.3 F1200\n G150.1 F16000 ; wipe mouth to avoid filament stick to heatbed\n G90\n M400\n;===== first homing end =====\n\n\n;===== detection start =====\n;===== build_plate_detect_flag start =====\nM1002 judge_flag build_plate_detect_flag\nM622 S1\n G91\n G1 Z5 F1200\n G90\n G0 X15 F30000\n G0 Y319 F3000\n G91\n G1 Z-5 F1200\n G28 Z P0 T140\n G1 F1200\n G39.4\n G90\n G1 Z5 F1200\nM623\n;===== build_plate_detect_flag end =====\n;===== detection end =====\n\n\n;===== hotend hotbed pre-heat start =====\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]-80} A ; rise nozzle temp in advance\n\n G90\n G1 Y220 F3000 ; Put away the heated bed to prevent collisions\n\n {if hold_chamber_temp_for_flat_print && (bed_temperature_initial_layer_single == 55)}\n M190 S65\n {else}\n M190 S[bed_temperature_initial_layer_single]\n {endif}\n;===== hotend hotbed pre-heat end =====\n\n\n;===== prepare print temperature and material ==========\n M400\n M211 X0 Y0 Z0 ;turn off soft endstop\n M975 S1 ; turn on input shaping\n\n G29.2 S0 ; avoid invalid abl data\n G150.3\n{if ((filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG\") || (filament_type[initial_no_support_filament_id] == \"PETG-CF\")) && (nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{endif}\n\n M620.11 P0 L0 I[initial_no_support_filament_id] E0\n M620.11 K0 I[initial_no_support_filament_id] R0\n\n M620 S[initial_no_support_filament_id]A ; switch material if AMS exist\n M1002 gcode_claim_action : 4\n M1002 set_filament_type:UNKNOWN\n M400\n T[initial_no_support_filament_id]\n M400\n M628 S0\n M629\n M400\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M621 S[initial_no_support_filament_id]A\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n M400\n M106 P1 S0\n M400\n G29.2 S1\n{if ((filament_type[initial_no_support_filament_id] == \"PETG\") || (filament_type[initial_no_support_filament_id] == \"PETG-CF\") || (filament_type[initial_no_support_filament_id] == \"TPU\") || (filament_type[initial_no_support_filament_id] == \"TPU-AMS\"))}\n G390.7 M6 G4 C3\n{else}\n G390.7 M6 G6 C3\n{endif}\n;===== prepare print temperature and material ==========\n\n\n;===== auto extrude cali start =========================\nM975 S1\nM1002 judge_flag extrude_cali_flag\n M622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n M623\n\n M622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M623\n\n M622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M623\n;===== auto extrude cali end =========================\n\n\n {if filament_type[initial_filament_id] == \"TPU\" || filament_type[initial_filament_id] == \"PVA\"}\n {else}\n M83\n G1 E-3 F1800\n M400 P500\n {endif}\n G0 Z1.3 F1200\n G150.2\n G150.1 F16000\n\n G91\n G1 X20 F12000 ; move away from the trash bin\n G90\n M400\n\n\n;===== wipe nozzle start =====\n M1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n M400\n M109 S140 A\n M106 P1 S255\n G91\n G1 Z1.3 F1200\n G90\n M400 S1\n ;======== enhance brush nozzle start =====\n G150.1 F16000\n G91\n G1 Y5 F5000\n G1 X-20 F16000\n G1 Y-10 F5000\n G1 X-20 F16000\n G1 Y10 F5000\n G1 X20 F16000\n G1 Y-10 F5000\n G1 X20 F16000\n G1 Y5 F5000\n G90\n G150.1 F16000\n G150.3\n ;======== enhance brush nozzle end =====\n M106 P1 S0\n;===== wipe nozzle end =====\n\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n G90\n G1 Z5 F1200\n G1 X165 Y160 F20000\n M400 P200\n M970.3 Q1 A5 K0 O3\n M970.3 Q1 B1\n M970.2 Q1 K1 W52 Z0.1 B30 ;\n M970.3 Q0 A10 K0 O1\n M970.3 Q0 B1\n M970.2 Q0 K1 W40 Z0.1 B20 ;\n M974 Q0 S2 P0\n M974 Q1 S2 P0\n M975 S1 R1 M1\n M400\n G1 X155 F3000\n G150.3\n;===== mech mode sweep end =====\n\n\n;===== bed leveling ==================================\n\n {if hold_chamber_temp_for_flat_print && (bed_temperature_initial_layer_single == 55)}\n M190 S65\n {else}\n M190 S[bed_temperature_initial_layer_single] ; ensure bed temp\n {endif}\n M109 S140 A\n\n\n {if hold_chamber_temp_for_flat_print && (bed_temperature_initial_layer_single == 55)}\n M1002 gcode_claim_action : 58\n SYNC R0 T600\n M1030 S500 ; action before has done 200s insulation\n M1030 C\n {else}\n M1002 judge_flag g29_before_print_flag\n M622 J1\n M1002 judge_flag bed_heat_stable_wait_flag\n M622 J1\n {if (bed_temperature_initial_layer_single > 35)}\n M1002 gcode_claim_action : 58\n G29.30 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n {endif}\n M623\n M623\n M622 J2\n M1002 judge_flag bed_heat_stable_wait_flag\n M622 J1\n {if (bed_temperature_initial_layer_single > 35)}\n M1002 gcode_claim_action : 58\n G29.30 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n {endif}\n M623\n M623\n {endif}\n SYNC R0 T120 ; Adjust estimated time\n\n M106 S0 ; turn off fan , too noisy\n M1002 judge_flag g29_before_print_flag\n M622 J1\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print && (bed_temperature_initial_layer_single == 55)}\n G29 R\n {else}\n {if (bed_temperature_initial_layer_single > 35)}\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} O1 R\n {else}\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} O R\n {endif}\n {endif}\n M400\n M623\n\n M622 J2\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print && (bed_temperature_initial_layer_single == 55)}\n G29 R\n {else}\n {if (bed_temperature_initial_layer_single > 35)}\n G29 A2 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} O1 R\n {else}\n G29 A2 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} O R\n {endif}\n {endif}\n M400\n M623\n\n M622 J0\n G28 R\n M623\n G29.2 S1\n;===== bed leveling end ================================\n\n M985.1 U0 E2\n M985.1 U1 E2\n\n M104 S{nozzle_temperature_initial_layer[initial_filament_id]} A\n G150.3 ; move to garbage can to wait for temp\n\n;===== wait temperature reaching the reference value =======\n {if hold_chamber_temp_for_flat_print && (bed_temperature_initial_layer_single == 55)}\n M190 S65\n {else}\n M190 S[bed_temperature_initial_layer_single] ; ensure bed temp\n {endif}\n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off cooling fan\n\n;===== wait temperature reaching the reference value =======\n\n M1002 gcode_claim_action : 255\n M400\n M975 S1 ; turn on mech mode supression\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if curr_bed_type==\"Textured PEI Plate\"}\n {if hold_chamber_temp_for_flat_print && (bed_temperature_initial_layer_single == 55)}\n G29.1 Z{-0.03} ; for Textured PEI Plate first layer\n {else}\n G29.1 Z{-0.04} ; for Textured PEI Plate\n {endif}\n {else}\n G29.1 Z{-0.01}\n {endif}\n\n;===== nozzle load line ===============================\nM1002 gcode_claim_action : 51\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n M400 P50\n M500 D1\n M400 S3\n M109 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n G0 X145 Y0 F24000\n M400\n G130 O0 X145 Y-0.2 Z0.8 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2/2.4053} L40 E20 D4\n G90\n M83\n G1 Z0.2\n M400\n;===== nozzle load line end ===========================\nM1007 S1 C1;turn on mass estimation && clear\nM1002 gcode_claim_action : 0\n G29.99\n\n{if (filament_type[initial_no_support_filament_id] == \"TPU\")}\nM1015.3 S1 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]};enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PETG\")\n || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;disable E air printing detect\n{endif}\n\nM620.6 I[initial_no_support_filament_id] W1 ;enable ams air printing detect\n\nM1010 Q0 B0.005 S0.01\nM1010 Q1 B0.002 S0.01\nM1010.1 S1\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template time_lapse_gcode.json b/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template time_lapse_gcode.json new file mode 100644 index 0000000000..3add10135b --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle template time_lapse_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab A2L 0.4 nozzle template time_lapse_gcode", + "instantiation": "false", + "time_lapse_gcode": ";======== A2L timelapse gcode ==========\n;===== 2026/05/09 ====\n{if !spiral_mode && print_sequence != \"by object\"}\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n G1 Z{max_layer_z + 0.4} F1200\n G150.3 ; move to garbage can\n G1 Y{first_layer_center_no_wipe_tower[1]} F30000; move to safe pos\n M400\n M1004 S5 P1 ; external shutter\n M971 S11 C11 O0\n M400 P350\nM623\n; SKIPPABLE_END\n{endif}\n; SKIPPABLE_START\n; SKIPTYPE: g39_detection\n; go x0 clamping detection, clear_to_x0 = [clear_to_x0]\n{if !spiral_mode && (print_sequence != \"by object\" || clear_to_x0)}\nM1002 judge_flag g39_detection_flag\nM622 J1\n ; enable nozzle clog detect at 3rd layer\n {if layer_num == 1 || layer_num == 2}\n M400\n G390.7 M7 S1 Z2.5\n {endif}\n {if layer_num > 5 && layer_z <= 10 && layer_z > 0.4 && layer_num % 6 == 0}\n M400\n G390.7 M7 S1 Z2.5\n {endif}\n M1002 judge_flag g39_mass_exceed_flag\n M622 J1\n {if layer_num > 2}\n M400\n G390.7 M9 S1 Z2.5\n {endif}\n M623\nM623\n{endif}\n; SKIPPABLE_END" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle.json index 93bf4afd83..4b95e9b7de 100644 --- a/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab A2L 0.4 nozzle.json @@ -1,100 +1,118 @@ { - "type": "machine", - "name": "Bambu Lab A2L 0.4 nozzle", - "inherits": "fdm_bbl_3dp_001_common", - "from": "system", - "setting_id": "GM056", - "instantiation": "true", - "nozzle_diameter": [ - "0.4" - ], - "printer_model": "Bambu Lab A2L", - "printer_variant": "0.4", - "auxiliary_fan": "0", - "bed_exclude_area": [], - "default_filament_profile": [ - "Bambu PLA Basic @BBL A2L 0.4 nozzle" - ], - "default_print_profile": "0.20mm Standard @BBL A2L", - "enable_long_retraction_when_cut": "2", - "extruder_clearance_height_to_lid": "325", - "extruder_clearance_height_to_rod": "25", - "extruder_clearance_max_radius": "73", - "grab_length": [ - "17.4" - ], - "head_wrap_detect_zone": [ - "226x224", - "256x224", - "256x256", - "226x256" - ], - "machine_bed_mass_Y": "2700", - "machine_load_filament_time": "11", - "machine_max_acceleration_extruding": [ - "12000", - "12000" - ], - "machine_max_acceleration_x": [ - "12000", - "12000" - ], - "machine_max_acceleration_y": [ - "8000", - "8000" - ], - "machine_max_acceleration_z": [ - "1500", - "1500" - ], - "machine_max_force_Y": "29", - "machine_max_jerk_e": [ - "3", - "3" - ], - "machine_max_printed_mass": "2000", - "machine_max_speed_x": [ - "500", - "500" - ], - "machine_max_speed_y": [ - "500", - "500" - ], - "machine_max_speed_z": [ - "30", - "30" - ], - "machine_unload_filament_time": "12", - "nozzle_height": "4.76", - "nozzle_type": [ - "stainless_steel" - ], - "nozzle_volume": [ - "92" - ], - "deretract_speed_extruder_change": [ - "30" - ], - "printable_area": [ - "0x0", - "330x0", - "330x320", - "0x320" - ], - "printable_height": "325", - "printer_structure": "i3", - "retract_lift_below": [ - "326" - ], - "support_fast_purge_mode": "1", - "support_object_skip_flush": "1", - "upward_compatible_machine": [ - "Bambu Lab H2S 0.4 nozzle" - ], - "machine_start_gcode": ";M1002 set_flag extrude_cali_flag=1\n;M1002 set_flag g29_before_print_flag=1\n;M1002 set_flag build_plate_detect_flag=1\n;M1002 set_flag bed_heat_stable_wait_flag=1\n\n;======== A2L start gcode==========\n;===== 2026/05/26 =====\nT1000 O0\nM1002 gcode_claim_action : 2\n{if hold_chamber_temp_for_flat_print && (bed_temperature_initial_layer_single == 55)}\n M140 S65\n{else}\n M140 S[bed_temperature_initial_layer_single] ; heat heatbed first\n{endif}\n\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\nM400\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L30 C53 D9 M30 E53 F9 N30\nM1006 A56 B9 L30 C56 D9 M30 E56 F9 N30\nM1006 A61 B9 L30 C61 D9 M30 E61 F9 N30\nM1006 A53 B9 L30 C53 D9 M30 E53 F9 N30\nM1006 A56 B9 L30 C56 D9 M30 E56 F9 N30\nM1006 A61 B18 L30 C61 D18 M30 E61 F18 N30\nM1006 W\n;=====printer start sound ===================\n\n M620 M ;enable remap\n G389\n\n;===== avoid end stop =================\n G91\n G380 S2 Z22 F1200\n G380 S2 Z-12 F1200\n G90\n;===== avoid end stop =================\n\n;===== reset machine status =================\n M204 S10000\n M630 S0 P1\n G90\n M17 D ; reset motor current to default\n M960 S5 P1 ; turn on logo lamp\n M220 S100 ;Reset Feedrate\n M221 S100 ;Reset Flowrate\n M73.2 R1.0 ;Reset left time magnitude\n G29.1 Z{+0.0} ; clear z-trim value first\n M983.1 M1\n M982.2 S1 ; turn on cog noise reduction\n M983.4 S0\n;===== reset machine status =================\n;Set the filament gear warning temperature\n{if (temperature_vitrification[initial_filament_id] <= 50)}\n {if ((filament_ids[initial_filament_id]==\"GFA05\") || (filament_ids[initial_filament_id]==\"GFA06\"))}\n M142 P1 O45; set PLASILK gear warning temperature when start\n {else}\n M142 P1 O60; set PLA/PLACF/PLAAERO/PVA/TPU gear warning temperature when start\n {endif}\n{else}\n M142 P1 O100 ; set gear warning temperature when start\n{endif}\n;===== start to heat heatbed & hotend==========\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M104 S140 A\n\n G29.2 S0 ; avoid invalid abl data\n\n;===== first homing start =====\n M1002 gcode_claim_action : 13\n M105\n G28 X Z P0 T300 W\n G150.3\n G1 Z1.3 F1200\n G150.1 F16000 ; wipe mouth to avoid filament stick to heatbed\n G90\n M400\n;===== first homing end =====\n\n\n;===== detection start =====\n;===== build_plate_detect_flag start =====\nM1002 judge_flag build_plate_detect_flag\nM622 S1\n G91\n G1 Z5 F1200\n G90\n G0 X15 F30000\n G0 Y319 F3000\n G91\n G1 Z-5 F1200\n G28 Z P0 T140\n G1 F1200\n G39.4\n G90\n G1 Z5 F1200\nM623\n;===== build_plate_detect_flag end =====\n;===== detection end =====\n\n\n;===== hotend hotbed pre-heat start =====\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]-80} A ; rise nozzle temp in advance\n\n G90\n G1 Y220 F3000 ; Put away the heated bed to prevent collisions\n\n {if hold_chamber_temp_for_flat_print && (bed_temperature_initial_layer_single == 55)}\n M190 S65\n {else}\n M190 S[bed_temperature_initial_layer_single]\n {endif}\n;===== hotend hotbed pre-heat end =====\n\n\n;===== prepare print temperature and material ==========\n M400\n M211 X0 Y0 Z0 ;turn off soft endstop\n M975 S1 ; turn on input shaping\n\n G29.2 S0 ; avoid invalid abl data\n G150.3\n{if ((filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG\") || (filament_type[initial_no_support_filament_id] == \"PETG-CF\")) && (nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{endif}\n\n M620.11 P0 L0 I[initial_no_support_filament_id] E0\n M620.11 K0 I[initial_no_support_filament_id] R0\n\n M620 S[initial_no_support_filament_id]A ; switch material if AMS exist\n M1002 gcode_claim_action : 4\n M1002 set_filament_type:UNKNOWN\n M400\n T[initial_no_support_filament_id]\n M400\n M628 S0\n M629\n M400\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M621 S[initial_no_support_filament_id]A\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n M400\n M106 P1 S0\n M400\n G29.2 S1\n{if ((filament_type[initial_no_support_filament_id] == \"PETG\") || (filament_type[initial_no_support_filament_id] == \"PETG-CF\") || (filament_type[initial_no_support_filament_id] == \"TPU\") || (filament_type[initial_no_support_filament_id] == \"TPU-AMS\"))}\n G390.7 M6 G4 C3\n{else}\n G390.7 M6 G6 C3\n{endif}\n;===== prepare print temperature and material ==========\n\n\n;===== auto extrude cali start =========================\nM975 S1\nM1002 judge_flag extrude_cali_flag\n M622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n M623\n\n M622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M623\n\n M622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M623\n;===== auto extrude cali end =========================\n\n\n {if filament_type[initial_filament_id] == \"TPU\" || filament_type[initial_filament_id] == \"PVA\"}\n {else}\n M83\n G1 E-3 F1800\n M400 P500\n {endif}\n G0 Z1.3 F1200\n G150.2\n G150.1 F16000\n\n G91\n G1 X20 F12000 ; move away from the trash bin\n G90\n M400\n\n\n;===== wipe nozzle start =====\n M1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n M400\n M109 S140 A\n M106 P1 S255\n G91\n G1 Z1.3 F1200\n G90\n M400 S1\n ;======== enhance brush nozzle start =====\n G150.1 F16000\n G91\n G1 Y5 F5000\n G1 X-20 F16000\n G1 Y-10 F5000\n G1 X-20 F16000\n G1 Y10 F5000\n G1 X20 F16000\n G1 Y-10 F5000\n G1 X20 F16000\n G1 Y5 F5000\n G90\n G150.1 F16000\n G150.3\n ;======== enhance brush nozzle end =====\n M106 P1 S0\n;===== wipe nozzle end =====\n\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n G90\n G1 Z5 F1200\n G1 X165 Y160 F20000\n M400 P200\n M970.3 Q1 A5 K0 O3\n M970.3 Q1 B1\n M970.2 Q1 K1 W52 Z0.1 B30 ;\n M970.3 Q0 A10 K0 O1\n M970.3 Q0 B1\n M970.2 Q0 K1 W40 Z0.1 B20 ;\n M974 Q0 S2 P0\n M974 Q1 S2 P0\n M975 S1 R1 M1\n M400\n G1 X155 F3000\n G150.3\n;===== mech mode sweep end =====\n\n\n;===== bed leveling ==================================\n\n {if hold_chamber_temp_for_flat_print && (bed_temperature_initial_layer_single == 55)}\n M190 S65\n {else}\n M190 S[bed_temperature_initial_layer_single] ; ensure bed temp\n {endif}\n M109 S140 A\n\n\n {if hold_chamber_temp_for_flat_print && (bed_temperature_initial_layer_single == 55)}\n M1002 gcode_claim_action : 58\n SYNC R0 T600\n M1030 S500 ; action before has done 200s insulation\n M1030 C\n {else}\n M1002 judge_flag bed_heat_stable_wait_flag\n M622 J1\n {if (bed_temperature_initial_layer_single > 35)}\n M1002 gcode_claim_action : 54\n G29.30 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n {endif}\n M623\n {endif}\n SYNC R0 T120 ; Adjust estimated time\n\n M106 S0 ; turn off fan , too noisy\n M1002 judge_flag g29_before_print_flag\n M622 J1\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print && (bed_temperature_initial_layer_single == 55)}\n G29 R\n {else}\n {if (bed_temperature_initial_layer_single > 35)}\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} O1 R\n {else}\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} O R\n {endif}\n {endif}\n M400\n M623\n\n M622 J2\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print && (bed_temperature_initial_layer_single == 55)}\n G29 R\n {else}\n {if (bed_temperature_initial_layer_single > 35)}\n G29 A2 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} O1 R\n {else}\n G29 A2 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} O R\n {endif}\n {endif}\n M400\n M623\n\n M622 J0\n G28 R\n M623\n G29.2 S1\n;===== bed leveling end ================================\n\n M985.1 U0 E2\n M985.1 U1 E2\n\n M104 S{nozzle_temperature_initial_layer[initial_filament_id]} A\n G150.3 ; move to garbage can to wait for temp\n\n;===== wait temperature reaching the reference value =======\n {if hold_chamber_temp_for_flat_print && (bed_temperature_initial_layer_single == 55)}\n M190 S65\n {else}\n M190 S[bed_temperature_initial_layer_single] ; ensure bed temp\n {endif}\n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off cooling fan\n\n;===== wait temperature reaching the reference value =======\n\n M1002 gcode_claim_action : 255\n M400\n M975 S1 ; turn on mech mode supression\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if curr_bed_type==\"Textured PEI Plate\"}\n {if hold_chamber_temp_for_flat_print && (bed_temperature_initial_layer_single == 55)}\n G29.1 Z{-0.03} ; for Textured PEI Plate first layer\n {else}\n G29.1 Z{-0.04} ; for Textured PEI Plate\n {endif}\n {else}\n G29.1 Z{-0.01}\n {endif}\n\n;===== nozzle load line ===============================\nM1002 gcode_claim_action : 51\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n M400 P50\n M500 D1\n M400 S3\n M109 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n G0 X145 Y0 F24000\n M400\n G130 O0 X145 Y-0.2 Z0.8 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2/2.4053} L40 E20 D4\n G90\n M83\n G1 Z0.2\n M400\n;===== nozzle load line end ===========================\nM1007 S1 C1;turn on mass estimation && clear\nM1002 gcode_claim_action : 0\n G29.99\n\n{if (filament_type[initial_no_support_filament_id] == \"TPU\")}\nM1015.3 S1 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]};enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PETG\")\n || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;disable E air printing detect\n{endif}\n\nM620.6 I[initial_no_support_filament_id] W1 ;enable ams air printing detect\n\nM1010 Q0 B0.005 S0.01\nM1010 Q1 B0.002 S0.01\nM1010.1 S1\n", - "machine_end_gcode": ";======== A2L end gcode ==========\n;===== 2026/04/07 =====\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\n\n; pull back filament to AMS\nM620 S65535\nT65535\nG150.2\nM621 S65535\nG150.3\nG1 Y295 F3600\nG90\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S5 ;wait for last picture to be taken\nM623 ;end of \"timelapse_record_flag\"\n\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM142 P1 Q0 ; turn off extruder autocool\n\nM220 S100 ; Reset feedrate magnitude\nM204.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\n\nM1015.3 S0 ;disable clog detect\nM1015.4 S0 K0 ;disable air printing detect\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L30 C53 D10 M30 E53 F10 N30 \nM1006 A57 B10 L30 C57 D10 M30 E57 F10 N30 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A53 B10 L30 C53 D10 M30 E53 F10 N30 \nM1006 A57 B10 L30 C57 D10 M30 E57 F10 N30 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A48 B10 L30 C48 D10 M30 E48 F10 N30 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A60 B10 L30 C60 D10 M30 E60 F10 N30 \nM1006 W\n;=====printer finish sound=========\nM400\nM18\n\nM104 S0 ; turn off hotend\nM140 S0 ; turn off bed\nM1007 S0", - "layer_change_gcode": ";======== A2L layer_change gcode ==========\n;===== 2026/04/29 ====\n; update layer progress\nM201 N1 Y[curr_y_acceleration_limit]\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change\nM1007 L1", - "time_lapse_gcode": ";======== A2L timelapse gcode ==========\n;===== 2026/05/09 ====\n{if !spiral_mode && print_sequence != \"by object\"}\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n G1 Z{max_layer_z + 0.4} F1200\n G150.3 ; move to garbage can\n G1 Y{first_layer_center_no_wipe_tower[1]} F30000; move to safe pos\n M400\n M1004 S5 P1 ; external shutter\n M971 S11 C11 O0\n M400 P350\nM623\n; SKIPPABLE_END\n{endif}\n; SKIPPABLE_START\n; SKIPTYPE: g39_detection\n; go x0 clamping detection, clear_to_x0 = [clear_to_x0]\n{if !spiral_mode && (print_sequence != \"by object\" || clear_to_x0)}\nM1002 judge_flag g39_detection_flag\nM622 J1\n ; enable nozzle clog detect at 3rd layer\n {if layer_num == 1 || layer_num == 2}\n M400\n G390.7 M7 S1 Z2.5\n {endif}\n {if layer_num > 5 && layer_z <= 10 && layer_z > 0.4 && layer_num % 6 == 0}\n M400\n G390.7 M7 S1 Z2.5\n {endif}\n M1002 judge_flag g39_mass_exceed_flag\n M622 J1\n {if layer_num > 2}\n M400\n G390.7 M9 S1 Z2.5\n {endif}\n M623\nM623\n{endif}\n; SKIPPABLE_END", - "change_filament_gcode": ";======== A2L filament_change gcode ==========\n;===== 2026/05/26 =====\n\nM620 S[next_filament_id]A\nM204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_filament_id] == 0 || z_hop_types[current_filament_id] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\n\n;nozzle_change_gcode\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\n{if ((filament_type[current_filament_id] == \"PLA\") || (filament_type[current_filament_id] == \"PLA-CF\") || (filament_type[current_filament_id] == \"PETG\") || (filament_type[current_filament_id] == \"PETG-CF\")) && (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[current_filament_id]/2.4053*60} L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{endif}\n\n{if ((filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG\") || (filament_type[next_filament_id] == \"PETG-CF\")) && (nozzle_diameter_at_nozzle_id[next_nozzle_id] == 0.2)}\nM620.10 A1 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{else}\nM620.10 A1 F{flush_volumetric_speeds[next_filament_id]/2.4053*60} L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{endif}\n\n{if long_retraction_when_cut}\nM620.11 P1 L0 I[current_filament_id] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 P0 L0 I[current_filament_id] E0\n{endif}\n\nM620.11 K0 I[current_filament_id] R0\n\n\nT[next_filament_id]\n\n;deretract\n{if filament_type[next_filament_id] == \"TPU\"}\n{else}\n;VG1 E4 F{max(new_filament_e_feedrate, 200)}\n;VG1 E4 F{max(new_filament_e_feedrate/2, 100)}\n{endif}\n\n\n; VFLUSH_START\n\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\n\nSYNC T{ceil(flush_length / 80) * 7.5 + 6.5}\n\n; compensate for heating and cooling\n{if flush_length > 0}\n{if flush_temperatures[next_filament_id] > new_filament_temp}\nSYNC T{(flush_temperatures[next_filament_id]-(new_filament_temp - filament_cooling_before_tower[next_filament_id]))/hotend_cooling_rate[filament_map[next_filament_id]-1]}\nSYNC T{(flush_temperatures[next_filament_id]-(new_filament_temp - filament_cooling_before_tower[next_filament_id]))/hotend_heating_rate[filament_map[next_filament_id]-1]}\n{else}\nSYNC T{(new_filament_temp - filament_cooling_before_tower[next_filament_id] -flush_temperatures[next_filament_id])/hotend_cooling_rate[filament_map[next_filament_id]-1]}\nSYNC T{(new_filament_temp - filament_cooling_before_tower[next_filament_id] -flush_temperatures[next_filament_id])/hotend_heating_rate[filament_map[next_filament_id]-1]}\n{endif}\n{endif}\n\n; VFLUSH_END\n\n\n\nM1002 set_filament_type:{filament_type[next_filament_id]}\n\nM400\nM83\n{if next_filament_id < 255}\nM620.10 R{retract_length_toolchange[filament_map[next_filament_id]-1]}\nM628 S0\n;VM109 S[new_filament_temp]\nM629\nM400\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_filament_id]-1]}\nM400\n\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[travel_acceleration]\n{endif}\n\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\n\nM621 S[next_filament_id]A\n\nM622.1 S0 ;for prev version, default skip\nM1002 judge_flag powerloss_resume_flag\nM622 J1\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_filament_id]-1]}\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[travel_acceleration]\n{endif}\nM1002 set_flag powerloss_resume_flag=0\nM623\n\n{if (filament_type[next_filament_id] == \"TPU\")}\nM1015.3 S1 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]};enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PETG\")\n || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} ;disable E air printing detect\n{endif}\n\n{if ((filament_type[next_filament_id] == \"PETG\") || (filament_type[next_filament_id] == \"PETG-CF\") || (filament_type[next_filament_id] == \"TPU\") || (filament_type[next_filament_id] == \"TPU-AMS\"))}\n G390.7 M6 G4 C3\n{else}\n G390.7 M6 G6 C3\n{endif}\n\nM620.6 I[next_filament_id] W1 ;enable ams air printing detect\n\n;Set the filament gear warning temperature\n{if (temperature_vitrification[next_filament_id] <= 50)}\n {if ((filament_ids[next_filament_id]==\"GFA05\") || (filament_ids[next_filament_id]==\"GFA06\"))}\n M142 P1 O45; set PLASILK gear warning temperature when filament change\n {else}\n M142 P1 O60; set PLA/PLACF/PLAAERO/PVA/TPU gear warning temperature when filament change\n {endif}\n{else}\n M142 P1 O100 ; set gear warning temperature when filament change\n{endif}\n" + "type": "machine", + "name": "Bambu Lab A2L 0.4 nozzle", + "inherits": "fdm_bbl_3dp_001_common", + "from": "system", + "setting_id": "GM056", + "instantiation": "true", + "nozzle_diameter": [ + "0.4" + ], + "printer_model": "Bambu Lab A2L", + "printer_variant": "0.4", + "auxiliary_fan": "0", + "bed_exclude_area": [], + "bed_heat_soak_area": [ + "102x93.4", + "228x93.4", + "228x226.6", + "102x226.6", + "60x49", + "270x49", + "270x271", + "60x271" + ], + "default_filament_profile": [ + "Bambu PLA Basic @BBL A2L 0.4 nozzle" + ], + "default_print_profile": "0.20mm Standard @BBL A2L", + "default_wipe_tower_pos": "0.0x1.0", + "deretract_speed_extruder_change": [ + "30" + ], + "enable_long_retraction_when_cut": "2", + "extruder_clearance_dist_to_rod": "56.5", + "extruder_clearance_height_to_lid": "325", + "extruder_clearance_height_to_rod": "25", + "extruder_clearance_max_radius": "73", + "grab_length": [ + "17.4" + ], + "head_wrap_detect_zone": [ + "226x224", + "256x224", + "256x256", + "226x256" + ], + "include": [ + "Bambu Lab A2L 0.4 nozzle template machine_start_gcode", + "Bambu Lab A2L 0.4 nozzle template machine_end_gcode", + "Bambu Lab A2L 0.4 nozzle template layer_change_gcode", + "Bambu Lab A2L 0.4 nozzle template time_lapse_gcode", + "Bambu Lab A2L 0.4 nozzle template change_filament_gcode" + ], + "machine_bed_mass_Y": "2700", + "machine_load_filament_time": "11", + "machine_max_acceleration_extruding": [ + "12000", + "12000" + ], + "machine_max_acceleration_x": [ + "12000", + "12000" + ], + "machine_max_acceleration_y": [ + "8000", + "8000" + ], + "machine_max_acceleration_z": [ + "1500", + "1500" + ], + "machine_max_force_Y": "29", + "machine_max_jerk_e": [ + "3", + "3" + ], + "machine_max_printed_mass": "2000", + "machine_max_speed_x": [ + "500", + "500" + ], + "machine_max_speed_y": [ + "500", + "500" + ], + "machine_max_speed_z": [ + "30", + "30" + ], + "machine_unload_filament_time": "12", + "nozzle_height": "4.76", + "nozzle_volume": [ + "92" + ], + "printable_area": [ + "0x0", + "330x0", + "330x320", + "0x320" + ], + "printable_height": "325", + "printer_structure": "i3", + "retract_lift_below": [ + "326" + ], + "support_fast_purge_mode": "1", + "support_object_skip_flush": "1", + "upward_compatible_machine": [ + "Bambu Lab H2S 0.4 nozzle" + ], + "default_ams_type": "2", + "ams_filament_load_time_ams": "23", + "ams_filament_load_time_ams_lite": "11", + "ams_filament_load_time_n3f_s": "18", + "ams_filament_unload_time_ams": "21", + "ams_filament_unload_time_ams_lite": "12", + "ams_filament_unload_time_n3f_s": "19" } diff --git a/resources/profiles/BBL/machine/Bambu Lab A2L 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab A2L 0.6 nozzle.json index 56a902f6a2..fa164e3b25 100644 --- a/resources/profiles/BBL/machine/Bambu Lab A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab A2L 0.6 nozzle.json @@ -1,37 +1,37 @@ { - "type": "machine", - "name": "Bambu Lab A2L 0.6 nozzle", - "inherits": "Bambu Lab A2L 0.4 nozzle", - "from": "system", - "setting_id": "GM057", - "instantiation": "true", - "nozzle_diameter": [ - "0.6" - ], - "printer_model": "Bambu Lab A2L", - "printer_variant": "0.6", - "default_filament_profile": [ - "Bambu PLA Basic @BBL A2L 0.6 nozzle" - ], - "default_print_profile": "0.30mm Standard @BBL A2L 0.6 nozzle", - "machine_max_speed_x": [ - "500", - "200" - ], - "machine_max_speed_y": [ - "500", - "200" - ], - "max_layer_height": [ - "0.42" - ], - "min_layer_height": [ - "0.12" - ], - "retract_lift_below": [ - "326" - ], - "upward_compatible_machine": [ - "Bambu Lab H2S 0.6 nozzle" - ] + "type": "machine", + "name": "Bambu Lab A2L 0.6 nozzle", + "inherits": "Bambu Lab A2L 0.4 nozzle", + "from": "system", + "setting_id": "GM057", + "instantiation": "true", + "nozzle_diameter": [ + "0.6" + ], + "printer_model": "Bambu Lab A2L", + "printer_variant": "0.6", + "default_filament_profile": [ + "Bambu PLA Basic @BBL A2L 0.6 nozzle" + ], + "default_print_profile": "0.30mm Standard @BBL A2L 0.6 nozzle", + "machine_max_speed_x": [ + "500", + "200" + ], + "machine_max_speed_y": [ + "500", + "200" + ], + "max_layer_height": [ + "0.42" + ], + "min_layer_height": [ + "0.12" + ], + "retract_lift_below": [ + "326" + ], + "upward_compatible_machine": [ + "Bambu Lab H2S 0.6 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab A2L 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab A2L 0.8 nozzle.json index 20cf48518c..770a1e9987 100644 --- a/resources/profiles/BBL/machine/Bambu Lab A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab A2L 0.8 nozzle.json @@ -1,37 +1,37 @@ { - "type": "machine", - "name": "Bambu Lab A2L 0.8 nozzle", - "inherits": "Bambu Lab A2L 0.4 nozzle", - "from": "system", - "setting_id": "GM058", - "instantiation": "true", - "nozzle_diameter": [ - "0.8" - ], - "printer_model": "Bambu Lab A2L", - "printer_variant": "0.8", - "default_filament_profile": [ - "Bambu PLA Basic @BBL A2L 0.8 nozzle" - ], - "default_print_profile": "0.40mm Standard @BBL A2L 0.8 nozzle", - "machine_max_speed_x": [ - "500", - "200" - ], - "machine_max_speed_y": [ - "500", - "200" - ], - "max_layer_height": [ - "0.56" - ], - "min_layer_height": [ - "0.16" - ], - "retract_lift_below": [ - "326" - ], - "upward_compatible_machine": [ - "Bambu Lab H2S 0.8 nozzle" - ] + "type": "machine", + "name": "Bambu Lab A2L 0.8 nozzle", + "inherits": "Bambu Lab A2L 0.4 nozzle", + "from": "system", + "setting_id": "GM058", + "instantiation": "true", + "nozzle_diameter": [ + "0.8" + ], + "printer_model": "Bambu Lab A2L", + "printer_variant": "0.8", + "default_filament_profile": [ + "Bambu PLA Basic @BBL A2L 0.8 nozzle" + ], + "default_print_profile": "0.40mm Standard @BBL A2L 0.8 nozzle", + "machine_max_speed_x": [ + "500", + "200" + ], + "machine_max_speed_y": [ + "500", + "200" + ], + "max_layer_height": [ + "0.56" + ], + "min_layer_height": [ + "0.16" + ], + "retract_lift_below": [ + "326" + ], + "upward_compatible_machine": [ + "Bambu Lab H2S 0.8 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab A2L.json b/resources/profiles/BBL/machine/Bambu Lab A2L.json index 62a9a0fddf..fd031b21e8 100644 --- a/resources/profiles/BBL/machine/Bambu Lab A2L.json +++ b/resources/profiles/BBL/machine/Bambu Lab A2L.json @@ -1,17 +1,18 @@ { - "type": "machine_model", - "name": "Bambu Lab A2L", - "nozzle_diameter": "0.4;0.2;0.6;0.8", - "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", - "bed_model": "bbl-3dp-H2C.stl", - "bed_texture": "bbl-3dp-logo.svg", - "bottom_texture_rect_longer": "45, -14.5, 240, 8", - "default_bed_type": "Textured PEI Plate", - "family": "BBL-3DP", - "image_bed_type": "o", - "machine_tech": "FFF", - "model_id": "N9", - "not_support_bed_type": "Cool Plate", - "use_double_extruder_default_texture": "true", - "default_materials": "Bambu PLA Matte @BBL A2L 0.4 nozzle;Bambu PLA Basic @BBL A2L 0.4 nozzle;Bambu PLA Silk @BBL A2L 0.4 nozzle;Bambu Support For PLA/PETG @BBL A2L;Bambu TPU 95A @BBL A2L;Bambu PLA Tough @BBL A2L;Generic PLA @BBL A2L;Generic PLA High Speed @BBL A2L;Generic PETG @BBL A2L;Generic PVA @BBL A2L;Bambu PETG HF @BBL A2L;Bambu PLA Basic @BBL A2L 0.2 nozzle" -} + "type": "machine_model", + "name": "Bambu Lab A2L", + "nozzle_diameter": "0.4;0.2;0.6;0.8", + "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", + "bed_model": "bbl-3dp-H2C.stl", + "bed_texture": "bbl-3dp-logo.svg", + "bottom_texture_rect_longer": "45, -14.5, 240, 8", + "bottom_texture_rect_longer_ignore_list": "High Temp Plate;Textured PEI Plate", + "default_bed_type": "Textured PEI Plate", + "family": "BBL-3DP", + "image_bed_type": "o", + "machine_tech": "FFF", + "model_id": "N9", + "not_support_bed_type": "Cool Plate", + "use_double_extruder_default_texture": "true", + "default_materials": "Bambu PLA Matte @BBL A2L 0.4 nozzle;Bambu PLA Basic @BBL A2L 0.4 nozzle;Bambu PLA Silk @BBL A2L 0.4 nozzle;Bambu Support For PLA/PETG @BBL A2L;Bambu TPU 95A @BBL A2L;Bambu PLA Tough @BBL A2L;Generic PLA @BBL A2L;Generic PLA High Speed @BBL A2L;Generic PETG @BBL A2L;Generic PVA @BBL A2L;Bambu PETG HF @BBL A2L;Bambu PLA Basic @BBL A2L 0.2 nozzle" +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab H2C 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab H2C 0.2 nozzle.json index 1f1f1c4314..dfa0d4fab7 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2C 0.2 nozzle.json @@ -1,38 +1,330 @@ { - "type": "machine", - "name": "Bambu Lab H2C 0.2 nozzle", - "inherits": "Bambu Lab H2C 0.4 nozzle", - "from": "system", - "setting_id": "GM042", - "instantiation": "true", - "nozzle_diameter": [ - "0.2", - "0.2" - ], - "printer_model": "Bambu Lab H2C", - "printer_variant": "0.2", - "default_filament_profile": [ - "Bambu PLA Basic @BBL H2C 0.2 nozzle" - ], - "default_print_profile": "0.10mm Standard @BBL H2C 0.2 nozzle", - "max_layer_height": [ - "0.14", - "0.14" - ], - "min_layer_height": [ - "0.04", - "0.04" - ], - "retraction_length": [ - "0.4", - "0.4", - "0.4", - "0.4" - ], - "upward_compatible_machine": [ - "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab H2D 0.2 nozzle", - "Bambu Lab H2D Pro 0.2 nozzle", - "Bambu Lab A2L 0.2 nozzle" - ] -} + "type": "machine", + "name": "Bambu Lab H2C 0.2 nozzle", + "inherits": "Bambu Lab H2C 0.4 nozzle", + "from": "system", + "setting_id": "GM042", + "instantiation": "true", + "nozzle_diameter": [ + "0.2", + "0.2" + ], + "printer_model": "Bambu Lab H2C", + "printer_variant": "0.2", + "default_filament_profile": [ + "Bambu PLA Basic @BBL H2C 0.2 nozzle" + ], + "default_print_profile": "0.10mm Standard @BBL H2C 0.2 nozzle", + "max_layer_height": [ + "0.14", + "0.14" + ], + "min_layer_height": [ + "0.04", + "0.04" + ], + "retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "upward_compatible_machine": [ + "Bambu Lab H2S 0.2 nozzle", + "Bambu Lab H2D 0.2 nozzle", + "Bambu Lab H2D Pro 0.2 nozzle", + "Bambu Lab A2L 0.2 nozzle" + ], + "deretraction_speed": [ + "30", + "30", + "30", + "30" + ], + "hotend_cooling_rate": [ + "1.6", + "1.6", + "3.4", + "3.4" + ], + "hotend_heating_rate": [ + "3.5", + "3.5", + "13.3", + "13.3" + ], + "long_retractions_when_cut": [ + "1", + "1", + "1", + "1" + ], + "nozzle_flush_dataset": [ + "1", + "2", + "1", + "2" + ], + "retract_before_wipe": [ + "0%", + "0%", + "0%", + "0%" + ], + "retract_length_toolchange": [ + "2", + "2", + "2", + "2" + ], + "retract_restart_extra": [ + "0", + "0", + "0", + "0" + ], + "retract_restart_extra_toolchange": [ + "0", + "0", + "0", + "0" + ], + "retract_when_changing_layer": [ + "1", + "1", + "1", + "1" + ], + "retraction_distances_when_cut": [ + "14", + "14", + "14", + "14" + ], + "retraction_minimum_travel": [ + "1", + "1", + "1", + "1" + ], + "retraction_speed": [ + "30", + "30", + "30", + "30" + ], + "wipe": [ + "1", + "1", + "1", + "1" + ], + "z_hop": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "deretract_speed_extruder_change": [ + "15", + "15", + "15", + "15" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow", + "Direct Drive Standard,Direct Drive High Flow" + ], + "nozzle_volume": [ + "130", + "133", + "145", + "148" + ], + "printer_extruder_id": [ + "1", + "1", + "2", + "2" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "retract_lift_above": [ + "0", + "0", + "0", + "0" + ], + "retract_lift_below": [ + "319", + "319", + "319", + "319" + ], + "wipe_distance": [ + "2", + "2", + "2", + "2" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift", + "Auto Lift", + "Auto Lift" + ], + "machine_max_acceleration_e": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500", + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3", + "3", + "3", + "3", + "3" + ], + "machine_max_speed_z": [ + "30", + "30", + "30", + "30", + "30", + "30", + "30", + "30" + ], + "machine_max_speed_y": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_x": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_e": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50", + "50" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template change_filament_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template change_filament_gcode.json new file mode 100644 index 0000000000..cd7b05a26e --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template change_filament_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2C 0.4 nozzle template change_filament_gcode", + "instantiation": "false", + "change_filament_gcode": ";======== H2C filament_change ========\n;===== 20260413 =====\nM993 A2 B2 C2 ; nozzle cam detection allow status save.\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n{if (filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PETG\")\n || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K0 ;disable E air printing detect\n{else}\nM1015.4 S0 ; disable E air printing detect\n{endif}\n\nM620 S[next_filament_id]A H[next_hotend]\nM1002 gcode_claim_action : 4\nM204 S9000\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\nM106 P2 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\n{if wipe_tower_center_pos_valid}\n M620.14 X[wipe_tower_center_pos_x] Y[wipe_tower_center_pos_y]\n{else}\n M620.14 X95.5 Y336\n{endif}\n\n{if ((filament_type[current_filament_id] == \"PLA\") || (filament_type[current_filament_id] == \"PLA-CF\") || (filament_type[current_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[current_filament_id]/2.4053*60*0.8} L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{endif}\n\n{if ((filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[next_nozzle_id] == 0.2)}\nM620.10 A1 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{else}\nM620.10 A1 F{flush_volumetric_speeds[next_filament_id]/2.4053*60*0.8} L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{endif}\n\n{if long_retraction_when_cut}\nM620.11 P1 I[current_filament_id] B[current_hotend] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 P0 I[current_filament_id] B[current_hotend] E0\n{endif}\n\n\nM620.15 P[filament_pre_cooling_temperature_nc[next_filament_id]]\nM620.15 C{new_filament_temp - filament_cooling_before_tower[next_filament_id]}\nM620.11 O1 T[filament_retract_length_nc]\n\n{if long_retraction_when_ec}\nM620.11 K1 I[current_filament_id] B[current_hotend] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[current_filament_id] B[current_hotend] R0\n{endif}\n\nM620.15 C{new_filament_temp - filament_cooling_before_tower[next_filament_id]}\n\nM628 S1\n{if filament_type[current_filament_id] == \"TPU\"}\nM620.11 S0 L0 I[current_filament_id] B[current_hotend] E-{retraction_distances_when_cut[current_filament_id]} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\n{if (filament_type[current_filament_id] == \"PA\") || (filament_type[current_filament_id] == \"PA-GF\")}\nM620.11 S1 L0 I[current_filament_id] B[current_hotend] R4 D2 E-{retraction_distances_when_cut[current_filament_id]} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 S1 L0 I[current_filament_id] B[current_hotend] R10 D8 E-{retraction_distances_when_cut[current_filament_id]} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{endif}\n{endif}\nM629\n\n{if (filament_type[current_filament_id] == \"TPU\") && (filament_map[current_filament_id] == 2) && (nozzle_volume_types[current_nozzle_id] != \"TPU High Flow\")}\nM620.11 H2 C331\n{else}\nM620.11 H0\n{endif}\n\n{if (nozzle_volume_types[current_nozzle_id] == \"TPU High Flow\") && (filament_map[current_filament_id] == 2) && (filament_map[next_filament_id] == 1)}\n;sw from R2L&TPU kit, travel run a distance for sketch TPU\nG1 X30 Y30 F5000\nM400\nG1 X300 Y30 F5000\nM400\n{endif}\n\nT[next_filament_id] H[next_hotend]\n\n;deretract\n{if filament_type[next_filament_id] == \"TPU\"}\n{else}\n{if (filament_type[next_filament_id] == \"PA\") || (filament_type[next_filament_id] == \"PA-GF\")}\n;VG1 E1 F{max(new_filament_e_feedrate, 200)}\n;VG1 E1 F{max(new_filament_e_feedrate/2, 100)}\n{else}\n;VG1 E4 F{max(new_filament_e_feedrate, 200)}\n;VG1 E4 F{max(new_filament_e_feedrate/2, 100)}\n{endif}\n{endif}\n\n; VFLUSH_START\n\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\n\nSYNC T{ceil(flush_length / 125) * 5}\n\n; compensate for heating and cooling\n{if flush_length > 0}\n{if flush_temperatures[next_filament_id] > new_filament_temp}\nSYNC T{(flush_temperatures[next_filament_id]-(new_filament_temp - filament_cooling_before_tower[next_filament_id]))/hotend_cooling_rate[filament_map[next_filament_id]-1]}\nSYNC T{(flush_temperatures[next_filament_id]-(new_filament_temp - filament_cooling_before_tower[next_filament_id]))/hotend_heating_rate[filament_map[next_filament_id]-1]}\n{else}\nSYNC T{(new_filament_temp - filament_cooling_before_tower[next_filament_id] -flush_temperatures[next_filament_id])/hotend_cooling_rate[filament_map[next_filament_id]-1]}\nSYNC T{(new_filament_temp - filament_cooling_before_tower[next_filament_id] -flush_temperatures[next_filament_id])/hotend_heating_rate[filament_map[next_filament_id]-1]}\n{endif}\n{endif}\n\n; VFLUSH_END\n\nM1002 set_filament_type:{filament_type[next_filament_id]}\n\nM400\nM83\n{if next_filament_id < 255}\n\n\nM620.10 R{new_extruder_retracted_length}\n\n{if (print_sequence == \"by object\" && !has_wipe_tower)}\nM628 S0 F1 L10.0\n; VFLUSH_START\n;VG1 E10 F[new_filament_e_feedrate]\n; VFLUSH_END\n{else}\nM628 S0\n{endif}\n;VM109 S[new_filament_temp]\n\nM629\nM400\n\n;prime_tower_interface\n{if is_prime_tower_interface && filament_tower_interface_purge_volume !=0}\nG150.1\nM620.13 W0 L{filament_tower_interface_purge_volume} T{filament_tower_interface_print_temp} R0.0\n{endif}\n;prime_tower_interface\n\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{new_extruder_retracted_length}\n\n\nM400\n{if wipe_avoid_perimeter}\nG387 Y320 J1 F10000\nG1 X{wipe_avoid_pos_x} F30000\n{endif}\nG387 Y295 J1 F30000\nG387 Y265 J1 F18000\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_filament_id]A\n\nM622.1 S0 ;for prev version, default skip\nM1002 judge_flag powerloss_resume_flag\nM622 J1\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{new_extruder_retracted_length}\nM400\n{if wipe_avoid_perimeter}\nG387 Y320 J1 F10000\nG1 X{wipe_avoid_pos_x} F30000\n{endif}\nG387 Y295 J1 F30000\nG387 Y265 J1 F18000\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\nM1002 set_flag powerloss_resume_flag=0\nM623\n\nM993 A3 B3 C3 ; nozzle cam detection allow status restore.\n\n{if (filament_type[next_filament_id] == \"TPU\")}\nM1015.3 S1;enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PETG\")\n || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 ; disable E air printing detect\n{endif}\n\nM620.6 I[next_filament_id] H[next_hotend] W1 ;enable ams air printing detect\nM620 O{toolchange_count + 1}\nM1002 gcode_claim_action : 0" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template layer_change_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template layer_change_gcode.json new file mode 100644 index 0000000000..696236228e --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template layer_change_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2C 0.4 nozzle template layer_change_gcode", + "instantiation": "false", + "layer_change_gcode": "; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template machine_end_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template machine_end_gcode.json new file mode 100644 index 0000000000..e5e8e71c3c --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template machine_end_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2C 0.4 nozzle template machine_end_gcode", + "instantiation": "false", + "machine_end_gcode": ";===== machine: H2C end =====\n;====== date: 20260729 ======\n\nM1003 S0\nM73 P100 R0\n\nG392 S0 ;turn off nozzle clog detect\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nM211 Z1\nM640.2 R0\n\nG90\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\nM1002 judge_flag timelapse_record_flag\nM622 J1\n G150.3\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S5 ;wait for last picture to be taken\nM623 ;end of \"timelapse_record_flag\"\n\nG90\nG1 Z{max_layer_z + 10} F900 ; lower z a little\n\nG90\nM141 S0 ; turn off chamber heating\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM106 P9 S0 ; turn off ext toodhead cooling fan\n\n; pull back filament to AMS\nM620 S65535\n{if long_retraction_when_cut}\nM620.11 P1 I[current_filament_id] B[current_hotend] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 P0 I[current_filament_id] B[current_hotend] E0\n{endif}\n\n{if long_retraction_when_ec}\nM620.11 K1 I[current_filament_id] B[current_hotend] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[current_filament_id] B[current_hotend] R0\n{endif}\n\nM620.11 P1 I[current_filament_id] B[current_hotend] E-14\nT65535\nG150.2\nM621 S65535\n\nM620 S65279\nT65279\nG150.2\nM621 S65279\n\nG150.3\n\nM104 S0 T0; turn off hotend\nM104 S0 T1; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (100.0 - max_layer_z/2) > 0}\n {if (max_layer_z + 100.0 - max_layer_z/2) < 320}\n G1 Z{max_layer_z + 100.0 - max_layer_z/2} F600\n G1 Z{max_layer_z + 98.0 - max_layer_z/2}\n {else}\n G1 Z320 F600\n G1 Z320\n {endif}\n{else}\n {if (max_layer_z + 4.0) < 320}\n G1 Z{max_layer_z + 4.0} F600\n G1 Z{max_layer_z + 2.0}\n {else}\n G1 Z320 F600\n G1 Z320\n {endif}\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM1015.4 S0 K0 ;disable air printing detect\n\n\n;=====printer finish air purification=========\nM622.1 S0\nM1002 judge_flag print_finish_air_filt_flag\n\nM622 J1\nM1002 gcode_claim_action : 66\nM145 P1\nM106 P6 S255\nM400 S180\nM106 P6 S0\nM623\n\nM622 J2\nM1002 gcode_claim_action : 66\nM145 P0\nM106 P3 S127\nM400 S180\nM106 P3 S0\nM623\n;=====printer finish air purification=========\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L99 C53 D10 M99 E53 F10 N99\nM1006 A57 B10 L99 C57 D10 M99 E57 F10 N99\nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0\nM1006 A53 B10 L99 C53 D10 M99 E53 F10 N99\nM1006 A57 B10 L99 C57 D10 M99 E57 F10 N99\nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0\nM1006 A48 B10 L99 C48 D10 M99 E48 F10 N99\nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0\nM1006 A60 B10 L99 C60 D10 M99 E60 F10 N99\nM1006 W\n;=====printer finish sound=========\nM400\nM18\n\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..5132ccee2e --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2C 0.4 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: H2C =========================\n;===== date: 20260608 =====================\n\n;M1002 set_flag extrude_cali_flag=1\n;M1002 set_flag g29_before_print_flag=1\n;M1002 set_flag auto_cali_toolhead_offset_flag=1\n;M1002 set_flag build_plate_detect_flag=1\n\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\nM400\n;M73 P99\n\nM960 S10 P1 ; ext fan led\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L99 C53 D9 M99 E53 F9 N99\nM1006 A56 B9 L99 C56 D9 M99 E56 F9 N99\nM1006 A61 B9 L99 C61 D9 M99 E61 F9 N99\nM1006 A53 B9 L99 C53 D9 M99 E53 F9 N99\nM1006 A56 B9 L99 C56 D9 M99 E56 F9 N99\nM1006 A61 B18 L99 C61 D18 M99 E61 F18 N99\nM1006 W\n;=====printer start sound ===================\n\n;===== reset machine status =================\nM204 S10000\nM630 S0 P0\n\nG90\nM17 D ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM1002 set_gcode_claim_speed_level 5 ;Reset speed level\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nG29.1 Z{+0.0} ; clear z-trim value first\nM983.1 M1\nM901 D4\nM481 S0 ; turn off cutter pos comp\nG28.140 D0; reset pre-extrude z pos\n;===== reset machine status =================\n\nM620 M ;enable remap\nM620 N ;enable hotend remap\nM620 T0 ;print tmpr\nM620 T1 ;sn -> pos\nM620 T2 ;filament_id\n\n;===== start to heat heatbed & hotend==========\n\n M104 O-80 A\n M140 D[bed_temperature_initial_layer_single]\n\n;===== start to heat heatbead & hotend==========\n\n;===== avoid end stop =================\nG91\nG380 S2 Z42 F1200\nG380 S2 Z-12 F1200\nG90\n;===== avoid end stop =================\n\n;==== set airduct mode ====\n\n{if (overall_chamber_temperature >= 40)}\n\n M145 P1 ; set airduct mode to heating mode for heating\n M106 P2 S0 ; turn off auxiliary fan\n M106 P3 S0 ; turn off chamber fan\n\n{else}\n M145 P0 ; set airduct mode to cooling mode for cooling\n M106 P2 S178 ; turn on auxiliary fan for cooling\n M106 P3 S127 ; turn on chamber fan for cooling\n\n M1002 gcode_claim_action : 29\n M191 S0 ; wait for chamber temp\n M106 P2 S0 ; turn off auxiliary fan\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2)}\n M142 P1 R30 S35 T40 U0.3 V0.5 W0.8 O40 ; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 T45 U0.3 V0.5 W0.8 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n {if (!is_all_bbl_filament)}\n M142 P1 R35 S40 T45 U0.3 V0.5 W0.8 O45 L1 ; set third-party PETG chamber autocooling\n {else}\n {if (nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2)}\n M142 P1 R35 S45 T50 U0.3 V0.5 W0.8 O50 L1 ; set PETG ND0.2 chamber autocooling\n {else}\n M142 P1 R35 S50 T55 U0.3 V0.5 W0.8 O55 L1 ; set PETG ND0.4 chamber autocooling\n {endif}\n {endif}\n {endif}\n{if(cooling_filter_enabled)}\nM145.2 P0 F0\n{else}\nM145.2 P0 F1\n{endif}\n{endif}\n;==== set airduct mode ====\n\n\n;====== cog noise reduction=================\nM982.2 S1 ; turn on cog noise reduction\n\n;===== first homing start =====\nM1002 gcode_claim_action : 13\n\nM640 S\nM640.1 R\nM641\nG28 X T300\nT1000\n\nG150.3\nM972 S24 P0 T2000 ; live-view camera foolproof\nM972 S46 P0 T5000 ; vortek anti-collision\nM640.1 S\nM640.4\n{if (first_non_support_filaments[0] != -1)}\nM640 S\nM640.8 T A{first_non_support_filaments[0]} H{first_non_support_hotend[0]}\nM640.7 L\nM641\n{endif}\n\n\n{if wipe_tower_center_pos_valid}\n M620.14 X[wipe_tower_center_pos_x] Y[wipe_tower_center_pos_y]\n{else}\n M620.14 X95.5 Y336\n{endif}\n\n\nG150.1 F18000 ; wipe mouth to avoid filament stick to heatbed\nG150.3 F18000\nM400 P200\n\nM1002 gcode_claim_action : 74 ; Heatbed surface foreign object detection\nM104 S0\n{if curr_bed_type==\"Textured PEI Plate\"}\nM972 S26 P0 C0\n{else}\nM972 S36 P0 C0 X1\n{endif}\nM972 S35 P0 C0\n\nM972 S41 P0 T5000 ; trash can anti-collision\n\nM1009 Q1 L1\nG91\nG380 S2 Z30 F1200 ; lower heatbed to move toolhead\nG90\nG1 X175 Y160 F30000\nG28 Z P0 T250\nM1009 Q1 L0\n\n\n;===== first homing end =====\n\n;===== detection start =====\n\nM1002 judge_flag build_plate_detect_flag\nM104 S0\nM622 S1\n ;M1002 gcode_claim_action : 11 ; Indentifying build plate type\n M972 S19 P0 C0 ; heatbed presence detection\n M972 S31 P0 T5000 ; toolhead camera dirty detection\n ;M1002 gcode_claim_action : 73 ; Build plate alignment detection\n M972 S34 P0 T5000 ; heatbed plate offset detection\nM623\n\nM1002 gcode_claim_action : 72 ; Hotend Type Detection\nT1001\nM972 S14 P0 T5000 ; nozzle type detection\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]} T{filament_map[initial_no_support_filament_id] % 2} ; rise temp in advance\n\nG151 P{filament_map[initial_no_support_filament_id] % 2} M ; plug the heat nozzle\n\n{if max_print_z >= 145}\nM1002 gcode_claim_action : 75 ; Heatbed underside foreign object detection\nG3811 Z{max_print_z} ; Detect obstacles at the bottom of the heated bed\n{endif}\n\n;===== detection end =====\n\nM400\n;M73 P99\n\n;===== prepare print temperature and material ==========\nM400\nM211 X0 Y0 Z0 ;turn off soft endstop\nM975 S1 ; turn on input shaping\n\nG29.2 S0 ; avoid invalid abl data\n\n{if ((filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60*0.8} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60*0.8} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{endif}\n\nM620.11 P1 I[initial_no_support_filament_id] B[initial_no_support_hotend] E0\n\n{if long_retraction_when_ec }\nM620.11 K1 I[initial_no_support_filament_id] B[initial_no_support_hotend] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[initial_no_support_filament_id] B[initial_no_support_hotend] R0\n{endif}\n\nM628 S1\n{if filament_type[initial_no_support_filament_id] == \"TPU\"}\n M620.11 S0 L0 I[initial_no_support_filament_id] B[initial_no_support_hotend] E-{retraction_distances_when_cut[initial_no_support_filament_id]} F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60}\n{else}\n{if (filament_type[initial_no_support_filament_id] == \"PA\") || (filament_type[initial_no_support_filament_id] == \"PA-GF\")}\n M620.11 S1 L0 I[initial_no_support_filament_id] B[initial_no_support_hotend] R4 D2 E-{retraction_distances_when_cut[initial_no_support_filament_id]} F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60}\n{else}\n M620.11 S1 L0 I[initial_no_support_filament_id] B[initial_no_support_hotend] R10 D8 E-{retraction_distances_when_cut[initial_no_support_filament_id]} F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60}\n{endif}\n{endif}\nM629\n\nM620 S[initial_no_support_filament_id]A H[initial_no_support_hotend] ; switch material if AMS exist\nM1002 gcode_claim_action : 4\nM1002 set_filament_type:UNKNOWN\nM400\nT[initial_no_support_filament_id] H[initial_no_support_hotend]\nM400\nM628 S0\nM629\nM400\nM1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\nM621 S[initial_no_support_filament_id]A\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\nM400\nM106 P1 S0\n\nG91\nG1 Y-16 F60000\nG90\n\nG29.2 S1\n;===== prepare print temperature and material ==========\n\n\nM400\n;M73 P99\n\n;===== xy ofst cali start =====\n\nM1002 judge_flag auto_cali_toolhead_offset_flag\n\nM622 J2\n M1002 gcode_claim_action : 54\n M190 D[bed_temperature_initial_layer_single]\n\n M1002 gcode_claim_action : 39\n M620 D[initial_no_support_hotend]\n G383.3 U140 L{initial_no_support_filament_id}\nM623\n\nM622 J1\n M1002 gcode_claim_action : 54\n M190 D[bed_temperature_initial_layer_single]\n\n M1002 gcode_claim_action : 39\n M620 D[initial_no_support_hotend]\n G383 O2 U140 L{initial_no_support_filament_id}\nM623\n\n;===== xy ofst cali end =====\n\n;===== start to heat heatbed & hotend==========\n\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n G150.3\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n M140 S[bed_temperature_initial_layer_single]\n\n ;===== set chamber temperature ==========\n {if (overall_chamber_temperature >= 40)}\n M145 P1 ; set airduct mode to heating mode\n M141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n {endif}\n ;===== set chamber temperature ==========\n\n;===== start to heat heatbead & hotend==========\n\n\n\nM400\n;M73 P99\n\n;===== auto extrude cali start =========================\nM975 S1\nM1002 judge_flag extrude_cali_flag\n\nM622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\nM623\n\nM622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\nM623\n\nM622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\nM623\n\n;===== auto extrude cali end =========================\n\n{if filament_type[initial_no_support_filament_id] == \"TPU\"}\n G150.2\n G150.1\n G150.2\n G150.1\n G150.2\n G150.1\n{else}\n G150.3\n M106 P1 S0\n M400 S2\n M109 S{nozzle_temperature[initial_no_support_filament_id]} ; wait tmpr to extrude\n M83\n {if(nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.8)}\n G1 E60 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n {else}\n G1 E45 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n {endif}\n G1 E-3 F1800\n M400 P500\n G150.2\n G150.1\n{endif}\n\nG91\nG1 Y-16 F12000 ; move away from the trash bin\nG90\n\nM400\n;M73 P99\n\n;===== wipe right nozzle start =====\n\nM1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n {if (overall_chamber_temperature >= 40)}\n G150 T{nozzle_temperature_initial_layer[initial_no_support_filament_id] - 80}\n {endif}\nM106 S255 ; turn on fan to cool the nozzle\n\n;===== wipe left nozzle end =====\n\nM400\n;M73 P99\n\nM1002 judge_flag auto_cali_toolhead_offset_flag\nM622 J0\n G91\n G1 Z5 F1200\n G90\n M1012.7\n G383.7 U140 J0\nM623\n\n{if (overall_chamber_temperature >= 40)}\n M1002 gcode_claim_action : 49\n M191 S[overall_chamber_temperature] ; wait for chamber temp\n{endif}\n\nM400\n;M73 P99\n\n;===== bed leveling ==================================\n\nM1002 judge_flag g29_before_print_flag\n\nM190 S[bed_temperature_initial_layer_single]; ensure bed temp\nM109 S140 A\nM106 S0 ; turn off fan , too noisy\n\nG91\nG1 Z10 F1200\n{if (first_non_support_filaments[0] != -1) && filament_type[initial_no_support_filament_id] != \"TPU\"}\nM640 S\nM640.7 U\nM640.7 L\nM640.2 R1\nM641\n{endif}\nG90\nG1 X175 Y160 F30000\n\nM622 J1\n M1002 gcode_claim_action : 1\n G29.20 A3\n G29 A1 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n M400\nM623\n\nM622 J2\n M1002 gcode_claim_action : 1\n {if has_tpu_in_first_layer}\n G29.20 A3\n G29 A1 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {else}\n G29.20 A4\n G29 A2 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {endif}\n M400\nM623\n\nM622 J0\n G28 R\nM623\n\n;===== bed leveling end ================================\n\nG39.1 ; cali nozzle wrapped detection pos\n\nG90\nG1 Z5 F1200\nG1 X270 Y-0.5 F60000\nG28.140 S0 ; cali pre-extrude z pos\n\n;============switch again==================\nM211 X0 Y0 Z0 ;turn off soft endstop\nG91\nG1 Z6 F1200\nG90\nM1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\nM620 S[initial_no_support_filament_id]A H[initial_no_support_hotend]\nM400\nT[initial_no_support_filament_id] H[initial_no_support_hotend]\nM400\nM628 S0\nM629\nM400\nM621 S[initial_no_support_filament_id]A\n\n;============switch again==================\n\nM400\n;M73 P99\n\nM141 S[overall_chamber_temperature]\n\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n\n G90\n G1 Z5 F1200\n G1 X165 Y160 F20000\n M400 P200\n\n M970.3 Q1 A5 K0 O1\n M974 Q1 S2 P0\n\n M970.3 Q0 A5 K0 O1\n M974 Q0 S2 P0\n\n M970.2 Q2 K0 W38 Z0.01\n M974 Q2 S2 P0\n\n M975 S1\n;===== mech mode sweep end =====\n\n;===== wait temperature reaching the reference value =======\n\nM140 S[bed_temperature_initial_layer_single]\nM190 S[bed_temperature_initial_layer_single]\n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off fan\n M106 P2 S0 ; turn off big fan\n ;==== set ext toodhead cooling fan ====\n {if (min_vitrification_temperature <= 50)}\n M106 P9 S255\n {endif}\n ;============set motor current==================\n M400 S1\n\n;===== wait temperature reaching the reference value =======\n\nM400\n;M73 P99\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if curr_bed_type==\"Textured PEI Plate\"}\n {if nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2}\n G29.1 Z{-0.01} ; for Textured PEI Plate\n {else}\n G29.1 Z{-0.02} ; for Textured PEI Plate\n {endif}\n {else}\n {if nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2}\n G29.1 Z{0.01}\n {endif}\n {endif}\nG150.1\n\nM975 S1 ; turn on mech mode supression\nM983.4 S1 ; turn on deformation compensation\nG29.2 S1 ; turn on pos comp\nG29.7 S1\n\nG90\nG1 Z5 F1200\nG1 Y295 F30000\nG1 Y265 F18000\n\n;===== nozzle load line ===============================\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n G1 Z5 F1200\n G1 X270 Y-0.5 F60000\n G28.14 R0\n G29.2 S0\n G91\n G1 Z0.8 F1200\n G90\n G1 X250 F60000\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n\n ========== record data ==========\n M1026\n M1012.8\n M1012.9\n G29.9\n ========== record data ==========\n\n M400 P50\n M500 D1\n M400 S3\n M109 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n M83\n{if nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.8}\n G1 E5 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n{endif}\n{if (filament_type[initial_no_support_filament_id] == \"TPU\")}\n G1 E5 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n{endif}\n G1 E5 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n G1 X290 E10 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n G91\n G3 Z0.4 I1.217 J0 P1 F60000\n G90\n M83\n G29.2 S1 ; ensure z comp turn on\n;===== noozle load line end ===========================\n\nM400\n;M73 P99\n\nM993 A1 B1 C1 ; nozzle cam detection allowed.\n\n{if (filament_type[initial_no_support_filament_id] == \"TPU\")}\nM1015.3 S1;enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PETG\")\n || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;disable E air printing detect\n{endif}\n\nM620.6 I[initial_no_support_filament_id] H[initial_no_support_hotend] W1 ;enable ams air printing detect\nM620 O1\n\nM211 Z1\nG29.99\nM1002 gcode_claim_action : 0\nM400\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template time_lapse_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template time_lapse_gcode.json new file mode 100644 index 0000000000..927c2fde97 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template time_lapse_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2C 0.4 nozzle template time_lapse_gcode", + "instantiation": "false", + "time_lapse_gcode": ";===== machine: H2C timelapse =====\n;======== date: 20260731 ========\n\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\n\nM1002 judge_flag timelapse_record_flag\nM622 J1\n {if !spiral_mode && !timelapse_inline_photo}\n M993 A2 B2 C2\n M993 A0 B0 C0\n {endif}\n\n {if !spiral_mode && !(has_timelapse_safe_pos) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n M83\n G1 Z{max_layer_z + 0.4} F1200\n M400\n {endif}\n {endif}\n\n {if timelapse_inline_photo}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {elsif has_timelapse_safe_pos && !spiral_mode}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} U{timelapse_pos_x} V{timelapse_pos_y} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {else}\n {if spiral_mode}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {else}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {endif}\n {endif}\n\n {if !spiral_mode && !(has_timelapse_safe_pos) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n G90\n G1 Z{max_layer_z + 3.0} F1200\n G1 Y295 F30000\n G1 Y265 F18000\n M83\n {endif}\n {endif}\n \n {if !spiral_mode && !timelapse_inline_photo}\n M993 A3 B3 C3\n {endif}\nM623\n; SKIPPABLE_END\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template wrapping_detection_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template wrapping_detection_gcode.json new file mode 100644 index 0000000000..4183c059cd --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle template wrapping_detection_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2C 0.4 nozzle template wrapping_detection_gcode", + "instantiation": "false", + "wrapping_detection_gcode": ";===== machine: H2C =========================\n;===== date: 20251104 =====================\n\n{if !spiral_mode}\n {if layer_num == 3 || layer_num == 10 || layer_num == 19}\n M993 A2 B2 C2 ; nozzle cam detection allow status save.\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n M400 P100\n\n G39\n\n G90\n G1 Y295 F30000\n G1 Y265 F18000\n \n M993 A3 B3 C3 ; nozzle cam detection allow status restore.\n {endif}\n{endif}\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle.json index 867e419c60..95b7be94be 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2C 0.4 nozzle.json @@ -10,12 +10,26 @@ "0.4" ], "printer_model": "Bambu Lab H2C", - "printer_variant": "0.4", "farthest_point_timelapse": "1", + "printer_variant": "0.4", "default_filament_profile": [ "Bambu PLA Basic @BBL H2C" ], "default_print_profile": "0.20mm Standard @BBL H2C", + "deretraction_speed": [ + "30", + "30", + "30", + "30", + "30" + ], + "deretract_speed_extruder_change": [ + "15", + "15", + "15", + "15", + "15" + ], "enable_long_retraction_when_cut": [ "2" ], @@ -23,6 +37,7 @@ "extruder_clearance_height_to_lid": "201", "extruder_clearance_height_to_rod": "47.4", "extruder_clearance_max_radius": "96", + "extruder_height_gap": "5", "extruder_printable_area": [ "0x0,325x0,325x320,0x320", "25x0,330x0,330x320,25x320" @@ -31,26 +46,174 @@ "1", "6" ], + "extruder_clearance_dist_to_rod": "50", + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow,Direct Drive E3D High Flow", + "Direct Drive Standard,Direct Drive High Flow" + ], "fan_direction": "left", "hotend_cooling_rate": [ + "1.6", "1.6", "1.6", "3.4", "3.4" ], "hotend_heating_rate": [ + "3.5", "3.5", "3.5", "13.3", "13.3" ], + "include": [ + "Bambu Lab H2C 0.4 nozzle template machine_start_gcode", + "Bambu Lab H2C 0.4 nozzle template machine_end_gcode", + "Bambu Lab H2C 0.4 nozzle template time_lapse_gcode", + "Bambu Lab H2C 0.4 nozzle template wrapping_detection_gcode", + "Bambu Lab H2C 0.4 nozzle template change_filament_gcode", + "Bambu Lab H2C 0.4 nozzle template layer_change_gcode" + ], "long_retractions_when_cut": [ "1", "1", "1", + "1", "1" ], "machine_load_filament_time": "15", + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3", + "3", + "3", + "3", + "3", + "3", + "3" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500", + "500", + "500", + "500", + "500", + "500", + "500" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_e": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], "machine_max_speed_x": [ "1000", "1000", @@ -59,6 +222,8 @@ "1000", "1000", "1000", + "1000", + "1000", "1000" ], "machine_max_speed_y": [ @@ -69,6 +234,8 @@ "1000", "1000", "1000", + "1000", + "1000", "1000" ], "machine_max_speed_z": [ @@ -79,9 +246,12 @@ "30", "30", "30", + "30", + "30", "30" ], "machine_unload_filament_time": "15", + "master_extruder_id": "2", "machine_max_speed_e": [ "50", "50", @@ -90,12 +260,21 @@ "50", "50", "50", + "50", + "50", "50" ], - "master_extruder_id": "2", + "nozzle_flush_dataset": [ + "1", + "2", + "2", + "1", + "2" + ], "nozzle_volume": [ "130", "133", + "133", "145", "148" ], @@ -105,35 +284,142 @@ "330x320", "0x320" ], + "printer_extruder_id": [ + "1", + "1", + "1", + "2", + "2" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive E3D High Flow", + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "retract_before_wipe": [ + "0%", + "0%", + "0%", + "0%", + "0%" + ], + "retract_length_toolchange": [ + "2", + "2", + "2", + "2", + "2" + ], + "retract_lift_above": [ + "0", + "0", + "0", + "0", + "0" + ], "retract_lift_below": [ "319", "319", "319", + "319", "319" ], "retraction_distances_when_cut": [ "14", "14", "14", + "14", "14" ], + "retraction_length": [ + "0.8", + "0.8", + "0.8", + "0.8", + "0.8" + ], + "retraction_minimum_travel": [ + "1", + "1", + "1", + "1", + "1" + ], + "retraction_speed": [ + "30", + "30", + "30", + "30", + "30" + ], + "retract_restart_extra": [ + "0", + "0", + "0", + "0", + "0" + ], + "retract_restart_extra_toolchange": [ + "0", + "0", + "0", + "0", + "0" + ], + "retract_when_changing_layer": [ + "1", + "1", + "1", + "1", + "1" + ], "support_chamber_temp_control": "1", "support_cooling_filter": "1", + "support_object_skip_flush": "0", + "unprintable_filament_types": [ + "TPU", + "PPS-CF,PPA-CF" + ], + "wipe": [ + "1", + "1", + "1", + "1", + "1" + ], + "wipe_distance": [ + "2", + "2", + "2", + "2", + "2" + ], "wrapping_exclude_area": [ "145x310", "251x310", "251x326", "145x326" ], + "z_hop": [ + "0.4", + "0.4", + "0.4", + "0.4", + "0.4" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift", + "Auto Lift", + "Auto Lift", + "Auto Lift" + ], "upward_compatible_machine": [ "Bambu Lab H2S 0.4 nozzle", "Bambu Lab H2D 0.4 nozzle", "Bambu Lab H2D Pro 0.4 nozzle", "Bambu Lab A2L 0.4 nozzle" - ], - "machine_start_gcode": ";===== machine: H2C =========================\n;===== date: 20260608 =====================\n\n;M1002 set_flag extrude_cali_flag=1\n;M1002 set_flag g29_before_print_flag=1\n;M1002 set_flag auto_cali_toolhead_offset_flag=1\n;M1002 set_flag build_plate_detect_flag=1\n\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\nM400\n;M73 P99\n\nM960 S10 P1 ; ext fan led\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L99 C53 D9 M99 E53 F9 N99\nM1006 A56 B9 L99 C56 D9 M99 E56 F9 N99\nM1006 A61 B9 L99 C61 D9 M99 E61 F9 N99\nM1006 A53 B9 L99 C53 D9 M99 E53 F9 N99\nM1006 A56 B9 L99 C56 D9 M99 E56 F9 N99\nM1006 A61 B18 L99 C61 D18 M99 E61 F18 N99\nM1006 W\n;=====printer start sound ===================\n\n;===== reset machine status =================\nM204 S10000\nM630 S0 P0\n\nG90\nM17 D ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM1002 set_gcode_claim_speed_level 5 ;Reset speed level\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nG29.1 Z{+0.0} ; clear z-trim value first\nM983.1 M1\nM901 D4\nM481 S0 ; turn off cutter pos comp\nG28.140 D0; reset pre-extrude z pos\n;===== reset machine status =================\n\nM620 M ;enable remap\nM620 N ;enable hotend remap\nM620 T0 ;print tmpr\nM620 T1 ;sn -> pos\nM620 T2 ;filament_id\n\n;===== start to heat heatbed & hotend==========\n\n M104 O-80 A\n M140 D[bed_temperature_initial_layer_single]\n\n;===== start to heat heatbead & hotend==========\n\n;===== avoid end stop =================\nG91\nG380 S2 Z42 F1200\nG380 S2 Z-12 F1200\nG90\n;===== avoid end stop =================\n\n;==== set airduct mode ====\n\n{if (overall_chamber_temperature >= 40)}\n\n M145 P1 ; set airduct mode to heating mode for heating\n M106 P2 S0 ; turn off auxiliary fan\n M106 P3 S0 ; turn off chamber fan\n\n{else}\n M145 P0 ; set airduct mode to cooling mode for cooling\n M106 P2 S178 ; turn on auxiliary fan for cooling\n M106 P3 S127 ; turn on chamber fan for cooling\n\n M1002 gcode_claim_action : 29\n M191 S0 ; wait for chamber temp\n M106 P2 S0 ; turn off auxiliary fan\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2)}\n M142 P1 R30 S35 T40 U0.3 V0.5 W0.8 O40 ; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 T45 U0.3 V0.5 W0.8 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n {if (!is_all_bbl_filament)}\n M142 P1 R35 S40 T45 U0.3 V0.5 W0.8 O45 L1 ; set third-party PETG chamber autocooling\n {else}\n {if (nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2)}\n M142 P1 R35 S45 T50 U0.3 V0.5 W0.8 O50 L1 ; set PETG ND0.2 chamber autocooling\n {else}\n M142 P1 R35 S50 T55 U0.3 V0.5 W0.8 O55 L1 ; set PETG ND0.4 chamber autocooling\n {endif}\n {endif}\n {endif}\n{if(cooling_filter_enabled)}\nM145.2 P0 F0\n{else}\nM145.2 P0 F1\n{endif}\n{endif}\n;==== set airduct mode ====\n\n\n;====== cog noise reduction=================\nM982.2 S1 ; turn on cog noise reduction\n\n;===== first homing start =====\nM1002 gcode_claim_action : 13\n\nM640 S\nM640.1 R\nM641\nG28 X T300\nT1000\n\nG150.3\nM972 S24 P0 T2000 ; live-view camera foolproof\nM972 S46 P0 T5000 ; vortek anti-collision\nM640.1 S\nM640.4\n{if (first_non_support_filaments[0] != -1)}\nM640 S\nM640.8 T A{first_non_support_filaments[0]} H{first_non_support_hotend[0]}\nM640.7 L\nM641\n{endif}\n\n\n{if wipe_tower_center_pos_valid}\n M620.14 X[wipe_tower_center_pos_x] Y[wipe_tower_center_pos_y]\n{else}\n M620.14 X95.5 Y336\n{endif}\n\n\nG150.1 F18000 ; wipe mouth to avoid filament stick to heatbed\nG150.3 F18000\nM400 P200\n\nM1002 gcode_claim_action : 74 ; Heatbed surface foreign object detection\nM104 S0\n{if curr_bed_type==\"Textured PEI Plate\"}\nM972 S26 P0 C0\n{else}\nM972 S36 P0 C0 X1\n{endif}\nM972 S35 P0 C0\n\nM972 S41 P0 T5000 ; trash can anti-collision\n\nM1009 Q1 L1\nG91\nG380 S2 Z30 F1200 ; lower heatbed to move toolhead\nG90\nG1 X175 Y160 F30000\nG28 Z P0 T250\nM1009 Q1 L0\n\n\n;===== first homing end =====\n\n;===== detection start =====\n\nM1002 judge_flag build_plate_detect_flag\nM104 S0\nM622 S1\n ;M1002 gcode_claim_action : 11 ; Indentifying build plate type\n M972 S19 P0 C0 ; heatbed presence detection\n M972 S31 P0 T5000 ; toolhead camera dirty detection\n ;M1002 gcode_claim_action : 73 ; Build plate alignment detection\n M972 S34 P0 T5000 ; heatbed plate offset detection\nM623\n\nM1002 gcode_claim_action : 72 ; Hotend Type Detection\nT1001\nM972 S14 P0 T5000 ; nozzle type detection\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]} T{filament_map[initial_no_support_filament_id] % 2} ; rise temp in advance\n\nG151 P{filament_map[initial_no_support_filament_id] % 2} M ; plug the heat nozzle\n\n{if max_print_z >= 145}\nM1002 gcode_claim_action : 75 ; Heatbed underside foreign object detection\nG3811 Z{max_print_z} ; Detect obstacles at the bottom of the heated bed\n{endif}\n\n;===== detection end =====\n\nM400\n;M73 P99\n\n;===== prepare print temperature and material ==========\nM400\nM211 X0 Y0 Z0 ;turn off soft endstop\nM975 S1 ; turn on input shaping\n\nG29.2 S0 ; avoid invalid abl data\n\n{if ((filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60*0.8} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60*0.8} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{endif}\n\nM620.11 P1 I[initial_no_support_filament_id] B[initial_no_support_hotend] E0\n\n{if long_retraction_when_ec }\nM620.11 K1 I[initial_no_support_filament_id] B[initial_no_support_hotend] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[initial_no_support_filament_id] B[initial_no_support_hotend] R0\n{endif}\n\nM628 S1\n{if filament_type[initial_no_support_filament_id] == \"TPU\"}\n M620.11 S0 L0 I[initial_no_support_filament_id] B[initial_no_support_hotend] E-{retraction_distances_when_cut[initial_no_support_filament_id]} F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60}\n{else}\n{if (filament_type[initial_no_support_filament_id] == \"PA\") || (filament_type[initial_no_support_filament_id] == \"PA-GF\")}\n M620.11 S1 L0 I[initial_no_support_filament_id] B[initial_no_support_hotend] R4 D2 E-{retraction_distances_when_cut[initial_no_support_filament_id]} F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60}\n{else}\n M620.11 S1 L0 I[initial_no_support_filament_id] B[initial_no_support_hotend] R10 D8 E-{retraction_distances_when_cut[initial_no_support_filament_id]} F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60}\n{endif}\n{endif}\nM629\n\nM620 S[initial_no_support_filament_id]A H[initial_no_support_hotend] ; switch material if AMS exist\nM1002 gcode_claim_action : 4\nM1002 set_filament_type:UNKNOWN\nM400\nT[initial_no_support_filament_id] H[initial_no_support_hotend]\nM400\nM628 S0\nM629\nM400\nM1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\nM621 S[initial_no_support_filament_id]A\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\nM400\nM106 P1 S0\n\nG91\nG1 Y-16 F60000\nG90\n\nG29.2 S1\n;===== prepare print temperature and material ==========\n\n\nM400\n;M73 P99\n\n;===== xy ofst cali start =====\n\nM1002 judge_flag auto_cali_toolhead_offset_flag\n\nM622 J2\n M1002 gcode_claim_action : 54\n M190 D[bed_temperature_initial_layer_single]\n\n M1002 gcode_claim_action : 39\n M620 D[initial_no_support_hotend]\n G383.3 U140 L{initial_no_support_filament_id}\nM623\n\nM622 J1\n M1002 gcode_claim_action : 54\n M190 D[bed_temperature_initial_layer_single]\n\n M1002 gcode_claim_action : 39\n M620 D[initial_no_support_hotend]\n G383 O2 U140 L{initial_no_support_filament_id}\nM623\n\n;===== xy ofst cali end =====\n\n;===== start to heat heatbed & hotend==========\n\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n G150.3\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n M140 S[bed_temperature_initial_layer_single]\n\n ;===== set chamber temperature ==========\n {if (overall_chamber_temperature >= 40)}\n M145 P1 ; set airduct mode to heating mode\n M141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n {endif}\n ;===== set chamber temperature ==========\n\n;===== start to heat heatbead & hotend==========\n\n\n\nM400\n;M73 P99\n\n;===== auto extrude cali start =========================\nM975 S1\nM1002 judge_flag extrude_cali_flag\n\nM622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\nM623\n\nM622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\nM623\n\nM622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\nM623\n\n;===== auto extrude cali end =========================\n\n{if filament_type[initial_no_support_filament_id] == \"TPU\"}\n G150.2\n G150.1\n G150.2\n G150.1\n G150.2\n G150.1\n{else}\n G150.3\n M106 P1 S0\n M400 S2\n M109 S{nozzle_temperature[initial_no_support_filament_id]} ; wait tmpr to extrude\n M83\n {if(nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.8)}\n G1 E60 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n {else}\n G1 E45 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n {endif}\n G1 E-3 F1800\n M400 P500\n G150.2\n G150.1\n{endif}\n\nG91\nG1 Y-16 F12000 ; move away from the trash bin\nG90\n\nM400\n;M73 P99\n\n;===== wipe right nozzle start =====\n\nM1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n {if (overall_chamber_temperature >= 40)}\n G150 T{nozzle_temperature_initial_layer[initial_no_support_filament_id] - 80}\n {endif}\nM106 S255 ; turn on fan to cool the nozzle\n\n;===== wipe left nozzle end =====\n\nM400\n;M73 P99\n\nM1002 judge_flag auto_cali_toolhead_offset_flag\nM622 J0\n G91\n G1 Z5 F1200\n G90\n M1012.7\n G383.7 U140 J0\nM623\n\n{if (overall_chamber_temperature >= 40)}\n M1002 gcode_claim_action : 49\n M191 S[overall_chamber_temperature] ; wait for chamber temp\n{endif}\n\nM400\n;M73 P99\n\n;===== bed leveling ==================================\n\nM1002 judge_flag g29_before_print_flag\n\nM190 S[bed_temperature_initial_layer_single]; ensure bed temp\nM109 S140 A\nM106 S0 ; turn off fan , too noisy\n\nG91\nG1 Z10 F1200\n{if (first_non_support_filaments[0] != -1) && filament_type[initial_no_support_filament_id] != \"TPU\"}\nM640 S\nM640.7 U\nM640.7 L\nM640.2 R1\nM641\n{endif}\nG90\nG1 X175 Y160 F30000\n\nM622 J1\n M1002 gcode_claim_action : 1\n G29.20 A3\n G29 A1 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n M400\nM623\n\nM622 J2\n M1002 gcode_claim_action : 1\n {if has_tpu_in_first_layer}\n G29.20 A3\n G29 A1 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {else}\n G29.20 A4\n G29 A2 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {endif}\n M400\nM623\n\nM622 J0\n G28 R\nM623\n\n;===== bed leveling end ================================\n\nG39.1 ; cali nozzle wrapped detection pos\n\nG90\nG1 Z5 F1200\nG1 X270 Y-0.5 F60000\nG28.140 S0 ; cali pre-extrude z pos\n\n;============switch again==================\nM211 X0 Y0 Z0 ;turn off soft endstop\nG91\nG1 Z6 F1200\nG90\nM1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\nM620 S[initial_no_support_filament_id]A H[initial_no_support_hotend]\nM400\nT[initial_no_support_filament_id] H[initial_no_support_hotend]\nM400\nM628 S0\nM629\nM400\nM621 S[initial_no_support_filament_id]A\n\n;============switch again==================\n\nM400\n;M73 P99\n\nM141 S[overall_chamber_temperature]\n\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n\n G90\n G1 Z5 F1200\n G1 X165 Y160 F20000\n M400 P200\n\n M970.3 Q1 A5 K0 O1\n M974 Q1 S2 P0\n\n M970.3 Q0 A5 K0 O1\n M974 Q0 S2 P0\n\n M970.2 Q2 K0 W38 Z0.01\n M974 Q2 S2 P0\n\n M975 S1\n;===== mech mode sweep end =====\n\n;===== wait temperature reaching the reference value =======\n\nM140 S[bed_temperature_initial_layer_single]\nM190 S[bed_temperature_initial_layer_single]\n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off fan\n M106 P2 S0 ; turn off big fan\n ;==== set ext toodhead cooling fan ====\n {if (min_vitrification_temperature <= 50)}\n M106 P9 S255\n {endif}\n ;============set motor current==================\n M400 S1\n\n;===== wait temperature reaching the reference value =======\n\nM400\n;M73 P99\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if curr_bed_type==\"Textured PEI Plate\"}\n {if nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2}\n G29.1 Z{-0.01} ; for Textured PEI Plate\n {else}\n G29.1 Z{-0.02} ; for Textured PEI Plate\n {endif}\n {else}\n {if nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2}\n G29.1 Z{0.01}\n {endif}\n {endif}\nG150.1\n\nM975 S1 ; turn on mech mode supression\nM983.4 S1 ; turn on deformation compensation\nG29.2 S1 ; turn on pos comp\nG29.7 S1\n\nG90\nG1 Z5 F1200\nG1 Y295 F30000\nG1 Y265 F18000\n\n;===== nozzle load line ===============================\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n G1 Z5 F1200\n G1 X270 Y-0.5 F60000\n G28.14 R0\n G29.2 S0\n G91\n G1 Z0.8 F1200\n G90\n G1 X250 F60000\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n\n ========== record data ==========\n M1026\n M1012.8\n M1012.9\n G29.9\n ========== record data ==========\n\n M400 P50\n M500 D1\n M400 S3\n M109 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n M83\n{if nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.8}\n G1 E5 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n{endif}\n{if (filament_type[initial_no_support_filament_id] == \"TPU\")}\n G1 E5 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n{endif}\n G1 E5 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n G1 X290 E10 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n G91\n G3 Z0.4 I1.217 J0 P1 F60000\n G90\n M83\n G29.2 S1 ; ensure z comp turn on\n;===== noozle load line end ===========================\n\nM400\n;M73 P99\n\nM993 A1 B1 C1 ; nozzle cam detection allowed.\n\n{if (filament_type[initial_no_support_filament_id] == \"TPU\")}\nM1015.3 S1;enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PETG\")\n || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;disable E air printing detect\n{endif}\n\nM620.6 I[initial_no_support_filament_id] H[initial_no_support_hotend] W1 ;enable ams air printing detect\nM620 O1\n\nM211 Z1\nG29.99\nM1002 gcode_claim_action : 0\nM400\n", - "machine_end_gcode": ";===== machine: H2C end =====\n;====== date: 20260313 ======\n\nG392 S0 ;turn off nozzle clog detect\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nM211 Z1\nM640.2 R0\n\nG90\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\nM1002 judge_flag timelapse_record_flag\nM622 J1\n G150.3\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S5 ;wait for last picture to be taken\nM623 ;end of \"timelapse_record_flag\"\n\nG90\nG1 Z{max_layer_z + 10} F900 ; lower z a little\n\nG90\nM141 S0 ; turn off chamber heating\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM106 P9 S0 ; turn off ext toodhead cooling fan\n\n; pull back filament to AMS\nM620 S65535\n{if long_retraction_when_cut}\nM620.11 P1 I[current_filament_id] B[current_hotend] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 P0 I[current_filament_id] B[current_hotend] E0\n{endif}\n\n{if long_retraction_when_ec}\nM620.11 K1 I[current_filament_id] B[current_hotend] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[current_filament_id] B[current_hotend] R0\n{endif}\n\nM620.11 P1 I[current_filament_id] B[current_hotend] E-14\nT65535\nG150.2\nM621 S65535\n\nM620 S65279\nT65279\nG150.2\nM621 S65279\n\nG150.3\n\nM104 S0 T0; turn off hotend\nM104 S0 T1; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (100.0 - max_layer_z/2) > 0}\n {if (max_layer_z + 100.0 - max_layer_z/2) < 320}\n G1 Z{max_layer_z + 100.0 - max_layer_z/2} F600\n G1 Z{max_layer_z + 98.0 - max_layer_z/2}\n {else}\n G1 Z320 F600\n G1 Z320\n {endif}\n{else}\n {if (max_layer_z + 4.0) < 320}\n G1 Z{max_layer_z + 4.0} F600\n G1 Z{max_layer_z + 2.0}\n {else}\n G1 Z320 F600\n G1 Z320\n {endif}\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM1015.4 S0 K0 ;disable air printing detect\n\n\n;=====printer finish air purification=========\nM622.1 S0\nM1002 judge_flag print_finish_air_filt_flag\n\nM622 J1\nM1002 gcode_claim_action : 66\nM145 P1\nM106 P6 S255\nM400 S180\nM106 P6 S0\nM623\n\nM622 J2\nM1002 gcode_claim_action : 66\nM145 P0\nM106 P3 S127\nM400 S180\nM106 P3 S0\nM623\n;=====printer finish air purification=========\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L99 C53 D10 M99 E53 F10 N99\nM1006 A57 B10 L99 C57 D10 M99 E57 F10 N99\nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0\nM1006 A53 B10 L99 C53 D10 M99 E53 F10 N99\nM1006 A57 B10 L99 C57 D10 M99 E57 F10 N99\nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0\nM1006 A48 B10 L99 C48 D10 M99 E48 F10 N99\nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0\nM1006 A60 B10 L99 C60 D10 M99 E60 F10 N99\nM1006 W\n;=====printer finish sound=========\nM400\nM18\n\n", - "time_lapse_gcode": ";===== machine: H2C timelapse =====\n;======== date: 20260603 ========\n\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\n\nM1002 judge_flag timelapse_record_flag\nM622 J1\n {if !spiral_mode}\n M993 A2 B2 C2\n M993 A0 B0 C0\n {endif}\n\n {if !spiral_mode && !(has_timelapse_safe_pos) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n M83\n G1 Z{max_layer_z + 0.4} F1200\n M400\n {endif}\n {endif}\n\n {if timelapse_inline_photo}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {elsif has_timelapse_safe_pos && !spiral_mode}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} U{timelapse_pos_x} V{timelapse_pos_y} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {else}\n {if spiral_mode}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {else}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {endif}\n {endif}\n\n {if !spiral_mode && !(has_timelapse_safe_pos) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n G90\n G1 Z{max_layer_z + 3.0} F1200\n G1 Y295 F30000\n G1 Y265 F18000\n M83\n {endif}\n {endif}\n \n {if !spiral_mode}\n M993 A3 B3 C3\n {endif}\nM623\n; SKIPPABLE_END\n", - "wrapping_detection_gcode": ";===== machine: H2C =========================\n;===== date: 20251104 =====================\n\n{if !spiral_mode}\n {if layer_num == 3 || layer_num == 10 || layer_num == 19}\n M993 A2 B2 C2 ; nozzle cam detection allow status save.\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n M400 P100\n\n G39\n\n G90\n G1 Y295 F30000\n G1 Y265 F18000\n \n M993 A3 B3 C3 ; nozzle cam detection allow status restore.\n {endif}\n{endif}\n", - "change_filament_gcode": ";======== H2C filament_change ========\n;===== 20260413 =====\nM993 A2 B2 C2 ; nozzle cam detection allow status save.\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n{if (filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PETG\")\n || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K0 ;disable E air printing detect\n{else}\nM1015.4 S0 ; disable E air printing detect\n{endif}\n\nM620 S[next_filament_id]A H[next_hotend]\nM1002 gcode_claim_action : 4\nM204 S9000\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\nM106 P2 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\n{if wipe_tower_center_pos_valid}\n M620.14 X[wipe_tower_center_pos_x] Y[wipe_tower_center_pos_y]\n{else}\n M620.14 X95.5 Y336\n{endif}\n\n{if ((filament_type[current_filament_id] == \"PLA\") || (filament_type[current_filament_id] == \"PLA-CF\") || (filament_type[current_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[current_filament_id]/2.4053*60*0.8} L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{endif}\n\n{if ((filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[next_nozzle_id] == 0.2)}\nM620.10 A1 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{else}\nM620.10 A1 F{flush_volumetric_speeds[next_filament_id]/2.4053*60*0.8} L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{endif}\n\n{if long_retraction_when_cut}\nM620.11 P1 I[current_filament_id] B[current_hotend] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 P0 I[current_filament_id] B[current_hotend] E0\n{endif}\n\n\nM620.15 P[filament_pre_cooling_temperature_nc[next_filament_id]]\nM620.15 C{new_filament_temp - filament_cooling_before_tower[next_filament_id]}\nM620.11 O1 T[filament_retract_length_nc]\n\n{if long_retraction_when_ec}\nM620.11 K1 I[current_filament_id] B[current_hotend] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[current_filament_id] B[current_hotend] R0\n{endif}\n\nM620.15 C{new_filament_temp - filament_cooling_before_tower[next_filament_id]}\n\nM628 S1\n{if filament_type[current_filament_id] == \"TPU\"}\nM620.11 S0 L0 I[current_filament_id] B[current_hotend] E-{retraction_distances_when_cut[current_filament_id]} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\n{if (filament_type[current_filament_id] == \"PA\") || (filament_type[current_filament_id] == \"PA-GF\")}\nM620.11 S1 L0 I[current_filament_id] B[current_hotend] R4 D2 E-{retraction_distances_when_cut[current_filament_id]} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 S1 L0 I[current_filament_id] B[current_hotend] R10 D8 E-{retraction_distances_when_cut[current_filament_id]} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{endif}\n{endif}\nM629\n\n{if (filament_type[current_filament_id] == \"TPU\") && (filament_map[current_filament_id] == 2) && (nozzle_volume_types[current_nozzle_id] != \"TPU High Flow\")}\nM620.11 H2 C331\n{else}\nM620.11 H0\n{endif}\n\n{if (nozzle_volume_types[current_nozzle_id] == \"TPU High Flow\") && (filament_map[current_filament_id] == 2) && (filament_map[next_filament_id] == 1)}\n;sw from R2L&TPU kit, travel run a distance for sketch TPU\nG1 X30 Y30 F5000\nM400\nG1 X300 Y30 F5000\nM400\n{endif}\n\nT[next_filament_id] H[next_hotend]\n\n;deretract\n{if filament_type[next_filament_id] == \"TPU\"}\n{else}\n{if (filament_type[next_filament_id] == \"PA\") || (filament_type[next_filament_id] == \"PA-GF\")}\n;VG1 E1 F{max(new_filament_e_feedrate, 200)}\n;VG1 E1 F{max(new_filament_e_feedrate/2, 100)}\n{else}\n;VG1 E4 F{max(new_filament_e_feedrate, 200)}\n;VG1 E4 F{max(new_filament_e_feedrate/2, 100)}\n{endif}\n{endif}\n\n; VFLUSH_START\n\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\n\nSYNC T{ceil(flush_length / 125) * 5}\n\n; compensate for heating and cooling\n{if flush_length > 0}\n{if flush_temperatures[next_filament_id] > new_filament_temp}\nSYNC T{(flush_temperatures[next_filament_id]-(new_filament_temp - filament_cooling_before_tower[next_filament_id]))/hotend_cooling_rate[filament_map[next_filament_id]-1]}\nSYNC T{(flush_temperatures[next_filament_id]-(new_filament_temp - filament_cooling_before_tower[next_filament_id]))/hotend_heating_rate[filament_map[next_filament_id]-1]}\n{else}\nSYNC T{(new_filament_temp - filament_cooling_before_tower[next_filament_id] -flush_temperatures[next_filament_id])/hotend_cooling_rate[filament_map[next_filament_id]-1]}\nSYNC T{(new_filament_temp - filament_cooling_before_tower[next_filament_id] -flush_temperatures[next_filament_id])/hotend_heating_rate[filament_map[next_filament_id]-1]}\n{endif}\n{endif}\n\n; VFLUSH_END\n\nM1002 set_filament_type:{filament_type[next_filament_id]}\n\nM400\nM83\n{if next_filament_id < 255}\n\n\nM620.10 R{new_extruder_retracted_length}\n\n{if (print_sequence == \"by object\" && !has_wipe_tower)}\nM628 S0 F1 L10.0\n; VFLUSH_START\n;VG1 E10 F[new_filament_e_feedrate]\n; VFLUSH_END\n{else}\nM628 S0\n{endif}\n;VM109 S[new_filament_temp]\n\nM629\nM400\n\n;prime_tower_interface\n{if is_prime_tower_interface && filament_tower_interface_purge_volume !=0}\nG150.1\nM620.13 W0 L{filament_tower_interface_purge_volume} T{filament_tower_interface_print_temp} R0.0\n{endif}\n;prime_tower_interface\n\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{new_extruder_retracted_length}\n\n\nM400\n{if wipe_avoid_perimeter}\nG387 Y320 J1 F10000\nG1 X{wipe_avoid_pos_x} F30000\n{endif}\nG387 Y295 J1 F30000\nG387 Y265 J1 F18000\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_filament_id]A\n\nM622.1 S0 ;for prev version, default skip\nM1002 judge_flag powerloss_resume_flag\nM622 J1\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{new_extruder_retracted_length}\nM400\n{if wipe_avoid_perimeter}\nG387 Y320 J1 F10000\nG1 X{wipe_avoid_pos_x} F30000\n{endif}\nG387 Y295 J1 F30000\nG387 Y265 J1 F18000\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\nM1002 set_flag powerloss_resume_flag=0\nM623\n\nM993 A3 B3 C3 ; nozzle cam detection allow status restore.\n\n{if (filament_type[next_filament_id] == \"TPU\")}\nM1015.3 S1;enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PETG\")\n || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 ; disable E air printing detect\n{endif}\n\nM620.6 I[next_filament_id] H[next_hotend] W1 ;enable ams air printing detect\nM620 O{toolchange_count + 1}\nM1002 gcode_claim_action : 0" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab H2C 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab H2C 0.6 nozzle.json index 7174ec6f93..4860dac550 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2C 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2C 0.6 nozzle.json @@ -1,38 +1,39 @@ { - "type": "machine", - "name": "Bambu Lab H2C 0.6 nozzle", - "inherits": "Bambu Lab H2C 0.4 nozzle", - "from": "system", - "setting_id": "GM043", - "instantiation": "true", - "nozzle_diameter": [ - "0.6", - "0.6" - ], - "printer_model": "Bambu Lab H2C", - "printer_variant": "0.6", - "default_print_profile": "0.30mm Standard @BBL H2C 0.6 nozzle", - "default_filament_profile": [ - "Bambu PLA Basic @BBL H2C 0.6 nozzle" - ], - "max_layer_height": [ - "0.42", - "0.42" - ], - "min_layer_height": [ - "0.12", - "0.12" - ], - "retraction_length": [ - "1.4", - "1.4", - "1.4", - "1.4" - ], - "upward_compatible_machine": [ - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab A2L 0.6 nozzle" - ] + "type": "machine", + "name": "Bambu Lab H2C 0.6 nozzle", + "inherits": "Bambu Lab H2C 0.4 nozzle", + "from": "system", + "setting_id": "GM043", + "instantiation": "true", + "nozzle_diameter": [ + "0.6", + "0.6" + ], + "printer_model": "Bambu Lab H2C", + "printer_variant": "0.6", + "default_print_profile": "0.30mm Standard @BBL H2C 0.6 nozzle", + "default_filament_profile": [ + "Bambu PLA Basic @BBL H2C 0.6 nozzle" + ], + "max_layer_height": [ + "0.42", + "0.42" + ], + "min_layer_height": [ + "0.12", + "0.12" + ], + "retraction_length": [ + "1.4", + "1.4", + "1.4", + "1.4", + "1.4" + ], + "upward_compatible_machine": [ + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab A2L 0.6 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab H2C 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab H2C 0.8 nozzle.json index 67da881c6d..7ff6023625 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2C 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2C 0.8 nozzle.json @@ -1,38 +1,330 @@ { - "type": "machine", - "name": "Bambu Lab H2C 0.8 nozzle", - "inherits": "Bambu Lab H2C 0.4 nozzle", - "from": "system", - "setting_id": "GM044", - "instantiation": "true", - "nozzle_diameter": [ - "0.8", - "0.8" - ], - "printer_model": "Bambu Lab H2C", - "printer_variant": "0.8", - "default_print_profile": "0.40mm Standard @BBL H2C 0.8 nozzle", - "default_filament_profile": [ - "Bambu PLA Basic @BBL H2C 0.8 nozzle" - ], - "max_layer_height": [ - "0.56", - "0.56" - ], - "min_layer_height": [ - "0.16", - "0.16" - ], - "retraction_length": [ - "3", - "3", - "3", - "3" - ], - "upward_compatible_machine": [ - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab H2D 0.8 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle", - "Bambu Lab A2L 0.8 nozzle" - ] -} + "type": "machine", + "name": "Bambu Lab H2C 0.8 nozzle", + "inherits": "Bambu Lab H2C 0.4 nozzle", + "from": "system", + "setting_id": "GM044", + "instantiation": "true", + "nozzle_diameter": [ + "0.8", + "0.8" + ], + "printer_model": "Bambu Lab H2C", + "printer_variant": "0.8", + "default_print_profile": "0.40mm Standard @BBL H2C 0.8 nozzle", + "default_filament_profile": [ + "Bambu PLA Basic @BBL H2C 0.8 nozzle" + ], + "max_layer_height": [ + "0.56", + "0.56" + ], + "min_layer_height": [ + "0.16", + "0.16" + ], + "retraction_length": [ + "3", + "3", + "3", + "3" + ], + "upward_compatible_machine": [ + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "deretraction_speed": [ + "30", + "30", + "30", + "30" + ], + "hotend_cooling_rate": [ + "1.6", + "1.6", + "3.4", + "3.4" + ], + "hotend_heating_rate": [ + "3.5", + "3.5", + "13.3", + "13.3" + ], + "long_retractions_when_cut": [ + "1", + "1", + "1", + "1" + ], + "nozzle_flush_dataset": [ + "1", + "2", + "1", + "2" + ], + "retract_before_wipe": [ + "0%", + "0%", + "0%", + "0%" + ], + "retract_length_toolchange": [ + "2", + "2", + "2", + "2" + ], + "retract_restart_extra": [ + "0", + "0", + "0", + "0" + ], + "retract_restart_extra_toolchange": [ + "0", + "0", + "0", + "0" + ], + "retract_when_changing_layer": [ + "1", + "1", + "1", + "1" + ], + "retraction_distances_when_cut": [ + "14", + "14", + "14", + "14" + ], + "retraction_minimum_travel": [ + "1", + "1", + "1", + "1" + ], + "retraction_speed": [ + "30", + "30", + "30", + "30" + ], + "wipe": [ + "1", + "1", + "1", + "1" + ], + "z_hop": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "deretract_speed_extruder_change": [ + "15", + "15", + "15", + "15" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow", + "Direct Drive Standard,Direct Drive High Flow" + ], + "nozzle_volume": [ + "130", + "133", + "145", + "148" + ], + "printer_extruder_id": [ + "1", + "1", + "2", + "2" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "retract_lift_above": [ + "0", + "0", + "0", + "0" + ], + "retract_lift_below": [ + "319", + "319", + "319", + "319" + ], + "wipe_distance": [ + "2", + "2", + "2", + "2" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift", + "Auto Lift", + "Auto Lift" + ], + "machine_max_acceleration_e": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500", + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3", + "3", + "3", + "3", + "3" + ], + "machine_max_speed_z": [ + "30", + "30", + "30", + "30", + "30", + "30", + "30", + "30" + ], + "machine_max_speed_y": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_x": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_e": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50", + "50" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab H2C.json b/resources/profiles/BBL/machine/Bambu Lab H2C.json index b9734a34c5..287754bacc 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2C.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2C.json @@ -1,16 +1,17 @@ { - "type": "machine_model", - "name": "Bambu Lab H2C", - "nozzle_diameter": "0.2;0.4;0.6;0.8", - "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", - "bed_model": "bbl-3dp-H2C.stl", - "bed_texture": "bbl-3dp-logo.svg", - "default_bed_type": "Textured PEI Plate", - "bottom_texture_rect_longer": "45, -14.5, 240, 8", - "image_bed_type": "o", - "family": "BBL-3DP", - "machine_tech": "FFF", - "model_id": "O1C2", - "not_support_bed_type": "Cool Plate;Smooth PEI Plate / High Temp Plate", - "default_materials": "Bambu PLA Basic @BBL H2C;Bambu PLA-CF @BBL H2C;Bambu PETG Basic @BBL H2C;Bambu ABS @BBL H2C;Bambu PETG HF @BBL H2C;Bambu PLA Silk @BBL H2C;Bambu PLA Matte @BBL H2C;Bambu PC @BBL H2C;Bambu PA-CF @BBL H2C;Bambu PLA Pure @BBL H2C;Bambu PLA Basic @BBL H2C 0.2 nozzle" -} + "type": "machine_model", + "name": "Bambu Lab H2C", + "nozzle_diameter": "0.2;0.4;0.6;0.8", + "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", + "bed_model": "bbl-3dp-H2C.stl", + "bed_texture": "bbl-3dp-logo.svg", + "default_bed_type": "Textured PEI Plate", + "bottom_texture_rect_longer": "45, -14.5, 240, 8", + "bottom_texture_rect_longer_ignore_list": "High Temp Plate;Textured PEI Plate", + "image_bed_type": "o", + "family": "BBL-3DP", + "machine_tech": "FFF", + "model_id": "O1C2", + "not_support_bed_type": "Cool Plate;Smooth PEI Plate / High Temp Plate", + "default_materials": "Bambu PLA Basic @BBL H2C;Bambu PLA-CF @BBL H2C;Bambu PETG Basic @BBL H2C;Bambu ABS @BBL H2C;Bambu PETG HF @BBL H2C;Bambu PLA Silk @BBL H2C;Bambu PLA Matte @BBL H2C;Bambu PC @BBL H2C;Bambu PA-CF @BBL H2C;Bambu PLA Pure @BBL H2C;Bambu PLA Basic @BBL H2C 0.2 nozzle" +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab H2D 0.2 nozzle.json index 5f4e504a7d..a49f262539 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2D 0.2 nozzle.json @@ -1,333 +1,327 @@ { - "type": "machine", - "name": "Bambu Lab H2D 0.2 nozzle", - "inherits": "Bambu Lab H2D 0.4 nozzle", - "from": "system", - "setting_id": "GM034", - "instantiation": "true", - "nozzle_diameter": [ - "0.2", - "0.2" - ], - "printer_model": "Bambu Lab H2D", - "printer_variant": "0.2", - "default_filament_profile": [ - "Bambu PLA Basic @BBL H2D 0.2 nozzle" - ], - "default_print_profile": "0.10mm Standard @BBL H2D 0.2 nozzle", - "max_layer_height": [ - "0.14", - "0.14" - ], - "min_layer_height": [ - "0.04", - "0.04" - ], - "retraction_length": [ - "0.4", - "0.4", - "0.4", - "0.4" - ], - "upward_compatible_machine": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ], - "deretraction_speed": [ - "30", - "30", - "30", - "30" - ], - "deretract_speed_extruder_change": [ - "15", - "15", - "15", - "15" - ], - "hotend_cooling_rate": [ - "2", - "2", - "2", - "2" - ], - "hotend_heating_rate": [ - "3.6", - "3.6", - "3.6", - "3.6" - ], - "long_retractions_when_cut": [ - "0", - "0", - "0", - "0" - ], - "machine_max_acceleration_e": [ - "5000", - "5000", - "5000", - "5000", - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_extruding": [ - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_retracting": [ - "5000", - "5000", - "5000", - "5000", - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_travel": [ - "9000", - "9000", - "9000", - "9000", - "9000", - "9000", - "9000", - "9000" - ], - "machine_max_acceleration_x": [ - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_y": [ - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_z": [ - "500", - "500", - "500", - "500", - "500", - "500", - "500", - "500" - ], - "machine_max_jerk_e": [ - "2.5", - "2.5", - "2.5", - "2.5", - "2.5", - "2.5", - "2.5", - "2.5" - ], - "machine_max_jerk_x": [ - "9", - "9", - "9", - "9", - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_y": [ - "9", - "9", - "9", - "9", - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_z": [ - "3", - "3", - "3", - "3", - "3", - "3", - "3", - "3" - ], - "machine_max_speed_e": [ - "50", - "50", - "50", - "50", - "50", - "50", - "50", - "50" - ], - "machine_max_speed_x": [ - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "machine_max_speed_y": [ - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "machine_max_speed_z": [ - "30", - "30", - "30", - "30", - "30", - "30", - "30", - "30" - ], - "nozzle_flush_dataset": [ - "1", - "2", - "1", - "2" - ], - "nozzle_type": [ - "hardened_steel", - "hardened_steel", - "hardened_steel", - "hardened_steel" - ], - "nozzle_volume": [ - "130", - "133", - "145", - "148" - ], - "printer_extruder_id": [ - "1", - "1", - "2", - "2" - ], - "printer_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "retract_before_wipe": [ - "0%", - "0%", - "0%", - "0%" - ], - "retract_length_toolchange": [ - "2", - "2", - "2", - "2" - ], - "retract_lift_above": [ - "0", - "0", - "0", - "0" - ], - "retract_lift_below": [ - "319", - "319", - "319", - "319" - ], - "retract_restart_extra": [ - "0", - "0", - "0", - "0" - ], - "retract_restart_extra_toolchange": [ - "0", - "0", - "0", - "0" - ], - "retract_when_changing_layer": [ - "1", - "1", - "1", - "1" - ], - "retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "retraction_minimum_travel": [ - "1", - "1", - "1", - "1" - ], - "retraction_speed": [ - "30", - "30", - "30", - "30" - ], - "wipe": [ - "1", - "1", - "1", - "1" - ], - "wipe_distance": [ - "2", - "2", - "2", - "2" - ], - "z_hop": [ - "0.4", - "0.4", - "0.4", - "0.4" - ], - "z_hop_types": [ - "Auto Lift", - "Auto Lift", - "Auto Lift", - "Auto Lift" - ], - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow", - "Direct Drive Standard,Direct Drive High Flow" - ] -} + "type": "machine", + "name": "Bambu Lab H2D 0.2 nozzle", + "inherits": "Bambu Lab H2D 0.4 nozzle", + "from": "system", + "setting_id": "GM034", + "instantiation": "true", + "nozzle_diameter": [ + "0.2", + "0.2" + ], + "printer_model": "Bambu Lab H2D", + "printer_variant": "0.2", + "default_filament_profile": [ + "Bambu PLA Basic @BBL H2D 0.2 nozzle" + ], + "default_print_profile": "0.10mm Standard @BBL H2D 0.2 nozzle", + "deretraction_speed": [ + "30", + "30", + "30", + "30" + ], + "deretract_speed_extruder_change": [ + "15", + "15", + "15", + "15" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow", + "Direct Drive Standard,Direct Drive High Flow" + ], + "hotend_cooling_rate": [ + "2", + "2", + "2", + "2" + ], + "hotend_heating_rate": [ + "3.6", + "3.6", + "3.6", + "3.6" + ], + "long_retractions_when_cut": [ + "0", + "0", + "0", + "0" + ], + "machine_max_acceleration_e": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500", + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3", + "3", + "3", + "3", + "3" + ], + "machine_max_speed_e": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50", + "50" + ], + "machine_max_speed_x": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_y": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_z": [ + "30", + "30", + "30", + "30", + "30", + "30", + "30", + "30" + ], + "max_layer_height": [ + "0.14", + "0.14" + ], + "min_layer_height": [ + "0.04", + "0.04" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000" + ], + "nozzle_flush_dataset": [ + "1", + "2", + "1", + "2" + ], + "nozzle_volume": [ + "130", + "133", + "145", + "148" + ], + "printer_extruder_id": [ + "1", + "1", + "2", + "2" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "retract_before_wipe": [ + "0%", + "0%", + "0%", + "0%" + ], + "retract_length_toolchange": [ + "2", + "2", + "2", + "2" + ], + "retract_restart_extra": [ + "0", + "0", + "0", + "0" + ], + "retract_restart_extra_toolchange": [ + "0", + "0", + "0", + "0" + ], + "retract_when_changing_layer": [ + "1", + "1", + "1", + "1" + ], + "retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "retraction_minimum_travel": [ + "1", + "1", + "1", + "1" + ], + "retraction_speed": [ + "30", + "30", + "30", + "30" + ], + "retract_lift_above": [ + "0", + "0", + "0", + "0" + ], + "retract_lift_below": [ + "319", + "319", + "319", + "319" + ], + "wipe": [ + "1", + "1", + "1", + "1" + ], + "wipe_distance": [ + "2", + "2", + "2", + "2" + ], + "z_hop": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift", + "Auto Lift", + "Auto Lift" + ], + "upward_compatible_machine": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template change_filament_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template change_filament_gcode.json new file mode 100644 index 0000000000..5f276e3e25 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template change_filament_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2D 0.4 nozzle template change_filament_gcode", + "instantiation": "false", + "change_filament_gcode": ";======== H2D ========\n;===== 20260528 =====\nM993 A2 B2 C2 ; nozzle cam detection allow status save.\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n{if (filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PETG\")\n || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K0 ;disable E air printing detect\n{else}\nM1015.4 S0 ; disable E air printing detect\n{endif}\n\nM620 S[next_filament_id]A H[next_hotend]\nM1002 gcode_claim_action : 4\nM204 S9000\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\nM106 P2 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\n{if ((filament_type[current_filament_id] == \"PLA\") || (filament_type[current_filament_id] == \"PLA-CF\") || (filament_type[current_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[current_filament_id]/2.4053*60*0.8} L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{endif}\n\n{if ((filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[next_nozzle_id] == 0.2)}\nM620.10 A1 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{else}\nM620.10 A1 F{flush_volumetric_speeds[next_filament_id]/2.4053*60*0.8} L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{endif}\n\n{if long_retraction_when_cut}\nM620.11 P1 I[current_filament_id] B[current_hotend] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 P0 I[current_filament_id] B[current_hotend] E0\n{endif}\n\n{if long_retraction_when_ec}\nM620.11 K1 I[current_filament_id] B[current_hotend] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[current_filament_id] B[current_hotend] R0\n{endif}\n\nM620.15 C{new_filament_temp - filament_cooling_before_tower[next_filament_id]}\n\nM628 S1\n{if filament_type[current_filament_id] == \"TPU\"}\nM620.11 S0 L0 I[current_filament_id] B[current_hotend] E-{retraction_distances_when_cut[current_filament_id]} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\n{if (filament_type[current_filament_id] == \"PA\") || (filament_type[current_filament_id] == \"PA-GF\")}\nM620.11 S1 L0 I[current_filament_id] B[current_hotend] R4 D2 E-{retraction_distances_when_cut[current_filament_id]} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 S1 L0 I[current_filament_id] B[current_hotend] R10 D8 E-{retraction_distances_when_cut[current_filament_id]} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{endif}\n{endif}\nM629\n\n{if (filament_type[current_filament_id] == \"TPU\") && (filament_map[current_filament_id] == 2) && (nozzle_volume_types[current_nozzle_id] != \"TPU High Flow\")}\nM620.11 H2 C331\n{else}\nM620.11 H0\n{endif}\n\n{if (nozzle_volume_types[current_nozzle_id] == \"TPU High Flow\") && (filament_map[current_filament_id] == 2) && (filament_map[next_filament_id] == 1)}\n;sw from R2L&TPU kit, travel run a distance for sketch TPU\nG1 X30 Y30 F5000\nM400\nG1 X300 Y30 F5000\nM400\n{endif}\n\nT[next_filament_id] H[next_hotend]\n\n;deretract\n{if filament_type[next_filament_id] == \"TPU\"}\n{else}\n{if (filament_type[next_filament_id] == \"PA\") || (filament_type[next_filament_id] == \"PA-GF\")}\n;VG1 E1 F{max(new_filament_e_feedrate, 200)}\n;VG1 E1 F{max(new_filament_e_feedrate/2, 100)}\n{else}\n;VG1 E4 F{max(new_filament_e_feedrate, 200)}\n;VG1 E4 F{max(new_filament_e_feedrate/2, 100)}\n{endif}\n{endif}\n\n; VFLUSH_START\n\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\n\nSYNC T{ceil(flush_length / 125) * 5}\n\n; compensate for heating and cooling\n{if flush_length > 0}\n{if flush_temperatures[next_filament_id] > new_filament_temp}\nSYNC T{(flush_temperatures[next_filament_id]-(new_filament_temp - filament_cooling_before_tower[next_filament_id]))/hotend_cooling_rate[filament_map[next_filament_id]-1]}\nSYNC T{(flush_temperatures[next_filament_id]-(new_filament_temp - filament_cooling_before_tower[next_filament_id]))/hotend_heating_rate[filament_map[next_filament_id]-1]}\n{else}\nSYNC T{(new_filament_temp - filament_cooling_before_tower[next_filament_id] -flush_temperatures[next_filament_id])/hotend_cooling_rate[filament_map[next_filament_id]-1]}\nSYNC T{(new_filament_temp - filament_cooling_before_tower[next_filament_id] -flush_temperatures[next_filament_id])/hotend_heating_rate[filament_map[next_filament_id]-1]}\n{endif}\n{endif}\n\n\n; VFLUSH_END\n\nM1002 set_filament_type:{filament_type[next_filament_id]}\n\nM400\nM83\n{if next_filament_id < 255}\n\nM620.10 R{new_extruder_retracted_length}\nM628 S0\n;VM109 S[new_filament_temp]\nM629\nM400\n\n;prime_tower_interface\n{if is_prime_tower_interface && filament_tower_interface_purge_volume !=0}\nG150.1\nM620.13 W0 L{filament_tower_interface_purge_volume} T{filament_tower_interface_print_temp} R0.0\n{endif}\n;prime_tower_interface\n\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{new_extruder_retracted_length}\n\nM400\n{if wipe_avoid_perimeter}\nG1 Y320 F30000\nG1 X{wipe_avoid_pos_x} F30000\n{endif}\nG1 Y295 F30000\nG1 Y265 F18000\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_filament_id]A\n\nM622.1 S0 ;for prev version, default skip\nM1002 judge_flag powerloss_resume_flag\nM622 J1\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{new_extruder_retracted_length}\nM400\n{if wipe_avoid_perimeter}\nG1 Y320 F30000\nG1 X{wipe_avoid_pos_x} F30000\n{endif}\nG1 Y295 F30000\nG1 Y265 F18000\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\nM1002 set_flag powerloss_resume_flag=0\nM623\n\nM993 A3 B3 C3 ; nozzle cam detection allow status restore.\n\n{if (filament_type[next_filament_id] == \"TPU\")}\nM1015.3 S1;enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PETG\")\n || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 ; disable E air printing detect\n{endif}\n\nM620.6 I[next_filament_id] H[next_hotend] W1 ;enable ams air printing detect\nM620 Q{toolchange_count + 1}\nM1002 gcode_claim_action : 0\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template layer_change_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template layer_change_gcode.json new file mode 100644 index 0000000000..86fc6203a6 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template layer_change_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2D 0.4 nozzle template layer_change_gcode", + "instantiation": "false", + "layer_change_gcode": ";======== H2D 20250710 layer_change ========\n; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template machine_end_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template machine_end_gcode.json new file mode 100644 index 0000000000..c22aa7c986 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template machine_end_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2D 0.4 nozzle template machine_end_gcode", + "instantiation": "false", + "machine_end_gcode": ";========== H2D end ==========\n;===== date: 2026/07/29 =====\n\nM1003 S0\nM73 P100 R0\n\nG392 S0 ;turn off nozzle clog detect\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nM211 Z1\n\nG90\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\nM1002 judge_flag timelapse_record_flag\nM622 J1\n G150.3\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S5 ;wait for last picture to be taken\nM623 ;end of \"timelapse_record_flag\"\n\nG90\nG1 Z{max_layer_z + 10} F900 ; lower z a little\n\nG90\nM141 S0 ; turn off chamber heating\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM106 P9 S0 ; turn off ext toodhead cooling fan\n; pull back filament to AMS\nM620 S65535\nT65535\nG150.2\nM621 S65535\n\nM620 S65279\nT65279\nG150.2\nM621 S65279\n\nG150.3\n\nM104 S0 T0; turn off hotend\nM104 S0 T1; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (100.0 - max_layer_z/2) > 0}\n {if (max_layer_z + 100.0 - max_layer_z/2) < 320}\n G1 Z{max_layer_z + 100.0 - max_layer_z/2} F600\n G1 Z{max_layer_z + 98.0 - max_layer_z/2}\n {else}\n G1 Z320 F600\n G1 Z320\n {endif}\n{else}\n {if (max_layer_z + 4.0) < 320}\n G1 Z{max_layer_z + 4.0} F600\n G1 Z{max_layer_z + 2.0}\n {else}\n G1 Z320 F600\n G1 Z320\n {endif}\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM1015.4 S0 K0 ;disable air printing detect\n\n;=====printer finish air purification=========\nM622.1 S0\nM1002 judge_flag print_finish_air_filt_flag\n\nM622 J1\nM1002 gcode_claim_action : 66\nM145 P1\nM106 P6 S255\nM400 S180\nM106 P6 S0\nM623\n\nM622 J2\nM1002 gcode_claim_action : 66\nM145 P0\nM106 P3 S127\nM400 S180\nM106 P3 S0\nM623\n;=====printer finish air purification=========\n\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L99 C53 D10 M99 E53 F10 N99 \nM1006 A57 B10 L99 C57 D10 M99 E57 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A53 B10 L99 C53 D10 M99 E53 F10 N99 \nM1006 A57 B10 L99 C57 D10 M99 E57 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A48 B10 L99 C48 D10 M99 E48 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A60 B10 L99 C60 D10 M99 E60 F10 N99 \nM1006 W\n;=====printer finish sound=========\nM400\nM18\n\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..519b801692 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2D 0.4 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: H2D =========================\n;===== date: 20260605 =====================\n\n;M1002 set_flag extrude_cali_flag=1\n;M1002 set_flag g29_before_print_flag=1\n;M1002 set_flag auto_cali_toolhead_offset_flag=1\n;M1002 set_flag build_plate_detect_flag=1\n\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\nM400\n;M73 P99\n\nM960 S10 P1 ; ext fan led\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L99 C53 D9 M99 E53 F9 N99\nM1006 A56 B9 L99 C56 D9 M99 E56 F9 N99\nM1006 A61 B9 L99 C61 D9 M99 E61 F9 N99\nM1006 A53 B9 L99 C53 D9 M99 E53 F9 N99\nM1006 A56 B9 L99 C56 D9 M99 E56 F9 N99\nM1006 A61 B18 L99 C61 D18 M99 E61 F18 N99\nM1006 W\n;=====printer start sound ===================\n\n;===== reset machine status =================\nM204 S10000\nM630 S0 P0\n\nG90\nM17 D ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM1002 set_gcode_claim_speed_level 5 ;Reset speed level\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nG29.1 Z{+0.0} ; clear z-trim value first\nM983.1 M1\nM901 D4\nM481 S0 ; turn off cutter pos comp\nG28.140 D0; reset pre-extrude z pos\n;===== reset machine status =================\n\nM620 M ;enable remap\n\n;===== avoid end stop =================\nG91\nG380 S2 Z42 F1200\nG380 S2 Z-12 F1200\nG90\n;===== avoid end stop =================\n\n;==== set airduct mode ====\n\n{if (overall_chamber_temperature >= 40)}\n\n M145 P1 ; set airduct mode to heating mode for heating\n M106 P2 S0 ; turn off auxiliary fan\n M106 P3 S0 ; turn off chamber fan\n\n{else}\n M145 P0 ; set airduct mode to cooling mode for cooling\n M106 P2 S178 ; turn on auxiliary fan for cooling\n M106 P3 S127 ; turn on chamber fan for cooling\n M140 S0 ; stop heatbed from heating\n\n M1002 gcode_claim_action : 29\n M191 S0 ; wait for chamber temp\n M106 P2 S0 ; turn off auxiliary fan\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2)}\n M142 P1 R30 S35 T40 U0.3 V0.5 W0.8 O40 ; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 T45 U0.3 V0.5 W0.8 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n {if (!is_all_bbl_filament)}\n M142 P1 R35 S40 T45 U0.3 V0.5 W0.8 O45 L1 ; set third-party PETG chamber autocooling\n {else}\n {if (nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2)}\n M142 P1 R35 S45 T50 U0.3 V0.5 W0.8 O50 L1 ; set PETG ND0.2 chamber autocooling\n {else}\n M142 P1 R35 S50 T55 U0.3 V0.5 W0.8 O55 L1 ; set PETG ND0.4 chamber autocooling\n {endif}\n {endif}\n {endif}\n {if(cooling_filter_enabled)}\n M145.2 P0 F0\n {else}\n M145.2 P0 F1\n {endif}\n{endif}\n\n;==== set airduct mode ====\n\n;===== start to heat heatbed & hotend==========\n\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n\n M104 S140 A\n M140 S[bed_temperature_initial_layer_single]\n\n ;===== set chamber temperature ==========\n {if (overall_chamber_temperature >= 40)}\n M145 P1 ; set airduct mode to heating mode\n M141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n {endif}\n ;===== set chamber temperature ==========\n\n;===== start to heat heatbead & hotend==========\n\n;====== cog noise reduction=================\nM982.2 S1 ; turn on cog noise reduction\n\n;===== first homing start =====\nM1002 gcode_claim_action : 13\n\nG28 X T300\n\nG150.1 F18000 ; wipe mouth to avoid filament stick to heatbed\nG150.3 F18000\nM400 P200\nM972 S24 P0 T2000\n\nM1002 gcode_claim_action : 74 ; Heatbed surface foreign object detection\n{if curr_bed_type==\"Textured PEI Plate\"}\nM972 S26 P0 C0\n{else}\nM972 S36 P0 C0 X1\n{endif}\nM972 S35 P0 C0\n\nM972 S41 P0 T5000 ; trash can anti-collision\n\nM1009 Q1 L1\nG91\nG380 S2 Z30 F1200 ; lower heatbed to move toolhead\nG90\nG1 X175 Y160 F30000\nG28 Z P0 T250\nM1009 Q1 L0\n\n;===== first homing end =====\n\nM400\n;M73 P99\n\n;===== detection start =====\n\nM1002 judge_flag build_plate_detect_flag\nM622 S1\n ;M1002 gcode_claim_action : 11 ; Indentifying build plate type\n M972 S19 P0 C0 ; heatbed presence detection\n M972 S31 P0 T5000 ; toolhead camera dirty detection\n ;M1002 gcode_claim_action : 73 ; Build plate alignment detection\n M972 S34 P0 T5000 ; heatbed plate offset detection\nM623\n\nM1002 gcode_claim_action : 72 ; Hotend Type Detection\nT1001\nM972 S14 P0 T5000 ; nozzle type detection\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]} T{filament_map[initial_no_support_filament_id] % 2} ; rise temp in advance\n\nG151 P{filament_map[initial_no_support_filament_id] % 2} M ; plug the heat nozzle\n\n{if max_print_z >= 145}\nM1002 gcode_claim_action : 75 ; Heatbed underside foreign object detection\nG3811 Z{max_print_z} ; Detect obstacles at the bottom of the heated bed\n{endif}\n\n;===== detection end =====\n\nM400\n;M73 P99\n\n;===== prepare print temperature and material ==========\nM400\nM211 X0 Y0 Z0 ;turn off soft endstop\nM975 S1 ; turn on input shaping\n\nG29.2 S0 ; avoid invalid abl data\n\n{if ((filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60*0.8} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60*0.8} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{endif}\n\nM620.11 P0 I[initial_no_support_filament_id] B[initial_no_support_hotend] E0\n\n{if long_retraction_when_ec }\nM620.11 K1 I[initial_no_support_filament_id] B[initial_no_support_hotend] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[initial_no_support_filament_id] B[initial_no_support_hotend] R0\n{endif}\n\nM628 S1\n{if filament_type[initial_no_support_filament_id] == \"TPU\"}\n M620.11 S0 L0 I[initial_no_support_filament_id] B[initial_no_support_hotend] E-{retraction_distances_when_cut[initial_no_support_filament_id]} F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60}\n{else}\n{if (filament_type[initial_no_support_filament_id] == \"PA\") || (filament_type[initial_no_support_filament_id] == \"PA-GF\")}\n M620.11 S1 L0 I[initial_no_support_filament_id] B[initial_no_support_hotend] R4 D2 E-{retraction_distances_when_cut[initial_no_support_filament_id]} F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60}\n{else}\n M620.11 S1 L0 I[initial_no_support_filament_id] B[initial_no_support_hotend] R10 D8 E-{retraction_distances_when_cut[initial_no_support_filament_id]} F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60}\n{endif}\n{endif}\nM629\n\nM620 S[initial_no_support_filament_id]A H[initial_no_support_hotend] ; switch material if AMS exist\nM1002 gcode_claim_action : 4\nM1002 set_filament_type:UNKNOWN\nM400\nT[initial_no_support_filament_id] H[initial_no_support_hotend]\nM400\nM628 S0\nM629\nM400\nM1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\nM621 S[initial_no_support_filament_id]A\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\nM400\nM106 P1 S0\n\nG29.2 S1\n;===== prepare print temperature and material ==========\n\nM400\n;M73 P99\n\n;===== auto extrude cali start =========================\nM975 S1\nM1002 judge_flag extrude_cali_flag\n\nM622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\nM623\n\nM622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\nM623\n\nM622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\nM623\n\n;===== auto extrude cali end =========================\n\n{if filament_type[initial_no_support_filament_id] == \"TPU\"}\n G150.2\n G150.1\n G150.2\n G150.1\n G150.2\n G150.1\n{else}\n M106 P1 S0\n M400 S2\n M109 S{nozzle_temperature[initial_no_support_filament_id]} ; wait tmpr to extrude\n M83\n {if(nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.8)}\n G1 E60 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n {else}\n G1 E45 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n {endif}\n G1 E-3 F1800\n M400 P500\n G150.2\n G150.1\n{endif}\n\nG91\nG1 Y-16 F12000 ; move away from the trash bin\nG90\n\nM400\n;M73 P99\n\n;===== wipe right nozzle start =====\n\nM1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n {if (overall_chamber_temperature >= 40)}\n G150 T{nozzle_temperature_initial_layer[initial_no_support_filament_id] - 80}\n {endif}\nM106 S255 ; turn on fan to cool the nozzle\n\n;===== wipe left nozzle end =====\n\nM400\n;M73 P99\n\n{if (overall_chamber_temperature >= 40)}\n M1002 gcode_claim_action : 49\n M191 S[overall_chamber_temperature] ; wait for chamber temp\n{endif}\n\nM400\n;M73 P99\n\n;===== bed leveling ==================================\n\nM1002 judge_flag g29_before_print_flag\n\nM190 S[bed_temperature_initial_layer_single]; ensure bed temp\nM109 S140 A\nM106 S0 ; turn off fan , too noisy\n\nG91\nG1 Z5 F1200\nG90\nG1 X175 Y160 F30000\n\nM622 J1\n M1002 gcode_claim_action : 1\n G29.20 A3\n G29 A1 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n M400\nM623\n\nM622 J2\n M1002 gcode_claim_action : 1\n {if has_tpu_in_first_layer}\n G29.20 A3\n G29 A1 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {else}\n G29.20 A4\n G29 A2 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {endif}\n M400\nM623\n\nM622 J0\n G28 R\nM623\n\n;===== bed leveling end ================================\n\n;===== z ofst cali start =====\n\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n\n G383 O0 M2 T140\n\n;===== z ofst cali end =====\n\nG39.1 ; cali nozzle wrapped detection pos\n\nG90\nG1 Z5 F1200\nG1 X270 Y-0.5 F60000\nG28.140 S0 ; cali pre-extrude z pos\n\nM141 S[overall_chamber_temperature]\nM104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]} A\n\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n\n G90\n G1 Z5 F1200\n G1 X187 Y160 F20000\n T1000\n M400 P200\n\n M970.3 Q1 A5 K0 O1\n M974 Q1 S2 P0\n\n M970.3 Q0 A5 K0 O1\n M974 Q0 S2 P0\n\n M970.2 Q2 K0 W38 Z0.01\n M974 Q2 S2 P0\n\n M975 S1\n;===== mech mode sweep end =====\n\nM400\n;M73 P99\n\nG150.3 ; move to garbage can to wait for temp\nM1026\nG29.9\n\n;===== xy ofst cali start =====\n\nM1002 judge_flag auto_cali_toolhead_offset_flag\n\nM622 J0\n M1012.5 N1 R1\nM623\n\nM622 J1\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : (first_filaments[0] != -1 ? first_filaments[0] : 0))]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : (first_filaments[0] != -1 ? first_filaments[0] : 0))}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : (first_filaments[1] != -1 ? first_filaments[1] : 0))]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : (first_filaments[1] != -1 ? first_filaments[1] : 0))}\n M620 D[initial_no_support_hotend]\n G383 O1 T{nozzle_temperature_initial_layer[initial_no_support_filament_id]} L{initial_no_support_filament_id}\n M141 S[overall_chamber_temperature]\nM623\n\nM622 J2\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : (first_filaments[0] != -1 ? first_filaments[0] : 0))]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : (first_filaments[0] != -1 ? first_filaments[0] : 0))}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : (first_filaments[1] != -1 ? first_filaments[1] : 0))]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : (first_filaments[1] != -1 ? first_filaments[1] : 0))}\n M620 D[initial_no_support_hotend]\n G383.3 T{nozzle_temperature_initial_layer[initial_no_support_filament_id]} L{initial_no_support_filament_id}\n M141 S[overall_chamber_temperature]\nM623\n;===== xy ofst cali end =====\n\nM400\n;M73 P99\n\nM1002 gcode_claim_action : 0\nM400\n\n;============switch again==================\nM211 X0 Y0 Z0 ;turn off soft endstop\nG91\nG1 Z6 F1200\nG90\nM1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\nM620 S[initial_no_support_filament_id]A H[initial_no_support_hotend]\nM400\nT[initial_no_support_filament_id] H[initial_no_support_hotend]\nM400\nM628 S0\nM629\nM400\nM621 S[initial_no_support_filament_id]A\n\n;============switch again==================\n\nM400\n;M73 P99\n\n;===== wait temperature reaching the reference value =======\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]} ; rise to print tmpr\n\nM140 S[bed_temperature_initial_layer_single]\nM190 S[bed_temperature_initial_layer_single]\n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off fan\n M106 P2 S0 ; turn off big fan\n ;==== set ext toodhead cooling fan ====\n {if (min_vitrification_temperature <= 50)}\n M106 P9 S255\n {endif}\n ;============set motor current==================\n M400 S1\n\n;===== wait temperature reaching the reference value =======\n\nM400\n;M73 P99\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if curr_bed_type==\"Textured PEI Plate\"}\n {if nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2}\n G29.1 Z{-0.01} ; for Textured PEI Plate\n {else}\n G29.1 Z{-0.02} ; for Textured PEI Plate\n {endif}\n {else}\n {if nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2}\n G29.1 Z{0.01}\n {endif}\n {endif}\n\nG150.1\n\nM975 S1 ; turn on mech mode supression\nM983.4 S1 ; turn on deformation compensation\nG29.2 S1 ; turn on pos comp\nG29.7 S1\n\nG90\nG1 Z5 F1200\nG1 Y295 F30000\nG1 Y265 F18000\n\n;===== nozzle load line ===============================\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n G1 Z5 F1200\n G1 X270 Y-0.5 F60000\n G28.14 R0\n G29.2 S0\n G91\n G1 Z0.8 F1200\n G90\n G1 X250 F60000\n M400 P50\n M500 D1\n M400 S3\n M109 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n M83\n{if nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.8}\n G1 E5 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n{endif}\n{if (filament_type[initial_no_support_filament_id] == \"TPU\")}\n G1 E5 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n{endif}\n G1 E5 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n G1 X290 E10 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n G91\n G3 Z0.4 I1.217 J0 P1 F60000\n G90\n M83\n G29.2 S1 ; ensure z comp turn on\n;===== noozle load line end ===========================\n\nM400\n;M73 P99\n\nM993 A1 B1 C1 ; nozzle cam detection allowed.\n\n{if (filament_type[initial_no_support_filament_id] == \"TPU\")}\nM1015.3 S1;enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PETG\")\n || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;disable E air printing detect\n{endif}\n\nM620.6 I[initial_no_support_filament_id] H[initial_no_support_hotend] W1 ;enable ams air printing detect\nM620 Q1\n\nM211 Z1\nG29.99\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template time_lapse_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template time_lapse_gcode.json new file mode 100644 index 0000000000..d0bc930da5 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template time_lapse_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2D 0.4 nozzle template time_lapse_gcode", + "instantiation": "false", + "time_lapse_gcode": ";======== H2D 20260731========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\n\nM1002 judge_flag timelapse_record_flag\nM622 J1\n {if !spiral_mode && !timelapse_inline_photo}\n M993 A2 B2 C2\n M993 A0 B0 C0\n {endif}\n\n {if timelapse_inline_photo}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {else}\n M622.1 S0 ; for prev firmware, default turn off\n M1002 set_flag smooth_safe_pos_suppoprt_flag=1\n M1002 judge_flag smooth_safe_pos_suppoprt_flag\n \n M622 J0\n {if !spiral_mode && !(has_timelapse_safe_pos && timelapse_type == 0) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n M83\n G1 Z{max_layer_z + 0.4} F1200\n M400\n {endif}\n {endif}\n\n {if has_timelapse_safe_pos && timelapse_type == 0 && !spiral_mode}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} X{timelapse_pos_x} Y{timelapse_pos_y} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {else}\n {if spiral_mode}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {else}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {endif}\n {endif}\n\n {if !spiral_mode && !(has_timelapse_safe_pos && timelapse_type == 0) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n G90\n G1 Z{max_layer_z + 3.0} F1200\n G1 Y295 F30000\n G1 Y265 F18000\n M83\n {endif}\n {endif}\n M623\n\n M622 J1\n {if !spiral_mode && !(has_timelapse_safe_pos) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n M83\n G1 Z{max_layer_z + 0.4} F1200\n M400\n {endif}\n {endif}\n\n {if has_timelapse_safe_pos && !spiral_mode}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} U{timelapse_pos_x} V{timelapse_pos_y} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {else}\n {if spiral_mode}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {else}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {endif}\n {endif}\n\n {if !spiral_mode && !(has_timelapse_safe_pos) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n G90\n G1 Z{max_layer_z + 3.0} F1200\n G1 Y295 F30000\n G1 Y265 F18000\n M83\n {endif}\n {endif}\n M623\n {endif}\n \n {if !spiral_mode && !timelapse_inline_photo}\n M993 A3 B3 C3\n {endif}\nM623\n; SKIPPABLE_END\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template wrapping_detection_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template wrapping_detection_gcode.json new file mode 100644 index 0000000000..c174f3658d --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle template wrapping_detection_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2D 0.4 nozzle template wrapping_detection_gcode", + "instantiation": "false", + "wrapping_detection_gcode": ";======== H2D 20250729 clumping ========\n{if !spiral_mode}\n M622.1 S0 ; for previous firmware, default turn off\n M1002 set_flag g39_forced_detection_flag=1\n M1002 judge_flag g39_forced_detection_flag\n M622 J1\n {if layer_num == 3 || layer_num == 10 || layer_num == 19}\n M993 A2 B2 C2 ; nozzle cam detection allow status save.\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n M400 P100\n\n G39\n\n G90\n G1 Y295 F30000\n G1 Y265 F18000\n \n M993 A3 B3 C3 ; nozzle cam detection allow status restore.\n {endif}\n M623\n{endif}\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle.json index 6259ce4946..7102ecef5b 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2D 0.4 nozzle.json @@ -10,131 +10,15 @@ "0.4" ], "printer_model": "Bambu Lab H2D", - "printer_variant": "0.4", "farthest_point_timelapse": "1", - "enable_long_retraction_when_cut": [ - "2" - ], - "enable_pre_heating": "1", - "extruder_clearance_dist_to_rod": "50", - "extruder_clearance_height_to_lid": "201", - "extruder_clearance_height_to_rod": "47.4", - "extruder_clearance_max_radius": "96", - "extruder_printable_area": [ - "0x0,325x0,325x320,0x320", - "25x0,350x0,350x320,25x320" - ], - "fan_direction": "left", - "hotend_heating_rate": [ - "3.6", - "3.6", - "3.6", - "3.6", - "3.6" - ], - "machine_load_filament_time": "30", - "machine_max_speed_e": [ - "50", - "50", - "50", - "50", - "50", - "50", - "50", - "50", - "50", - "50" - ], - "machine_max_speed_x": [ - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "machine_max_speed_y": [ - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "machine_max_speed_z": [ - "30", - "30", - "30", - "30", - "30", - "30", - "30", - "30", - "30", - "30" - ], - "machine_switch_extruder_time": "5.6", - "machine_unload_filament_time": "30", - "master_extruder_id": "2", - "nozzle_volume": [ - "130", - "133", - "145", - "148", - "148" - ], - "printable_area": [ - "0x0", - "350x0", - "350x320", - "0x320" - ], - "retract_lift_below": [ - "319", - "319", - "319", - "319", - "319" - ], - "retraction_distances_when_cut": [ - "10", - "10", - "10", - "10", - "10" - ], - "support_air_filtration": "1", - "support_chamber_temp_control": "1", - "support_cooling_filter": "1", - "support_object_skip_flush": "1", - "wrapping_exclude_area": [ - "145x310", - "256x310", - "256x326", - "145x326" - ], - "upward_compatible_machine": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "machine_start_gcode": ";===== machine: H2D =========================\n;===== date: 20260116 =====================\n\n;M1002 set_flag extrude_cali_flag=1\n;M1002 set_flag g29_before_print_flag=1\n;M1002 set_flag auto_cali_toolhead_offset_flag=1\n;M1002 set_flag build_plate_detect_flag=1\n\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\nM400\n;M73 P99\n\nM960 S10 P1 ; ext fan led\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L99 C53 D9 M99 E53 F9 N99 \nM1006 A56 B9 L99 C56 D9 M99 E56 F9 N99 \nM1006 A61 B9 L99 C61 D9 M99 E61 F9 N99 \nM1006 A53 B9 L99 C53 D9 M99 E53 F9 N99 \nM1006 A56 B9 L99 C56 D9 M99 E56 F9 N99 \nM1006 A61 B18 L99 C61 D18 M99 E61 F18 N99 \nM1006 W\n;=====printer start sound ===================\n\n;===== reset machine status =================\nM204 S10000\nM630 S0 P0\n\nG90\nM17 D ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM1002 set_gcode_claim_speed_level 5 ;Reset speed level\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nG29.1 Z{+0.0} ; clear z-trim value first\nM983.1 M1 \nM901 D4\nM481 S0 ; turn off cutter pos comp\nG28.140 D0; reset pre-extrude z pos\n;===== reset machine status =================\n\nM620 M ;enable remap\n\n;===== avoid end stop =================\nG91\nG380 S2 Z42 F1200\nG380 S2 Z-12 F1200\nG90\n;===== avoid end stop =================\n\n;==== set airduct mode ==== \n\n{if (overall_chamber_temperature >= 40)}\n\n M145 P1 ; set airduct mode to heating mode for heating\n M106 P2 S0 ; turn off auxiliary fan\n M106 P3 S0 ; turn off chamber fan\n\n{else}\n M145 P0 ; set airduct mode to cooling mode for cooling\n M106 P2 S178 ; turn on auxiliary fan for cooling\n M106 P3 S127 ; turn on chamber fan for cooling\n M140 S0 ; stop heatbed from heating\n\n M1002 gcode_claim_action : 29\n M191 S0 ; wait for chamber temp\n M106 P2 S0 ; turn off auxiliary fan\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R30 S35 T40 U0.3 V0.5 W0.8 O40 ; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 T45 U0.3 V0.5 W0.8 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n {if (!is_all_bbl_filament)}\n M142 P1 R35 S40 T45 U0.3 V0.5 W0.8 O45 L1 ; set third-party PETG chamber autocooling\n {else}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R35 S45 T50 U0.3 V0.5 W0.8 O50 L1 ; set PETG ND0.2 chamber autocooling\n {else}\n M142 P1 R35 S50 T55 U0.3 V0.5 W0.8 O55 L1 ; set PETG ND0.4 chamber autocooling\n {endif}\n {endif}\n {endif}\n {if(cooling_filter_enabled)}\n M145.2 P0 F0\n {else}\n M145.2 P0 F1\n {endif}\n{endif}\n;==== set airduct mode ==== \n\n;===== start to heat heatbed & hotend==========\n\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n\n M104 S140 A\n M140 S[bed_temperature_initial_layer_single]\n\n ;===== set chamber temperature ==========\n {if (overall_chamber_temperature >= 40)}\n M145 P1 ; set airduct mode to heating mode\n M141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n {endif}\n ;===== set chamber temperature ==========\n\n;===== start to heat heatbead & hotend==========\n\n;====== cog noise reduction=================\nM982.2 S1 ; turn on cog noise reduction\n\n;===== first homing start =====\nM1002 gcode_claim_action : 13\n\nG28 X T300\n\nG150.1 F18000 ; wipe mouth to avoid filament stick to heatbed\nG150.3 F18000\nM400 P200\nM972 S24 P0 T2000\n\nM1002 gcode_claim_action : 74 ; Heatbed surface foreign object detection\n{if curr_bed_type==\"Textured PEI Plate\"}\nM972 S26 P0 C0\n{else}\nM972 S36 P0 C0 X1\n{endif}\nM972 S35 P0 C0\n\nM972 S41 P0 T5000 ; trash can anti-collision\n\nM1009 Q1 L1\nG91\nG380 S2 Z30 F1200 ; lower heatbed to move toolhead\nG90\nG1 X175 Y160 F30000\nG28 Z P0 T250\nM1009 Q1 L0\n\n;===== first homing end =====\n\nM400\n;M73 P99\n\n;===== detection start =====\n \nM1002 judge_flag build_plate_detect_flag\nM622 S1\n ;M1002 gcode_claim_action : 11 ; Indentifying build plate type\n M972 S19 P0 C0 ; heatbed presence detection\n M972 S31 P0 T5000 ; toolhead camera dirty detection\n ;M1002 gcode_claim_action : 73 ; Build plate alignment detection\n M972 S34 P0 T5000 ; heatbed plate offset detection\nM623\n\nM1002 gcode_claim_action : 72 ; Hotend Type Detection\nT1001\nM972 S14 P0 T5000 ; nozzle type detection\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} T{filament_map[initial_no_support_extruder] % 2} ; rise temp in advance\n\nG151 P{filament_map[initial_no_support_extruder] % 2} M ; plug the heat nozzle\n\n{if max_print_z >= 145}\nM1002 gcode_claim_action : 75 ; Heatbed underside foreign object detection\nG3811 Z{max_print_z} ; Detect obstacles at the bottom of the heated bed\n{endif}\n\n;===== detection end =====\n\nM400\n;M73 P99\n\n;===== prepare print temperature and material ==========\nM400\nM211 X0 Y0 Z0 ;turn off soft endstop\nM975 S1 ; turn on input shaping\n\nG29.2 S0 ; avoid invalid abl data\n\n{if ((filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG\")) && (nozzle_diameter[initial_no_support_extruder] == 0.2)}\nM620.10 A0 F74.8347 H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F74.8347 H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60*0.8} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60*0.8} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n{endif}\n\nM620.11 P0 I[initial_no_support_extruder] E0\n\n{if long_retraction_when_ec }\nM620.11 K1 I[initial_no_support_extruder] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[initial_no_support_extruder] R0\n{endif}\n\nM628 S1\n{if filament_type[initial_no_support_extruder] == \"TPU\"}\n M620.11 S0 L0 I[initial_no_support_extruder] E-{retraction_distances_when_cut[initial_no_support_extruder]} F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60}\n{else}\n{if (filament_type[initial_no_support_extruder] == \"PA\") || (filament_type[initial_no_support_extruder] == \"PA-GF\")}\n M620.11 S1 L0 I[initial_no_support_extruder] R4 D2 E-{retraction_distances_when_cut[initial_no_support_extruder]} F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60}\n{else}\n M620.11 S1 L0 I[initial_no_support_extruder] R10 D8 E-{retraction_distances_when_cut[initial_no_support_extruder]} F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60}\n{endif}\n{endif}\nM629\n\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\nM1002 gcode_claim_action : 4\nM1002 set_filament_type:UNKNOWN\nM400\nT[initial_no_support_extruder]\nM400\nM628 S0\nM629\nM400\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\nM621 S[initial_no_support_extruder]A\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nM400\nM106 P1 S0\n\nG29.2 S1\n;===== prepare print temperature and material ==========\n\nM400\n;M73 P99\n\n;===== auto extrude cali start =========================\nM975 S1\nM1002 judge_flag extrude_cali_flag\n\nM622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\nM623\n\nM622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\nM623\n\nM622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\nM623\n\n;===== auto extrude cali end =========================\n\n{if filament_type[initial_no_support_extruder] == \"TPU\"}\n G150.2\n G150.1\n G150.2\n G150.1\n G150.2\n G150.1\n{else}\n M106 P1 S0\n M400 S2\n M109 S{nozzle_temperature[initial_no_support_extruder]} ; wait tmpr to extrude\n M83\n {if(nozzle_diameter == 0.8)}\n G1 E60 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60}\n {else}\n G1 E45 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60}\n {endif}\n G1 E-3 F1800\n M400 P500\n G150.2\n G150.1\n{endif}\n\nG91\nG1 Y-16 F12000 ; move away from the trash bin\nG90\n\nM400\n;M73 P99\n\n;===== wipe right nozzle start =====\n\nM1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n {if (overall_chamber_temperature >= 40)}\n G150 T{nozzle_temperature_initial_layer[initial_no_support_extruder] - 80}\n {endif}\nM106 S255 ; turn on fan to cool the nozzle\n\n;===== wipe left nozzle end =====\n\nM400\n;M73 P99\n\n{if (overall_chamber_temperature >= 40)}\n M1002 gcode_claim_action : 49\n M191 S[overall_chamber_temperature] ; wait for chamber temp\n{endif}\n\nM400\n;M73 P99\n\n;===== bed leveling ==================================\n\nM1002 judge_flag g29_before_print_flag\n\nM190 S[bed_temperature_initial_layer_single]; ensure bed temp\nM109 S140 A\nM106 S0 ; turn off fan , too noisy\n\nG91\nG1 Z5 F1200\nG90\nG1 X175 Y160 F30000\n\nM622 J1\n M1002 gcode_claim_action : 1\n G29.20 A3\n G29 A1 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R \n M400\n M500 ; save cali data\nM623\n \nM622 J2\n M1002 gcode_claim_action : 1\n {if has_tpu_in_first_layer}\n G29.20 A3\n G29 A1 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {else}\n G29.20 A4\n G29 A2 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {endif}\n M400\n M500 ; save cali data\nM623\n\nM622 J0\n G28 R\nM623\n\n;===== bed leveling end ================================\n\n;===== z ofst cali start =====\n\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n\n G383 O0 M2 T140\n M500\n\n;===== z ofst cali end =====\n\nG39.1 ; cali nozzle wrapped detection pos\nM500\n\nG90\nG1 Z5 F1200\nG1 X270 Y-0.5 F60000\nG28.140 S0 ; cali pre-extrude z pos\n\nM141 S[overall_chamber_temperature]\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} A\n\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n\n G90\n G1 Z5 F1200\n G1 X187 Y160 F20000\n T1000\n M400 P200\n\n M970.3 Q1 A5 K0 O1\n M974 Q1 S2 P0\n\n M970.3 Q0 A5 K0 O1\n M974 Q0 S2 P0\n\n M970.2 Q2 K0 W38 Z0.01\n M974 Q2 S2 P0\n M500\n\n M975 S1\n;===== mech mode sweep end =====\n\nM400\n;M73 P99\n\nG150.3 ; move to garbage can to wait for temp\nM1026\nG29.9\n\n;===== xy ofst cali start =====\n\nM1002 judge_flag auto_cali_toolhead_offset_flag\n\nM622 J0\n M1012.5 N1 R1\n M500\nM623\n\nM622 J1\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])}\n G383 O1 T{nozzle_temperature_initial_layer[initial_no_support_extruder]} L{initial_no_support_extruder}\n M500\n M141 S[overall_chamber_temperature]\nM623\n\nM622 J2\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])}\n G383.3 T{nozzle_temperature_initial_layer[initial_no_support_extruder]} L{initial_no_support_extruder}\n M500\n M141 S[overall_chamber_temperature]\nM623\n;===== xy ofst cali end =====\n\nM400\n;M73 P99\n\nM1002 gcode_claim_action : 0\nM400\n\n;============switch again==================\n\nM211 X0 Y0 Z0 ;turn off soft endstop\nG91\nG1 Z6 F1200\nG90\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\nM620 S[initial_no_support_extruder]A\nM400\nT[initial_no_support_extruder]\nM400\nM628 S0\nM629\nM400\nM621 S[initial_no_support_extruder]A\n\n;============switch again==================\n\nM400\n;M73 P99\n\n;===== wait temperature reaching the reference value =======\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise to print tmpr\n\nM140 S[bed_temperature_initial_layer_single] \nM190 S[bed_temperature_initial_layer_single] \n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off fan\n M106 P2 S0 ; turn off big fan\n ;==== set ext toodhead cooling fan ==== \n {if (min_vitrification_temperature <= 50)}\n M106 P9 S255\n {endif}\n ;============set motor current==================\n M400 S1\n\n;===== wait temperature reaching the reference value =======\n\nM400\n;M73 P99\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if curr_bed_type==\"Textured PEI Plate\"}\n {if nozzle_diameter[initial_no_support_extruder] == 0.2}\n G29.1 Z{-0.01} ; for Textured PEI Plate\n {else}\n G29.1 Z{-0.02} ; for Textured PEI Plate\n {endif}\n {else}\n {if nozzle_diameter[initial_no_support_extruder] == 0.2}\n G29.1 Z{0.01} ; for Textured PEI Plate\n {endif}\n {endif}\n \nG150.1\n\nM975 S1 ; turn on mech mode supression\nM983.4 S1 ; turn on deformation compensation \nG29.2 S1 ; turn on pos comp\nG29.7 S1\n\nG90\nG1 Z5 F1200\nG1 Y295 F30000\nG1 Y265 F18000\n\n;===== nozzle load line ===============================\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n G1 Z5 F1200\n G1 X270 Y-0.5 F60000\n G28.14 R0\n G29.2 S0\n G91\n G1 Z0.8 F1200\n G90\n G1 X250 F60000\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n M83\n{if (filament_type[initial_no_support_extruder] == \"TPU\")}\n G1 E5 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60}\n{endif}\n G1 E5 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60}\n G1 X290 E10 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60}\n G91\n G3 Z0.4 I1.217 J0 P1 F60000\n G90\n M83\n G29.2 S1 ; ensure z comp turn on\n;===== noozle load line end ===========================\n\nM400\n;M73 P99\n\nM993 A1 B1 C1 ; nozzle cam detection allowed.\n\n{if (filament_type[initial_no_support_extruder] == \"TPU\")}\nM1015.3 S1;enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PETG\")\n || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H[nozzle_diameter] ;disable E air printing detect\n{endif}\n\nM620.6 I[initial_no_support_extruder] W1 ;enable ams air printing detect\n\nM211 Z1\nG29.99\n\n\n", - "machine_end_gcode": ";========== H2D end ==========\n;===== date: 2025/12/26 =====\n\nG392 S0 ;turn off nozzle clog detect\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nM400\nM211 Z1\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\n\nM1002 judge_flag timelapse_record_flag\nM622 J1\n G150.3\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S5 ;wait for last picture to be taken\nM623 ;end of \"timelapse_record_flag\"\n\nG90\nG1 Z{max_layer_z + 10} F900 ; lower z a little\n\nG90\nM141 S0 ; turn off chamber heating\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM106 P9 S0 ; turn off ext toodhead cooling fan\n; pull back filament to AMS\nM620 S65535\nT65535\nG150.2\nM621 S65535\n\nM620 S65279\nT65279\nG150.2\nM621 S65279\n\nG150.3\n\nM104 S0 T0; turn off hotend\nM104 S0 T1; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (100.0 - max_layer_z/2) > 0}\n {if (max_layer_z + 100.0 - max_layer_z/2) < 320}\n G1 Z{max_layer_z + 100.0 - max_layer_z/2} F600\n G1 Z{max_layer_z + 98.0 - max_layer_z/2}\n {else}\n G1 Z320 F600\n G1 Z320\n {endif}\n{else}\n {if (max_layer_z + 4.0) < 320}\n G1 Z{max_layer_z + 4.0} F600\n G1 Z{max_layer_z + 2.0}\n {else}\n G1 Z320 F600\n G1 Z320\n {endif}\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM1015.4 S0 K0 ;disable air printing detect\n\n;=====printer finish air purification=========\nM622.1 S0\nM1002 judge_flag print_finish_air_filt_flag\n\nM622 J1\nM1002 gcode_claim_action : 66\nM145 P1\nM106 P6 S255\nM400 S180\nM106 P6 S0\nM623\n\nM622 J2\nM1002 gcode_claim_action : 66\nM145 P0\nM106 P3 S127\nM400 S180\nM106 P3 S0\nM623\n;=====printer finish air purification=========\n\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L99 C53 D10 M99 E53 F10 N99 \nM1006 A57 B10 L99 C57 D10 M99 E57 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A53 B10 L99 C53 D10 M99 E53 F10 N99 \nM1006 A57 B10 L99 C57 D10 M99 E57 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A48 B10 L99 C48 D10 M99 E48 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A60 B10 L99 C60 D10 M99 E60 F10 N99 \nM1006 W\n;=====printer finish sound=========\nM400\nM18\n\n", - "layer_change_gcode": ";======== H2D 20250710 layer_change ========\n; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change\n", - "time_lapse_gcode": ";======== H2D 20260612========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\n\nM1002 judge_flag timelapse_record_flag\nM622 J1\n {if !spiral_mode}\n M993 A2 B2 C2\n M993 A0 B0 C0\n {endif}\n\n {if timelapse_inline_photo}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {else}\n M622.1 S0 ; for prev firmware, default turn off\n M1002 set_flag smooth_safe_pos_suppoprt_flag=1\n M1002 judge_flag smooth_safe_pos_suppoprt_flag\n \n M622 J0\n {if !spiral_mode && !(has_timelapse_safe_pos && timelapse_type == 0) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n M83\n G1 Z{max_layer_z + 0.4} F1200\n M400\n {endif}\n {endif}\n\n {if has_timelapse_safe_pos && timelapse_type == 0 && !spiral_mode}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} X{timelapse_pos_x} Y{timelapse_pos_y} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {else}\n {if spiral_mode}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {else}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {endif}\n {endif}\n\n {if !spiral_mode && !(has_timelapse_safe_pos && timelapse_type == 0) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n G90\n G1 Z{max_layer_z + 3.0} F1200\n G1 Y295 F30000\n G1 Y265 F18000\n M83\n {endif}\n {endif}\n M623\n\n M622 J1\n {if !spiral_mode && !(has_timelapse_safe_pos) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n M83\n G1 Z{max_layer_z + 0.4} F1200\n M400\n {endif}\n {endif}\n\n {if has_timelapse_safe_pos && !spiral_mode}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} U{timelapse_pos_x} V{timelapse_pos_y} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {else}\n {if spiral_mode}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {else}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {endif}\n {endif}\n\n {if !spiral_mode && !(has_timelapse_safe_pos) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n G90\n G1 Z{max_layer_z + 3.0} F1200\n G1 Y295 F30000\n G1 Y265 F18000\n M83\n {endif}\n {endif}\n M623\n {endif}\n \n {if !spiral_mode}\n M993 A3 B3 C3\n {endif}\nM623\n; SKIPPABLE_END\n", - "wrapping_detection_gcode": ";======== H2D 20250729 clumping ========\n{if !spiral_mode}\n M622.1 S0 ; for previous firmware, default turn off\n M1002 set_flag g39_forced_detection_flag=1\n M1002 judge_flag g39_forced_detection_flag\n M622 J1\n {if layer_num == 3 || layer_num == 10 || layer_num == 19}\n M993 A2 B2 C2 ; nozzle cam detection allow status save.\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n M400 P100\n\n G39\n\n G90\n G1 Y295 F30000\n G1 Y265 F18000\n \n M993 A3 B3 C3 ; nozzle cam detection allow status restore.\n {endif}\n M623\n{endif}\n", - "change_filament_gcode": ";======== H2D ========\n;===== 20260116 =====\nM993 A2 B2 C2 ; nozzle cam detection allow status save.\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n{if (filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PETG\")\n || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG-CF\")}\nM1015.4 S1 K0 ;disable E air printing detect\n{else}\nM1015.4 S0 ; disable E air printing detect\n{endif}\n\nM620 S[next_extruder]A\nM1002 gcode_claim_action : 4\nM204 S9000\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\nM106 P2 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\n{if ((filament_type[current_extruder] == \"PLA\") || (filament_type[current_extruder] == \"PLA-CF\") || (filament_type[current_extruder] == \"PETG\")) && (nozzle_diameter[current_extruder] == 0.2)}\nM620.10 A0 F74.8347 L[flush_length] H{nozzle_diameter[current_extruder]} T{flush_temperatures[current_extruder]} P[old_filament_temp] S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[current_extruder]/2.4053*60*0.8} L[flush_length] H{nozzle_diameter[current_extruder]} T{flush_temperatures[current_extruder]} P[old_filament_temp] S1\n{endif}\n\n{if ((filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG\")) && (nozzle_diameter[next_extruder] == 0.2)}\nM620.10 A1 F74.8347 L[flush_length] H{nozzle_diameter[next_extruder]} T{flush_temperatures[next_extruder]} P[new_filament_temp] S1\n{else}\nM620.10 A1 F{flush_volumetric_speeds[next_extruder]/2.4053*60*0.8} L[flush_length] H{nozzle_diameter[next_extruder]} T{flush_temperatures[next_extruder]} P[new_filament_temp] S1\n{endif}\n\n{if long_retraction_when_cut}\nM620.11 P1 I[current_extruder] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{else}\nM620.11 P0 I[current_extruder] E0\n{endif}\n\n{if long_retraction_when_ec}\nM620.11 K1 I[current_extruder] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[current_extruder] R0\n{endif}\n\nM620.15 C{new_filament_temp - filament_cooling_before_tower[next_extruder]}\n\nM628 S1\n{if filament_type[current_extruder] == \"TPU\"}\nM620.11 S0 L0 I[current_extruder] E-{retraction_distances_when_cut[current_extruder]} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{else}\n{if (filament_type[current_extruder] == \"PA\") || (filament_type[current_extruder] == \"PA-GF\")}\nM620.11 S1 L0 I[current_extruder] R4 D2 E-{retraction_distances_when_cut[current_extruder]} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{else}\nM620.11 S1 L0 I[current_extruder] R10 D8 E-{retraction_distances_when_cut[current_extruder]} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{endif}\n{endif}\nM629\n\n{if (filament_type[current_extruder] == \"TPU\" || filament_type[next_extruder] == \"TPU\") && (old_extruder_variant != \"Direct Drive TPU High Flow\")}\nM620.11 H2 C331\n{else}\nM620.11 H0\n{endif}\n\n{if (old_extruder_variant == \"Direct Drive TPU High Flow\") && (filament_map[current_extruder] == 2) && (filament_map[next_extruder] == 1)}\n;debug log pe:{previous_extruder} ce:{current_extruder} ne:{next_extruder} oev: {old_extruder_variant} nev:{new_extruder_variant}\n;debug fm-curr:{filament_map[current_extruder]} fm-next:{filament_map[next_extruder]}\n;sw from R2L&TPU kit, travel run a distance for sketch TPU\nG1 X30 Y30 F5000\nM400\nG1 X300 Y30 F5000\nM400\n{endif}\n\nT[next_extruder]\n\n;deretract\n{if filament_type[next_extruder] == \"TPU\"}\n{else}\n{if (filament_type[next_extruder] == \"PA\") || (filament_type[next_extruder] == \"PA-GF\")}\n;VG1 E1 F{max(new_filament_e_feedrate, 200)}\n;VG1 E1 F{max(new_filament_e_feedrate/2, 100)}\n{else}\n;VG1 E4 F{max(new_filament_e_feedrate, 200)}\n;VG1 E4 F{max(new_filament_e_feedrate/2, 100)}\n{endif}\n{endif}\n\n; VFLUSH_START\n\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\n\nSYNC T{ceil(flush_length / 125) * 5}\n\n; VFLUSH_END\n\nM1002 set_filament_type:{filament_type[next_extruder]}\n\nM400\nM83\n{if next_extruder < 255}\n\nM620.10 R{new_extruder_retracted_length}\nM628 S0\n;VM109 S[new_filament_temp]\nM629\nM400\n\n;prime_tower_interface\n{if is_prime_tower_interface && filament_tower_interface_purge_volume !=0}\nG150.1\nM620.13 W0 L{filament_tower_interface_purge_volume} T{filament_tower_interface_print_temp} R0.0\n{endif}\n;prime_tower_interface\n\nM983.3 F{filament_max_volumetric_speed[next_extruder]/2.4} A0.4 R{new_extruder_retracted_length}\n\nM400\n{if wipe_avoid_perimeter}\nG1 Y320 F30000\nG1 X{wipe_avoid_pos_x} F30000\n{endif}\nG1 Y295 F30000\nG1 Y265 F18000\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n\nM993 A3 B3 C3 ; nozzle cam detection allow status restore.\n\n{if (filament_type[next_extruder] == \"TPU\")}\nM1015.3 S1;enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PETG\")\n || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 ; disable E air printing detect\n{endif}\n\nM620.6 I[next_extruder] W1 ;enable ams air printing detect\nM1002 gcode_claim_action : 0", + "printer_variant": "0.4", "deretraction_speed": [ "30", "30", "30", "30", + "30", + "30", "30" ], "deretract_speed_extruder_change": [ @@ -142,22 +26,64 @@ "15", "15", "15", + "15", + "15", "15" ], + "extruder_clearance_height_to_lid": "201", + "extruder_clearance_height_to_rod": "47.4", + "extruder_clearance_max_radius": "96", + "extruder_clearance_dist_to_rod": "50", + "enable_long_retraction_when_cut": [ + "2" + ], + "enable_pre_heating": "1", + "extruder_height_gap": "5", + "extruder_printable_area": [ + "0x0,325x0,325x320,0x320", + "25x0,350x0,350x320,25x320" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow,Direct Drive E3D High Flow", + "Direct Drive Standard,Direct Drive High Flow,Direct Drive TPU High Flow,Direct Drive E3D High Flow" + ], + "fan_direction": "left", "hotend_cooling_rate": [ "2", "2", "2", "2", + "2", + "2", "2" ], + "hotend_heating_rate": [ + "3.6", + "3.6", + "3.6", + "3.6", + "3.6", + "3.6", + "3.6" + ], + "include": [ + "Bambu Lab H2D 0.4 nozzle template machine_start_gcode", + "Bambu Lab H2D 0.4 nozzle template machine_end_gcode", + "Bambu Lab H2D 0.4 nozzle template layer_change_gcode", + "Bambu Lab H2D 0.4 nozzle template time_lapse_gcode", + "Bambu Lab H2D 0.4 nozzle template wrapping_detection_gcode", + "Bambu Lab H2D 0.4 nozzle template change_filament_gcode" + ], "long_retractions_when_cut": [ "0", "0", "0", "0", + "0", + "0", "0" ], + "machine_load_filament_time": "26", "machine_max_acceleration_e": [ "5000", "5000", @@ -168,6 +94,10 @@ "5000", "5000", "5000", + "5000", + "5000", + "5000", + "5000", "5000" ], "machine_max_acceleration_extruding": [ @@ -180,6 +110,10 @@ "20000", "20000", "20000", + "20000", + "20000", + "20000", + "20000", "20000" ], "machine_max_acceleration_retracting": [ @@ -192,20 +126,12 @@ "5000", "5000", "5000", + "5000", + "5000", + "5000", + "5000", "5000" ], - "machine_max_acceleration_travel": [ - "9000", - "9000", - "9000", - "9000", - "9000", - "9000", - "9000", - "9000", - "9000", - "9000" - ], "machine_max_acceleration_x": [ "20000", "20000", @@ -216,6 +142,10 @@ "20000", "20000", "20000", + "20000", + "20000", + "20000", + "20000", "20000" ], "machine_max_acceleration_y": [ @@ -228,6 +158,10 @@ "20000", "20000", "20000", + "20000", + "20000", + "20000", + "20000", "20000" ], "machine_max_acceleration_z": [ @@ -240,6 +174,10 @@ "500", "500", "500", + "500", + "500", + "500", + "500", "500" ], "machine_max_jerk_e": [ @@ -252,6 +190,10 @@ "2.5", "2.5", "2.5", + "2.5", + "2.5", + "2.5", + "2.5", "2.5" ], "machine_max_jerk_x": [ @@ -264,6 +206,10 @@ "9", "9", "9", + "9", + "9", + "9", + "9", "9" ], "machine_max_jerk_y": [ @@ -276,6 +222,10 @@ "9", "9", "9", + "9", + "9", + "9", + "9", "9" ], "machine_max_jerk_z": [ @@ -288,25 +238,124 @@ "3", "3", "3", + "3", + "3", + "3", + "3", "3" ], + "machine_max_speed_e": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50", + "50", + "50", + "50", + "50", + "50", + "50", + "50" + ], + "machine_max_speed_x": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_y": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_z": [ + "30", + "30", + "30", + "30", + "30", + "30", + "30", + "30", + "30", + "30", + "30", + "30", + "30", + "30" + ], + "machine_switch_extruder_time": "5.6", + "machine_unload_filament_time": "26", + "master_extruder_id": "2", + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000" + ], "nozzle_flush_dataset": [ "1", "2", + "2", "1", "2", + "2", "2" ], - "nozzle_type": [ - "hardened_steel", - "hardened_steel", - "hardened_steel", - "hardened_steel", - "hardened_steel" + "nozzle_volume": [ + "130", + "133", + "133", + "145", + "148", + "148", + "148" + ], + "printable_area": [ + "0x0", + "350x0", + "350x320", + "0x320" ], "printer_extruder_id": [ "1", "1", + "1", + "2", "2", "2", "2" @@ -314,15 +363,19 @@ "printer_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Direct Drive Standard", "Direct Drive High Flow", - "Direct Drive TPU High Flow" + "Direct Drive TPU High Flow", + "Direct Drive E3D High Flow" ], "retract_before_wipe": [ "0%", "0%", "0%", "0%", + "0%", + "0%", "0%" ], "retract_length_toolchange": [ @@ -330,20 +383,17 @@ "2", "2", "2", + "2", + "2", "2" ], - "retract_lift_above": [ - "0", - "0", - "0", - "0", - "0" - ], "retract_restart_extra": [ "0", "0", "0", "0", + "0", + "0", "0" ], "retract_restart_extra_toolchange": [ @@ -351,6 +401,8 @@ "0", "0", "0", + "0", + "0", "0" ], "retract_when_changing_layer": [ @@ -358,13 +410,26 @@ "1", "1", "1", + "1", + "1", "1" ], + "retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10", + "10", + "10" + ], "retraction_length": [ "0.8", "0.8", "0.8", "0.8", + "0.8", + "0.8", "0.8" ], "retraction_minimum_travel": [ @@ -372,6 +437,8 @@ "1", "1", "1", + "1", + "1", "1" ], "retraction_speed": [ @@ -379,20 +446,53 @@ "30", "30", "30", + "30", + "30", "30" ], + "retract_lift_above": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "retract_lift_below": [ + "319", + "319", + "319", + "319", + "319", + "319", + "319" + ], + "support_cooling_filter": "1", + "support_chamber_temp_control": "1", + "support_object_skip_flush": "0", "wipe": [ "1", "1", "1", "1", + "1", + "1", "1" ], + "wrapping_exclude_area": [ + "145x310", + "256x310", + "256x326", + "145x326" + ], "wipe_distance": [ "2", "2", "2", "2", + "2", + "2", "2" ], "z_hop": [ @@ -400,6 +500,8 @@ "0.4", "0.4", "0.4", + "0.4", + "0.4", "0.4" ], "z_hop_types": [ @@ -407,10 +509,11 @@ "Auto Lift", "Auto Lift", "Auto Lift", + "Auto Lift", + "Auto Lift", "Auto Lift" ], - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow", - "Direct Drive Standard,Direct Drive High Flow,Direct Drive TPU High Flow" + "upward_compatible_machine": [ + "Bambu Lab H2D Pro 0.4 nozzle" ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab H2D 0.6 nozzle.json index 164b2a606c..3b45d9a6e7 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2D 0.6 nozzle.json @@ -1,36 +1,38 @@ { - "type": "machine", - "name": "Bambu Lab H2D 0.6 nozzle", - "inherits": "Bambu Lab H2D 0.4 nozzle", - "from": "system", - "setting_id": "GM035", - "instantiation": "true", - "nozzle_diameter": [ - "0.6", - "0.6" - ], - "printer_model": "Bambu Lab H2D", - "printer_variant": "0.6", - "default_filament_profile": [ - "Bambu PLA Basic @BBL H2D 0.6 nozzle" - ], - "default_print_profile": "0.30mm Standard @BBL H2D 0.6 nozzle", - "max_layer_height": [ - "0.42", - "0.42" - ], - "min_layer_height": [ - "0.12", - "0.12" - ], - "retraction_length": [ - "1.4", - "1.4", - "1.4", - "1.4", - "1.4" - ], - "upward_compatible_machine": [ - "Bambu Lab H2D Pro 0.6 nozzle" - ] -} + "type": "machine", + "name": "Bambu Lab H2D 0.6 nozzle", + "inherits": "Bambu Lab H2D 0.4 nozzle", + "from": "system", + "setting_id": "GM035", + "instantiation": "true", + "nozzle_diameter": [ + "0.6", + "0.6" + ], + "printer_model": "Bambu Lab H2D", + "printer_variant": "0.6", + "default_filament_profile": [ + "Bambu PLA Basic @BBL H2D 0.6 nozzle" + ], + "default_print_profile": "0.30mm Standard @BBL H2D 0.6 nozzle", + "max_layer_height": [ + "0.42", + "0.42" + ], + "min_layer_height": [ + "0.12", + "0.12" + ], + "retraction_length": [ + "1.4", + "1.4", + "1.4", + "1.4", + "1.4", + "1.4", + "1.4" + ], + "upward_compatible_machine": [ + "Bambu Lab H2D Pro 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab H2D 0.8 nozzle.json index acae75a038..c5350f5c19 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2D 0.8 nozzle.json @@ -1,333 +1,327 @@ { - "type": "machine", - "name": "Bambu Lab H2D 0.8 nozzle", - "inherits": "Bambu Lab H2D 0.4 nozzle", - "from": "system", - "setting_id": "GM036", - "instantiation": "true", - "nozzle_diameter": [ - "0.8", - "0.8" - ], - "printer_model": "Bambu Lab H2D", - "printer_variant": "0.8", - "default_filament_profile": [ - "Bambu PLA Basic @BBL H2D 0.8 nozzle" - ], - "default_print_profile": "0.40mm Standard @BBL H2D 0.8 nozzle", - "max_layer_height": [ - "0.56", - "0.56" - ], - "min_layer_height": [ - "0.16", - "0.16" - ], - "retraction_length": [ - "3", - "3", - "3", - "3" - ], - "upward_compatible_machine": [ - "Bambu Lab H2D Pro 0.8 nozzle" - ], - "deretraction_speed": [ - "30", - "30", - "30", - "30" - ], - "deretract_speed_extruder_change": [ - "15", - "15", - "15", - "15" - ], - "hotend_cooling_rate": [ - "2", - "2", - "2", - "2" - ], - "hotend_heating_rate": [ - "3.6", - "3.6", - "3.6", - "3.6" - ], - "long_retractions_when_cut": [ - "0", - "0", - "0", - "0" - ], - "machine_max_acceleration_e": [ - "5000", - "5000", - "5000", - "5000", - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_extruding": [ - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_retracting": [ - "5000", - "5000", - "5000", - "5000", - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_travel": [ - "9000", - "9000", - "9000", - "9000", - "9000", - "9000", - "9000", - "9000" - ], - "machine_max_acceleration_x": [ - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_y": [ - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_z": [ - "500", - "500", - "500", - "500", - "500", - "500", - "500", - "500" - ], - "machine_max_jerk_e": [ - "2.5", - "2.5", - "2.5", - "2.5", - "2.5", - "2.5", - "2.5", - "2.5" - ], - "machine_max_jerk_x": [ - "9", - "9", - "9", - "9", - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_y": [ - "9", - "9", - "9", - "9", - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_z": [ - "3", - "3", - "3", - "3", - "3", - "3", - "3", - "3" - ], - "machine_max_speed_e": [ - "50", - "50", - "50", - "50", - "50", - "50", - "50", - "50" - ], - "machine_max_speed_x": [ - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "machine_max_speed_y": [ - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "machine_max_speed_z": [ - "30", - "30", - "30", - "30", - "30", - "30", - "30", - "30" - ], - "nozzle_flush_dataset": [ - "1", - "2", - "1", - "2" - ], - "nozzle_type": [ - "hardened_steel", - "hardened_steel", - "hardened_steel", - "hardened_steel" - ], - "nozzle_volume": [ - "130", - "133", - "145", - "148" - ], - "printer_extruder_id": [ - "1", - "1", - "2", - "2" - ], - "printer_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "retract_before_wipe": [ - "0%", - "0%", - "0%", - "0%" - ], - "retract_length_toolchange": [ - "2", - "2", - "2", - "2" - ], - "retract_lift_above": [ - "0", - "0", - "0", - "0" - ], - "retract_lift_below": [ - "319", - "319", - "319", - "319" - ], - "retract_restart_extra": [ - "0", - "0", - "0", - "0" - ], - "retract_restart_extra_toolchange": [ - "0", - "0", - "0", - "0" - ], - "retract_when_changing_layer": [ - "1", - "1", - "1", - "1" - ], - "retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "retraction_minimum_travel": [ - "1", - "1", - "1", - "1" - ], - "retraction_speed": [ - "30", - "30", - "30", - "30" - ], - "wipe": [ - "1", - "1", - "1", - "1" - ], - "wipe_distance": [ - "2", - "2", - "2", - "2" - ], - "z_hop": [ - "0.4", - "0.4", - "0.4", - "0.4" - ], - "z_hop_types": [ - "Auto Lift", - "Auto Lift", - "Auto Lift", - "Auto Lift" - ], - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow", - "Direct Drive Standard,Direct Drive High Flow" - ] -} + "type": "machine", + "name": "Bambu Lab H2D 0.8 nozzle", + "inherits": "Bambu Lab H2D 0.4 nozzle", + "from": "system", + "setting_id": "GM036", + "instantiation": "true", + "nozzle_diameter": [ + "0.8", + "0.8" + ], + "printer_model": "Bambu Lab H2D", + "printer_variant": "0.8", + "default_filament_profile": [ + "Bambu PLA Basic @BBL H2D 0.8 nozzle" + ], + "default_print_profile": "0.40mm Standard @BBL H2D 0.8 nozzle", + "deretraction_speed": [ + "30", + "30", + "30", + "30" + ], + "deretract_speed_extruder_change": [ + "15", + "15", + "15", + "15" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow", + "Direct Drive Standard,Direct Drive High Flow" + ], + "hotend_cooling_rate": [ + "2", + "2", + "2", + "2" + ], + "hotend_heating_rate": [ + "3.6", + "3.6", + "3.6", + "3.6" + ], + "long_retractions_when_cut": [ + "0", + "0", + "0", + "0" + ], + "machine_max_acceleration_e": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500", + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3", + "3", + "3", + "3", + "3" + ], + "machine_max_speed_e": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50", + "50" + ], + "machine_max_speed_x": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_y": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_z": [ + "30", + "30", + "30", + "30", + "30", + "30", + "30", + "30" + ], + "max_layer_height": [ + "0.56", + "0.56" + ], + "min_layer_height": [ + "0.16", + "0.16" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000" + ], + "nozzle_flush_dataset": [ + "1", + "2", + "1", + "2" + ], + "nozzle_volume": [ + "130", + "133", + "145", + "148" + ], + "printer_extruder_id": [ + "1", + "1", + "2", + "2" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "retract_before_wipe": [ + "0%", + "0%", + "0%", + "0%" + ], + "retract_length_toolchange": [ + "2", + "2", + "2", + "2" + ], + "retract_restart_extra": [ + "0", + "0", + "0", + "0" + ], + "retract_restart_extra_toolchange": [ + "0", + "0", + "0", + "0" + ], + "retract_when_changing_layer": [ + "1", + "1", + "1", + "1" + ], + "retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "retraction_length": [ + "3", + "3", + "3", + "3" + ], + "retraction_minimum_travel": [ + "1", + "1", + "1", + "1" + ], + "retraction_speed": [ + "30", + "30", + "30", + "30" + ], + "retract_lift_above": [ + "0", + "0", + "0", + "0" + ], + "retract_lift_below": [ + "319", + "319", + "319", + "319" + ], + "wipe": [ + "1", + "1", + "1", + "1" + ], + "wipe_distance": [ + "2", + "2", + "2", + "2" + ], + "z_hop": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift", + "Auto Lift", + "Auto Lift" + ], + "upward_compatible_machine": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.2 nozzle.json index 2a5830740f..91172e21ee 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.2 nozzle.json @@ -1,327 +1,327 @@ { - "type": "machine", - "name": "Bambu Lab H2D Pro 0.2 nozzle", - "inherits": "Bambu Lab H2D Pro 0.4 nozzle", - "from": "system", - "setting_id": "GM052", - "instantiation": "true", - "nozzle_diameter": [ - "0.2", - "0.2" - ], - "printer_model": "Bambu Lab H2D Pro", - "printer_variant": "0.2", - "default_filament_profile": [ - "Bambu PLA Basic @BBL H2DP 0.2 nozzle" - ], - "default_print_profile": "0.10mm Standard @BBL H2DP 0.2 nozzle", - "max_layer_height": [ - "0.14", - "0.14" - ], - "min_layer_height": [ - "0.04", - "0.04" - ], - "retraction_length": [ - "0.4", - "0.4", - "0.4", - "0.4" - ], - "upward_compatible_machine": [ - "Bambu Lab H2D 0.2 nozzle" - ], - "deretraction_speed": [ - "30", - "30", - "30", - "30" - ], - "hotend_cooling_rate": [ - "2", - "2", - "2", - "2" - ], - "hotend_heating_rate": [ - "3.6", - "3.6", - "3.6", - "3.6" - ], - "long_retractions_when_cut": [ - "0", - "0", - "0", - "0" - ], - "machine_max_acceleration_e": [ - "5000", - "5000", - "5000", - "5000", - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_extruding": [ - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_retracting": [ - "5000", - "5000", - "5000", - "5000", - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_travel": [ - "9000", - "9000", - "9000", - "9000", - "9000", - "9000", - "9000", - "9000" - ], - "machine_max_acceleration_x": [ - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_y": [ - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_z": [ - "500", - "500", - "500", - "500", - "500", - "500", - "500", - "500" - ], - "machine_max_jerk_e": [ - "2.5", - "2.5", - "2.5", - "2.5", - "2.5", - "2.5", - "2.5", - "2.5" - ], - "machine_max_jerk_x": [ - "9", - "9", - "9", - "9", - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_y": [ - "9", - "9", - "9", - "9", - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_z": [ - "3", - "3", - "3", - "3", - "3", - "3", - "3", - "3" - ], - "machine_max_speed_e": [ - "50", - "50", - "50", - "50", - "50", - "50", - "50", - "50" - ], - "machine_max_speed_x": [ - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "machine_max_speed_y": [ - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "machine_max_speed_z": [ - "30", - "30", - "30", - "30", - "30", - "30", - "30", - "30" - ], - "nozzle_flush_dataset": [ - "1", - "2", - "1", - "2" - ], - "nozzle_type": [ - "hardened_steel", - "hardened_steel", - "hardened_steel", - "hardened_steel" - ], - "nozzle_volume": [ - "130", - "133", - "145", - "148" - ], - "printer_extruder_id": [ - "1", - "1", - "2", - "2" - ], - "printer_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "retract_before_wipe": [ - "0%", - "0%", - "0%", - "0%" - ], - "retract_length_toolchange": [ - "2", - "2", - "2", - "2" - ], - "retract_lift_above": [ - "0", - "0", - "0", - "0" - ], - "retract_lift_below": [ - "319", - "319", - "319", - "319" - ], - "retract_restart_extra": [ - "0", - "0", - "0", - "0" - ], - "retract_restart_extra_toolchange": [ - "0", - "0", - "0", - "0" - ], - "retract_when_changing_layer": [ - "1", - "1", - "1", - "1" - ], - "retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "retraction_minimum_travel": [ - "1", - "1", - "1", - "1" - ], - "retraction_speed": [ - "30", - "30", - "30", - "30" - ], - "wipe": [ - "1", - "1", - "1", - "1" - ], - "wipe_distance": [ - "2", - "2", - "2", - "2" - ], - "z_hop": [ - "0.4", - "0.4", - "0.4", - "0.4" - ], - "z_hop_types": [ - "Auto Lift", - "Auto Lift", - "Auto Lift", - "Auto Lift" - ], - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow", - "Direct Drive Standard,Direct Drive High Flow" - ] -} + "type": "machine", + "name": "Bambu Lab H2D Pro 0.2 nozzle", + "inherits": "Bambu Lab H2D Pro 0.4 nozzle", + "from": "system", + "setting_id": "GM052", + "instantiation": "true", + "nozzle_diameter": [ + "0.2", + "0.2" + ], + "printer_model": "Bambu Lab H2D Pro", + "printer_variant": "0.2", + "default_filament_profile": [ + "Bambu PLA Basic @BBL H2DP 0.2 nozzle" + ], + "default_print_profile": "0.10mm Standard @BBL H2DP 0.2 nozzle", + "deretraction_speed": [ + "30", + "30", + "30", + "30" + ], + "deretract_speed_extruder_change": [ + "15", + "15", + "15", + "15" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow", + "Direct Drive Standard,Direct Drive High Flow" + ], + "hotend_cooling_rate": [ + "2", + "2", + "2", + "2" + ], + "hotend_heating_rate": [ + "3.6", + "3.6", + "3.6", + "3.6" + ], + "long_retractions_when_cut": [ + "0", + "0", + "0", + "0" + ], + "machine_max_acceleration_e": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500", + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3", + "3", + "3", + "3", + "3" + ], + "machine_max_speed_e": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50", + "50" + ], + "machine_max_speed_x": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_y": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_z": [ + "30", + "30", + "30", + "30", + "30", + "30", + "30", + "30" + ], + "max_layer_height": [ + "0.14", + "0.14" + ], + "min_layer_height": [ + "0.04", + "0.04" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000" + ], + "nozzle_flush_dataset": [ + "1", + "2", + "1", + "2" + ], + "nozzle_volume": [ + "130", + "133", + "145", + "148" + ], + "printer_extruder_id": [ + "1", + "1", + "2", + "2" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "retract_before_wipe": [ + "0%", + "0%", + "0%", + "0%" + ], + "retract_length_toolchange": [ + "2", + "2", + "2", + "2" + ], + "retract_restart_extra": [ + "0", + "0", + "0", + "0" + ], + "retract_restart_extra_toolchange": [ + "0", + "0", + "0", + "0" + ], + "retract_when_changing_layer": [ + "1", + "1", + "1", + "1" + ], + "retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "retraction_length": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "retraction_minimum_travel": [ + "1", + "1", + "1", + "1" + ], + "retraction_speed": [ + "30", + "30", + "30", + "30" + ], + "retract_lift_above": [ + "0", + "0", + "0", + "0" + ], + "retract_lift_below": [ + "319", + "319", + "319", + "319" + ], + "wipe": [ + "1", + "1", + "1", + "1" + ], + "wipe_distance": [ + "2", + "2", + "2", + "2" + ], + "z_hop": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift", + "Auto Lift", + "Auto Lift" + ], + "upward_compatible_machine": [ + "Bambu Lab H2D 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template change_filament_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template change_filament_gcode.json new file mode 100644 index 0000000000..88aae84286 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template change_filament_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2D Pro 0.4 nozzle template change_filament_gcode", + "instantiation": "false", + "change_filament_gcode": ";======== H2D Pro filament ========\n;===== 20260115 =====\nM993 A2 B2 C2 ; nozzle cam detection allow status save.\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n{if (filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PETG\")\n || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K0 ;disable E air printing detect\n{else}\nM1015.4 S0 ; disable E air printing detect\n{endif}\n\nM620 S[next_filament_id]A\nM1002 gcode_claim_action : 4\nM204 S9000\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\nM106 P2 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\n{if ((filament_type[current_filament_id] == \"PLA\") || (filament_type[current_filament_id] == \"PLA-CF\") || (filament_type[current_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[current_filament_id]/2.4053*60*0.8} L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{endif}\n\n{if ((filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[next_nozzle_id] == 0.2)}\nM620.10 A1 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{else}\nM620.10 A1 F{flush_volumetric_speeds[next_filament_id]/2.4053*60*0.8} L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{endif}\n\n{if long_retraction_when_cut}\nM620.11 P1 I[current_filament_id] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 P0 I[current_filament_id] E0\n{endif}\n\n{if long_retraction_when_ec}\nM620.11 K1 I[current_filament_id] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[current_filament_id] R0\n{endif}\n\nM620.15 C{new_filament_temp - filament_cooling_before_tower[next_filament_id]}\n\nM628 S1\n{if filament_type[current_filament_id] == \"TPU\"}\nM620.11 S0 L0 I[current_filament_id] E-{retraction_distances_when_cut[current_filament_id]} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\n{if (filament_type[current_filament_id] == \"PA\") || (filament_type[current_filament_id] == \"PA-GF\")}\nM620.11 S1 L0 I[current_filament_id] R4 D2 E-{retraction_distances_when_cut[current_filament_id]} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 S1 L0 I[current_filament_id] R10 D8 E-{retraction_distances_when_cut[current_filament_id]} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{endif}\n{endif}\nM629\n\n{if (filament_type[current_filament_id] == \"TPU\" || filament_type[next_filament_id] == \"TPU\") && (nozzle_volume_types[current_nozzle_id] != \"TPU High Flow\")}\nM620.11 H2 C331\n{else}\nM620.11 H0\n{endif}\n\n{if (filament_type[current_filament_id] == \"TPU\") && (filament_map[current_filament_id] == 2) && (nozzle_volume_types[current_nozzle_id] != \"TPU High Flow\")}\n;sw from R2L&TPU kit, travel run a distance for sketch TPU\nG1 X30 Y30 F5000\nM400\nG1 X300 Y30 F5000\nM400\n{endif}\n\nT[next_filament_id]\n\n;deretract\n{if filament_type[next_filament_id] == \"TPU\"}\n{else}\n{if (filament_type[next_filament_id] == \"PA\") || (filament_type[next_filament_id] == \"PA-GF\")}\n;VG1 E1 F{max(new_filament_e_feedrate, 200)}\n;VG1 E1 F{max(new_filament_e_feedrate/2, 100)}\n{else}\n;VG1 E4 F{max(new_filament_e_feedrate, 200)}\n;VG1 E4 F{max(new_filament_e_feedrate/2, 100)}\n{endif}\n{endif}\n\n; VFLUSH_START\n\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\n\nSYNC T{ceil(flush_length / 125) * 5}\n\n; VFLUSH_END\n\nM1002 set_filament_type:{filament_type[next_filament_id]}\n\nM400\nM83\n{if next_filament_id < 255}\n\nM620.10 R{new_extruder_retracted_length}\nM628 S0\n;VM109 S[new_filament_temp]\nM629\nM400\n\n\n;prime_tower_interface\n{if is_prime_tower_interface && filament_tower_interface_purge_volume !=0}\nG150.1\nM620.13 W0 L{filament_tower_interface_purge_volume} T{filament_tower_interface_print_temp} R0.0\n{endif}\n;prime_tower_interface\n\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{new_extruder_retracted_length}\n\nM400\n{if wipe_avoid_perimeter}\nG1 Y320 F30000\nG1 X{wipe_avoid_pos_x} F30000\n{endif}\nG1 Y295 F30000\nG1 Y265 F18000\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_filament_id]A\n\nM622.1 S0 ;for prev version, default skip\nM1002 judge_flag powerloss_resume_flag\nM622 J1\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{new_extruder_retracted_length}\nM400\n{if wipe_avoid_perimeter}\nG1 Y320 F30000\nG1 X{wipe_avoid_pos_x} F30000\n{endif}\nG1 Y295 F30000\nG1 Y265 F18000\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\nM1002 set_flag powerloss_resume_flag=0\nM623\n\nM993 A3 B3 C3 ; nozzle cam detection allow status restore.\n\n{if (filament_type[next_filament_id] == \"TPU\")}\nM1015.3 S1;enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PETG\")\n || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 ; disable E air printing detect\n{endif}\n\nM620.6 I[next_filament_id] W1 ;enable ams air printing detect\nM1002 gcode_claim_action : 0\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template layer_change_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template layer_change_gcode.json new file mode 100644 index 0000000000..f330c2a364 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template layer_change_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2D Pro 0.4 nozzle template layer_change_gcode", + "instantiation": "false", + "layer_change_gcode": ";======== H2D Pro 20250725 layer_change ========\n; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template machine_end_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template machine_end_gcode.json new file mode 100644 index 0000000000..350e7676ca --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template machine_end_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2D Pro 0.4 nozzle template machine_end_gcode", + "instantiation": "false", + "machine_end_gcode": ";======== H2D Pro end ========\n;===== date: 2026/07/29 =====\n\nM1003 S0\nM73 P100 R0\n\nG392 S0 ;turn off nozzle clog detect\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nM211 Z1\n\nG90\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\nM1002 judge_flag timelapse_record_flag\nM622 J1\n G150.3\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S5 ;wait for last picture to be taken\nM623 ;end of \"timelapse_record_flag\"\n\nG90\nG1 Z{max_layer_z + 10} F900 ; lower z a little\n\nG90\nM141 S0 ; turn off chamber heating\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM106 P9 S0 ; turn off ext toodhead cooling fan\n; pull back filament to AMS\nM620 S65535\nT65535\nG150.2\nM621 S65535\n\nM620 S65279\nT65279\nG150.2\nM621 S65279\n\nG150.3\n\nM104 S0 T0; turn off hotend\nM104 S0 T1; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (100.0 - max_layer_z/2) > 0}\n {if (max_layer_z + 100.0 - max_layer_z/2) < 320}\n G1 Z{max_layer_z + 100.0 - max_layer_z/2} F600\n G1 Z{max_layer_z + 98.0 - max_layer_z/2}\n {else}\n G1 Z320 F600\n G1 Z320\n {endif}\n{else}\n {if (max_layer_z + 4.0) < 320}\n G1 Z{max_layer_z + 4.0} F600\n G1 Z{max_layer_z + 2.0}\n {else}\n G1 Z320 F600\n G1 Z320\n {endif}\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM1015.4 S0 K0 ;disable air printing detect\n\n;=====printer finish air purification=========\nM622.1 S0\nM1002 judge_flag print_finish_air_filt_flag\n\nM622 J1\nM1002 gcode_claim_action : 66\nM145 P1\nM106 P6 S255\nM400 S180\nM106 P6 S0\nM623\n\nM622 J2\nM1002 gcode_claim_action : 66\nM145 P0\nM106 P3 S127\nM400 S180\nM106 P3 S0\nM623\n;=====printer finish air purification=========\n\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L99 C53 D10 M99 E53 F10 N99 \nM1006 A57 B10 L99 C57 D10 M99 E57 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A53 B10 L99 C53 D10 M99 E53 F10 N99 \nM1006 A57 B10 L99 C57 D10 M99 E57 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A48 B10 L99 C48 D10 M99 E48 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A60 B10 L99 C60 D10 M99 E60 F10 N99 \nM1006 W\n;=====printer finish sound=========\nM400\nM18\n\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..9d28e066d2 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2D Pro 0.4 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: H2D Pro start ======\n;===== date: 20260605 =====================\n\n;M1002 set_flag extrude_cali_flag=1\n;M1002 set_flag g29_before_print_flag=1\n;M1002 set_flag auto_cali_toolhead_offset_flag=1\n;M1002 set_flag build_plate_detect_flag=1\n\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\nM400\n;M73 P99\n\nM960 S10 P1 ; ext fan led\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L99 C53 D9 M99 E53 F9 N99\nM1006 A56 B9 L99 C56 D9 M99 E56 F9 N99\nM1006 A61 B9 L99 C61 D9 M99 E61 F9 N99\nM1006 A53 B9 L99 C53 D9 M99 E53 F9 N99\nM1006 A56 B9 L99 C56 D9 M99 E56 F9 N99\nM1006 A61 B18 L99 C61 D18 M99 E61 F18 N99\nM1006 W\n;=====printer start sound ===================\n\n;===== reset machine status =================\nM204 S10000\nM630 S0 P0\n\nG90\nM17 D ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM1002 set_gcode_claim_speed_level 5 ;Reset speed level\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nG29.1 Z{+0.0} ; clear z-trim value first\nM983.1 M1\nM901 D4\nM481 S0 ; turn off cutter pos comp\nG28.140 D0; reset pre-extrude z pos\n;===== reset machine status =================\n\nM620 M ;enable remap\n\n;===== avoid end stop =================\nG91\nG380 S2 Z42 F1200\nG380 S2 Z-12 F1200\nG90\n;===== avoid end stop =================\n\n;==== set airduct mode ====\n\n{if (overall_chamber_temperature >= 40)}\n\n M145 P1 ; set airduct mode to heating mode for heating\n M106 P2 S0 ; turn off auxiliary fan\n M106 P3 S0 ; turn off chamber fan\n\n{else}\n M145 P0 ; set airduct mode to cooling mode for cooling\n M106 P2 S178 ; turn on auxiliary fan for cooling\n M106 P3 S127 ; turn on chamber fan for cooling\n M140 S0 ; stop heatbed from heating\n\n M1002 gcode_claim_action : 29\n M191 S0 ; wait for chamber temp\n M106 P2 S0 ; turn off auxiliary fan\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2)}\n M142 P1 R30 S35 T40 U0.3 V0.5 W0.8 O40 ; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 T45 U0.3 V0.5 W0.8 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n {if (!is_all_bbl_filament)}\n M142 P1 R35 S40 T45 U0.3 V0.5 W0.8 O45 L1 ; set third-party PETG chamber autocooling\n {else}\n {if (nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2)}\n M142 P1 R35 S45 T50 U0.3 V0.5 W0.8 O50 L1 ; set PETG ND0.2 chamber autocooling\n {else}\n M142 P1 R35 S50 T55 U0.3 V0.5 W0.8 O55 L1 ; set PETG ND0.4 chamber autocooling\n {endif}\n {endif}\n {endif}\n {if(cooling_filter_enabled)}\n M145.2 P0 F0\n {else}\n M145.2 P0 F1\n {endif}\n{endif}\n\n;==== set airduct mode ====\n\n;===== start to heat heatbed & hotend==========\n\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n\n M104 S140 A\n M140 S[bed_temperature_initial_layer_single]\n\n ;===== set chamber temperature ==========\n {if (overall_chamber_temperature >= 40)}\n M145 P1 ; set airduct mode to heating mode\n M141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n {endif}\n ;===== set chamber temperature ==========\n\n;===== start to heat heatbead & hotend==========\n\n;====== cog noise reduction=================\nM982.2 S1 ; turn on cog noise reduction\n\n;===== first homing start =====\nM1002 gcode_claim_action : 13\n\nG28 X T300\n\nG150.1 F18000 ; wipe mouth to avoid filament stick to heatbed\nG150.3 F18000\nM400 P200\nM972 S24 P0 T2000\n\nM1002 gcode_claim_action : 74 ; Heatbed surface foreign object detection\n{if curr_bed_type==\"Textured PEI Plate\"}\nM972 S26 P0 C0\n{else}\nM972 S36 P0 C0 X1\n{endif}\nM972 S35 P0 C0\n\nM972 S41 P0 T5000 ; trash can anti-collision\n\nM1009 Q1 L1\nG91\nG380 S2 Z30 F1200 ; lower heatbed to move toolhead\nG90\nG1 X175 Y160 F30000\nG28 Z P0 T250\nM1009 Q1 L0\n\n;===== first homing end =====\n\nM400\n;M73 P99\n\n;===== detection start =====\n\nM1002 judge_flag build_plate_detect_flag\nM622 S1\n ;M1002 gcode_claim_action : 11 ; Indentifying build plate type\n M972 S19 P0 C0 ; heatbed presence detection\n M972 S31 P0 T5000 ; toolhead camera dirty detection\n ;M1002 gcode_claim_action : 73 ; Build plate alignment detection\n M972 S34 P0 T5000 ; heatbed plate offset detection\nM623\n\nM1002 gcode_claim_action : 72 ; Hotend Type Detection\nT1001\nM972 S14 P0 T5000 ; nozzle type detection\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]} T{filament_map[initial_no_support_filament_id] % 2} ; rise temp in advance\n\nG151 P{filament_map[initial_no_support_filament_id] % 2} M ; plug the heat nozzle\n\n{if max_print_z >= 145}\nM1002 gcode_claim_action : 75 ; Heatbed underside foreign object detection\nG3811 Z{max_print_z} ; Detect obstacles at the bottom of the heated bed\n{endif}\n\n;===== detection end =====\n\nM400\n;M73 P99\n\n;===== prepare print temperature and material ==========\nM400\nM211 X0 Y0 Z0 ;turn off soft endstop\nM975 S1 ; turn on input shaping\n\nG29.2 S0 ; avoid invalid abl data\n\n{if ((filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60*0.8} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60*0.8} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{endif}\n\nM620.11 P0 I[initial_no_support_filament_id] E0\n\n{if long_retraction_when_ec }\nM620.11 K1 I[initial_no_support_filament_id] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[initial_no_support_filament_id] R0\n{endif}\n\nM628 S1\n{if filament_type[initial_no_support_filament_id] == \"TPU\"}\n M620.11 S0 L0 I[initial_no_support_filament_id] E-{retraction_distances_when_cut[initial_no_support_filament_id]} F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60}\n{else}\n{if (filament_type[initial_no_support_filament_id] == \"PA\") || (filament_type[initial_no_support_filament_id] == \"PA-GF\")}\n M620.11 S1 L0 I[initial_no_support_filament_id] R4 D2 E-{retraction_distances_when_cut[initial_no_support_filament_id]} F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60}\n{else}\n M620.11 S1 L0 I[initial_no_support_filament_id] R10 D8 E-{retraction_distances_when_cut[initial_no_support_filament_id]} F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60}\n{endif}\n{endif}\nM629\n\nM620 S[initial_no_support_filament_id]A ; switch material if AMS exist\nM1002 gcode_claim_action : 4\nM1002 set_filament_type:UNKNOWN\nM400\nT[initial_no_support_filament_id]\nM400\nM628 S0\nM629\nM400\nM1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\nM621 S[initial_no_support_filament_id]A\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\nM400\nM106 P1 S0\n\nG29.2 S1\n;===== prepare print temperature and material ==========\n\nM400\n;M73 P99\n\n;===== auto extrude cali start =========================\nM975 S1\nM1002 judge_flag extrude_cali_flag\n\nM622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\nM623\n\nM622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\nM623\n\nM622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\nM623\n\n;===== auto extrude cali end =========================\n\n{if filament_type[initial_no_support_filament_id] == \"TPU\"}\n G150.2\n G150.1\n G150.2\n G150.1\n G150.2\n G150.1\n{else}\n M106 P1 S0\n M400 S2\n M109 S{nozzle_temperature[initial_no_support_filament_id]} ; wait tmpr to extrude\n M83\n {if(nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.8)}\n G1 E60 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n {else}\n G1 E45 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n {endif}\n G1 E-3 F1800\n M400 P500\n G150.2\n G150.1\n{endif}\n\nG91\nG1 Y-16 F12000 ; move away from the trash bin\nG90\n\nM400\n;M73 P99\n\n;===== wipe right nozzle start =====\n\nM1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n {if (overall_chamber_temperature >= 40)}\n G150 T{nozzle_temperature_initial_layer[initial_no_support_filament_id] - 80}\n {endif}\nM106 S255 ; turn on fan to cool the nozzle\n\n;===== wipe left nozzle end =====\n\nM400\n;M73 P99\n\n{if (overall_chamber_temperature >= 40)}\n M1002 gcode_claim_action : 49\n M191 S[overall_chamber_temperature] ; wait for chamber temp\n{endif}\n\nM400\n;M73 P99\n\n;===== bed leveling ==================================\n\nM1002 judge_flag g29_before_print_flag\n\nM190 S[bed_temperature_initial_layer_single]; ensure bed temp\nM109 S140 A\nM106 S0 ; turn off fan , too noisy\n\nG91\nG1 Z5 F1200\nG90\nG1 X175 Y160 F30000\n\nM622 J1\n M1002 gcode_claim_action : 1\n G29.20 A3\n G29 A1 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n M400\nM623\n\nM622 J2\n M1002 gcode_claim_action : 1\n {if has_tpu_in_first_layer}\n G29.20 A3\n G29 A1 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {else}\n G29.20 A4\n G29 A2 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {endif}\n M400\nM623\n\nM622 J0\n G28 R\nM623\n\n;===== bed leveling end ================================\n\n;===== z ofst cali start =====\n\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n\n G383 O0 M2 T140\n\n;===== z ofst cali end =====\n\nG39.1 ; cali nozzle wrapped detection pos\n\nG90\nG1 Z5 F1200\nG1 X270 Y-0.5 F60000\nG28.140 S0 ; cali pre-extrude z pos\n\nM141 S[overall_chamber_temperature]\nM104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]} A\n\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n\n G90\n G1 Z5 F1200\n G1 X187 Y160 F20000\n T1000\n M400 P200\n\n M970.3 Q1 A5 K0 O1\n M974 Q1 S2 P0\n\n M970.3 Q0 A5 K0 O1\n M974 Q0 S2 P0\n\n M970.2 Q2 K0 W38 Z0.01\n M974 Q2 S2 P0\n\n M975 S1\n;===== mech mode sweep end =====\n\nM400\n;M73 P99\n\nG150.3 ; move to garbage can to wait for temp\nM1026\nG29.9\n\n;===== xy ofst cali start =====\n\nM1002 judge_flag auto_cali_toolhead_offset_flag\n\nM622 J0\n M1012.5 N1 R1\nM623\n\nM622 J1\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : (first_filaments[0] != -1 ? first_filaments[0] : 0))]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : (first_filaments[0] != -1 ? first_filaments[0] : 0))}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : (first_filaments[1] != -1 ? first_filaments[1] : 0))]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : (first_filaments[1] != -1 ? first_filaments[1] : 0))}\n G383 O1 T{nozzle_temperature_initial_layer[initial_no_support_filament_id]} L{initial_no_support_filament_id}\n M141 S[overall_chamber_temperature]\nM623\n\nM622 J2\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : (first_filaments[0] != -1 ? first_filaments[0] : 0))]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : (first_filaments[0] != -1 ? first_filaments[0] : 0))}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : (first_filaments[1] != -1 ? first_filaments[1] : 0))]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : (first_filaments[1] != -1 ? first_filaments[1] : 0))}\n G383.3 T{nozzle_temperature_initial_layer[initial_no_support_filament_id]} L{initial_no_support_filament_id}\n M141 S[overall_chamber_temperature]\nM623\n;===== xy ofst cali end =====\n\nM400\n;M73 P99\n\nM1002 gcode_claim_action : 0\nM400\n\n;============switch again==================\n\nM211 X0 Y0 Z0 ;turn off soft endstop\nG91\nG1 Z6 F1200\nG90\nM1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\nM620 S[initial_no_support_filament_id]A\nM400\nT[initial_no_support_filament_id]\nM400\nM628 S0\nM629\nM400\nM621 S[initial_no_support_filament_id]A\n\n;============switch again==================\n\nM400\n;M73 P99\n\n;===== wait temperature reaching the reference value =======\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]} ; rise to print tmpr\n\nM140 S[bed_temperature_initial_layer_single]\nM190 S[bed_temperature_initial_layer_single]\n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off fan\n M106 P2 S0 ; turn off big fan\n ;==== set ext toodhead cooling fan ====\n {if (min_vitrification_temperature <= 50)}\n M106 P9 S255\n {endif}\n ;============set motor current==================\n M400 S1\n\n;===== wait temperature reaching the reference value =======\n\nM400\n;M73 P99\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if curr_bed_type==\"Textured PEI Plate\"}\n {if nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2}\n G29.1 Z{-0.01} ; for Textured PEI Plate\n {else}\n G29.1 Z{-0.02} ; for Textured PEI Plate\n {endif}\n {else}\n {if nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2}\n G29.1 Z{0.01}\n {endif}\n {endif}\n\nG150.1\n\nM975 S1 ; turn on mech mode supression\nM983.4 S1 ; turn on deformation compensation\nG29.2 S1 ; turn on pos comp\nG29.7 S1\n\nG90\nG1 Z5 F1200\nG1 Y295 F30000\nG1 Y265 F18000\n\n;===== nozzle load line ===============================\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n G1 Z5 F1200\n G1 X270 Y-0.5 F60000\n G28.14 R0\n G29.2 S0\n G91\n G1 Z0.8 F1200\n G90\n G1 X250 F60000\n M400 P50\n M500 D1\n M400 S3\n M109 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n M83\n{if nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.8}\n G1 E5 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n{endif}\n{if (filament_type[initial_no_support_filament_id] == \"TPU\")}\n G1 E5 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n{endif}\n G1 E5 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n G1 X290 E10 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4053*60}\n G91\n G3 Z0.4 I1.217 J0 P1 F60000\n G90\n M83\n G29.2 S1 ; ensure z comp turn on\n;===== noozle load line end ===========================\n\nM400\n;M73 P99\n\nM993 A1 B1 C1 ; nozzle cam detection allowed.\n\n{if (filament_type[initial_no_support_filament_id] == \"TPU\")}\nM1015.3 S1;enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PETG\")\n || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;disable E air printing detect\n{endif}\n\nM620.6 I[initial_no_support_filament_id] W1 ;enable ams air printing detect\n\nM211 Z1\nG29.99\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template time_lapse_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template time_lapse_gcode.json new file mode 100644 index 0000000000..52e9c65a12 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template time_lapse_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2D Pro 0.4 nozzle template time_lapse_gcode", + "instantiation": "false", + "time_lapse_gcode": ";======== H2D Pro 20260731========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\n\nM1002 judge_flag timelapse_record_flag\nM622 J1\n {if !spiral_mode && !timelapse_inline_photo}\n M993 A2 B2 C2\n M993 A0 B0 C0\n {endif}\n\n {if timelapse_inline_photo}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {else}\n M622.1 S0 ; for prev firmware, default turn off\n M1002 set_flag smooth_safe_pos_suppoprt_flag=1\n M1002 judge_flag smooth_safe_pos_suppoprt_flag\n \n M622 J0\n {if !spiral_mode && !(has_timelapse_safe_pos && timelapse_type == 0) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n M83\n G1 Z{max_layer_z + 0.4} F1200\n M400\n {endif}\n {endif}\n\n {if has_timelapse_safe_pos && timelapse_type == 0 && !spiral_mode}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} X{timelapse_pos_x} Y{timelapse_pos_y} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {else}\n {if spiral_mode}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {else}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {endif}\n {endif}\n\n {if !spiral_mode && !(has_timelapse_safe_pos && timelapse_type == 0) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n G90\n G1 Z{max_layer_z + 3.0} F1200\n G1 Y295 F30000\n G1 Y265 F18000\n M83\n {endif}\n {endif}\n M623\n\n M622 J1\n {if !spiral_mode && !(has_timelapse_safe_pos) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n M83\n G1 Z{max_layer_z + 0.4} F1200\n M400\n {endif}\n {endif}\n\n {if has_timelapse_safe_pos && !spiral_mode}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} U{timelapse_pos_x} V{timelapse_pos_y} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {else}\n {if spiral_mode}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {else}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {endif}\n {endif}\n\n {if !spiral_mode && !(has_timelapse_safe_pos) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n G90\n G1 Z{max_layer_z + 3.0} F1200\n G1 Y295 F30000\n G1 Y265 F18000\n M83\n {endif}\n {endif}\n M623\n {endif}\n \n {if !spiral_mode && !timelapse_inline_photo}\n M993 A3 B3 C3\n {endif}\nM623\n; SKIPPABLE_END\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template wrapping_detection_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template wrapping_detection_gcode.json new file mode 100644 index 0000000000..c44fb1da14 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle template wrapping_detection_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2D Pro 0.4 nozzle template wrapping_detection_gcode", + "instantiation": "false", + "wrapping_detection_gcode": ";======== H2D Pro 20250806 clumping ========\n{if !spiral_mode}\n M622.1 S0 ; for previous firmware, default turn off\n M1002 set_flag g39_forced_detection_flag=1\n M1002 judge_flag g39_forced_detection_flag\n M622 J1\n {if layer_num == 3 || layer_num == 10 || layer_num == 19}\n M993 A2 B2 C2 ; nozzle cam detection allow status save.\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n M400 P100\n\n G39\n\n G90\n G1 Y295 F30000\n G1 Y265 F18000\n \n M993 A3 B3 C3 ; nozzle cam detection allow status restore.\n {endif}\n M623\n{endif}\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle.json index 842461e4d6..1b2565e73a 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.4 nozzle.json @@ -10,129 +10,12 @@ "0.4" ], "printer_model": "Bambu Lab H2D Pro", + "farthest_point_timelapse": "1", "printer_variant": "0.4", "default_filament_profile": [ "Bambu PLA Basic @BBL H2DP" ], "default_print_profile": "0.20mm Standard @BBL H2DP", - "enable_long_retraction_when_cut": [ - "2" - ], - "enable_pre_heating": "1", - "extruder_clearance_dist_to_rod": "50", - "extruder_clearance_height_to_lid": "201", - "extruder_clearance_height_to_rod": "47.4", - "extruder_clearance_max_radius": "96", - "extruder_printable_area": [ - "0x0,325x0,325x320,0x320", - "25x0,350x0,350x320,25x320" - ], - "fan_direction": "left", - "hotend_heating_rate": [ - "3.6", - "3.6", - "3.6", - "3.6", - "3.6" - ], - "machine_load_filament_time": "30", - "machine_max_speed_e": [ - "50", - "50", - "50", - "50", - "50", - "50", - "50", - "50", - "50", - "50" - ], - "machine_max_speed_x": [ - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "machine_max_speed_y": [ - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "machine_max_speed_z": [ - "30", - "30", - "30", - "30", - "30", - "30", - "30", - "30", - "30", - "30" - ], - "machine_switch_extruder_time": "5.6", - "machine_unload_filament_time": "30", - "master_extruder_id": "2", - "nozzle_volume": [ - "130", - "133", - "145", - "148", - "148" - ], - "printable_area": [ - "0x0", - "350x0", - "350x320", - "0x320" - ], - "retract_lift_below": [ - "319", - "319", - "319", - "319", - "319" - ], - "retraction_distances_when_cut": [ - "10", - "10", - "10", - "10", - "10" - ], - "support_air_filtration": "1", - "support_chamber_temp_control": "1", - "support_cooling_filter": "1", - "support_object_skip_flush": "1", - "wrapping_exclude_area": [ - "145x310", - "256x310", - "256x326", - "145x326" - ], - "upward_compatible_machine": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "machine_start_gcode": ";===== machine: H2D Pro start ======\n;===== date: 20251104 =====================\n\n;M1002 set_flag extrude_cali_flag=1\n;M1002 set_flag g29_before_print_flag=1\n;M1002 set_flag auto_cali_toolhead_offset_flag=1\n;M1002 set_flag build_plate_detect_flag=1\n\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\nM400\n;M73 P99\n\nM960 S10 P1 ; ext fan led\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L99 C53 D9 M99 E53 F9 N99 \nM1006 A56 B9 L99 C56 D9 M99 E56 F9 N99 \nM1006 A61 B9 L99 C61 D9 M99 E61 F9 N99 \nM1006 A53 B9 L99 C53 D9 M99 E53 F9 N99 \nM1006 A56 B9 L99 C56 D9 M99 E56 F9 N99 \nM1006 A61 B18 L99 C61 D18 M99 E61 F18 N99 \nM1006 W\n;=====printer start sound ===================\n\n;===== reset machine status =================\nM204 S10000\nM630 S0 P0\n\nG90\nM17 D ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM1002 set_gcode_claim_speed_level 5 ;Reset speed level\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nG29.1 Z{+0.0} ; clear z-trim value first\nM983.1 M1 \nM901 D4\nM481 S0 ; turn off cutter pos comp\n;===== reset machine status =================\n\nM620 M ;enable remap\n\n;===== avoid end stop =================\nG91\nG380 S2 Z27 F1200\nG380 S2 Z-12 F1200\nG90\n;===== avoid end stop =================\n\n;==== set airduct mode ==== \n\n{if (overall_chamber_temperature >= 40)}\n\n M145 P1 ; set airduct mode to heating mode for heating\n M106 P2 S0 ; turn off auxiliary fan\n M106 P3 S0 ; turn off chamber fan\n\n{else}\n M145 P0 ; set airduct mode to cooling mode for cooling\n M106 P2 S178 ; turn on auxiliary fan for cooling\n M106 P3 S127 ; turn on chamber fan for cooling\n M140 S0 ; stop heatbed from heating\n\n M1002 gcode_claim_action : 29\n M191 S0 ; wait for chamber temp\n M106 P2 S0 ; turn off auxiliary fan\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R30 S35 T40 U0.3 V0.5 W0.8 O40 ; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 T45 U0.3 V0.5 W0.8 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n {if (!is_all_bbl_filament)}\n M142 P1 R35 S40 T45 U0.3 V0.5 W0.8 O45 L1 ; set third-party PETG chamber autocooling\n {else}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R35 S45 T50 U0.3 V0.5 W0.8 O50 L1 ; set PETG ND0.2 chamber autocooling\n {else}\n M142 P1 R35 S50 T55 U0.3 V0.5 W0.8 O55 L1 ; set PETG ND0.4 chamber autocooling\n {endif}\n {endif}\n {endif}\n{endif}\n;==== set airduct mode ==== \n\n;===== start to heat heatbed & hotend==========\n\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n\n M104 S140 A\n M140 S[bed_temperature_initial_layer_single]\n\n ;===== set chamber temperature ==========\n {if (overall_chamber_temperature >= 40)}\n M145 P1 ; set airduct mode to heating mode\n M141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n {endif}\n ;===== set chamber temperature ==========\n\n;===== start to heat heatbead & hotend==========\n\n;====== cog noise reduction=================\nM982.2 S1 ; turn on cog noise reduction\n\n;===== first homing start =====\nM1002 gcode_claim_action : 13\n\nG28 X T300\n\nG150.1 F18000 ; wipe mouth to avoid filament stick to heatbed\nG150.3 F18000\nM400 P200\nM972 S24 P0 T2000\n\n{if curr_bed_type==\"Textured PEI Plate\"}\nM972 S26 P0 C0\n{else}\nM972 S36 P0 C0 X1\n{endif}\nM972 S35 P0 C0\n\nM972 S41 P0 T5000 ; trash can anti-collision\n\nM1009 Q1 L1\nG90\nG1 X175 Y160 F30000\nG28 Z P0 T250\nM1009 Q1 L0\n\n;===== first homing end =====\n\nM400\n;M73 P99\n\n;===== detection start =====\n\n T1001\n \n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-80} A ; rise temp in advance\n\nM1002 judge_flag build_plate_detect_flag\nM622 S1\n M972 S19 P0 C0 ; heatbed presence detection\n M972 S31 P0 T5000 ; toolhead camera dirty detection\n M972 S34 P0 T5000 ; heatbed plate offset detection\nM623\n\n M972 S14 P0 ; nozzle type detection\n\n;===== detection end =====\n\nM400\n;M73 P99\n\n;===== prepare print temperature and material ==========\nM400\nM211 X0 Y0 Z0 ;turn off soft endstop\nM975 S1 ; turn on input shaping\n\nG29.2 S0 ; avoid invalid abl data\n\n{if ((filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG\")) && (nozzle_diameter[initial_no_support_extruder] == 0.2)}\nM620.10 A0 F74.8347 H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F74.8347 H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60*0.8} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60*0.8} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n{endif}\n\nM620.11 P0 I[initial_no_support_extruder] E0\n\n{if long_retraction_when_ec }\nM620.11 K1 I[initial_no_support_extruder] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[initial_no_support_extruder] R0\n{endif}\n\nM628 S1\n{if filament_type[initial_no_support_extruder] == \"TPU\"}\n M620.11 S0 L0 I[initial_no_support_extruder] E-{retraction_distances_when_cut[initial_no_support_extruder]} F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60}\n{else}\n{if (filament_type[initial_no_support_extruder] == \"PA\") || (filament_type[initial_no_support_extruder] == \"PA-GF\")}\n M620.11 S1 L0 I[initial_no_support_extruder] R4 D2 E-{retraction_distances_when_cut[initial_no_support_extruder]} F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60}\n{else}\n M620.11 S1 L0 I[initial_no_support_extruder] R10 D8 E-{retraction_distances_when_cut[initial_no_support_extruder]} F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60}\n{endif}\n{endif}\nM629\n\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\nM1002 gcode_claim_action : 4\nM1002 set_filament_type:UNKNOWN\nM400\nT[initial_no_support_extruder]\nM400\nM628 S0\nM629\nM400\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\nM621 S[initial_no_support_extruder]A\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nM400\nM106 P1 S0\n\nG29.2 S1\n;===== prepare print temperature and material ==========\n\nM400\n;M73 P99\n\n;===== auto extrude cali start =========================\nM975 S1\nM1002 judge_flag extrude_cali_flag\n\nM622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\nM623\n\nM622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\nM623\n\nM622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\nM623\n\n;===== auto extrude cali end =========================\n\n{if filament_type[initial_no_support_extruder] == \"TPU\"}\n G150.2\n G150.1\n G150.2\n G150.1\n G150.2\n G150.1\n{else}\n M106 P1 S0\n M400 S2\n M109 S{nozzle_temperature[initial_no_support_extruder]} ; wait tmpr to extrude\n M83\n {if(nozzle_diameter == 0.8)}\n G1 E60 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60}\n {else}\n G1 E45 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60}\n {endif}\n G1 E-3 F1800\n M400 P500\n G150.2\n G150.1\n{endif}\n\nG91\nG1 Y-16 F12000 ; move away from the trash bin\nG90\n\nM400\n;M73 P99\n\n;===== wipe right nozzle start =====\n\nM1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n {if (overall_chamber_temperature >= 40)}\n G150 T{nozzle_temperature_initial_layer[initial_no_support_extruder] - 80}\n {endif}\nM106 S255 ; turn on fan to cool the nozzle\n\n;===== wipe left nozzle end =====\n\nM400\n;M73 P99\n\n{if (overall_chamber_temperature >= 40)}\n M1002 gcode_claim_action : 49\n M191 S[overall_chamber_temperature] ; wait for chamber temp\n{endif}\n\nM400\n;M73 P99\n\n;===== bed leveling ==================================\n\nM1002 judge_flag g29_before_print_flag\n\nM190 S[bed_temperature_initial_layer_single]; ensure bed temp\nM109 S140 A\nM106 S0 ; turn off fan , too noisy\n\nG91\nG1 Z5 F1200\nG90\nG1 X175 Y160 F30000\n\nM622 J1\n M1002 gcode_claim_action : 1\n G29.20 A3\n G29 A1 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\nM623\n \nM622 J2\n M1002 gcode_claim_action : 1\n {if has_tpu_in_first_layer}\n G29.20 A3\n G29 A1 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n {else}\n G29.20 A4\n G29 A2 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n {endif}\n M400\n M500 ; save cali data\nM623\n\nM622 J0\n G28\nM623\n\n;===== bed leveling end ================================\n\n;===== z ofst cali start =====\n\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n\n G383 O0 M2 T140\n M500\n\n;===== z ofst cali end =====\n\nG39.1 ; cali nozzle wrapped detection pos\nM500\n\nM400\n;M73 P99\n\nM141 S[overall_chamber_temperature]\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} A\n\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n\n G90\n G1 Z5 F1200\n G1 X187 Y160 F20000\n T1000\n M400 P200\n\n M970.3 Q1 A5 K0 O1\n M974 Q1 S2 P0\n\n M970.3 Q0 A5 K0 O1\n M974 Q0 S2 P0\n\n M970.2 Q2 K0 W38 Z0.01\n M974 Q2 S2 P0\n M500\n\n M975 S1\n;===== mech mode sweep end =====\n\nM400\n;M73 P99\n\nG150.3 ; move to garbage can to wait for temp\nM1026\nG29.9\n\n;===== xy ofst cali start =====\n\nM1002 judge_flag auto_cali_toolhead_offset_flag\n\nM622 J0\n M1012.5 N1 R1\n M500\nM623\n\nM622 J1\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])}\n G383 O1 T{nozzle_temperature_initial_layer[initial_no_support_extruder]} L{initial_no_support_extruder}\n M500\n M141 S[overall_chamber_temperature]\nM623\n\nM622 J2\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])}\n G383.3 T{nozzle_temperature_initial_layer[initial_no_support_extruder]} L{initial_no_support_extruder}\n M500\n M141 S[overall_chamber_temperature]\nM623\n;===== xy ofst cali end =====\n\nM400\n;M73 P99\n\nM1002 gcode_claim_action : 0\nM400\n\n;============switch again==================\n\nM211 X0 Y0 Z0 ;turn off soft endstop\nG91\nG1 Z6 F1200\nG90\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\nM620 S[initial_no_support_extruder]A\nM400\nT[initial_no_support_extruder]\nM400\nM628 S0\nM629\nM400\nM621 S[initial_no_support_extruder]A\n\n;============switch again==================\n\nM400\n;M73 P99\n\n;===== wait temperature reaching the reference value =======\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise to print tmpr\n\nM140 S[bed_temperature_initial_layer_single] \nM190 S[bed_temperature_initial_layer_single] \n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off fan\n M106 P2 S0 ; turn off big fan\n ;==== set ext toodhead cooling fan ==== \n {if (min_vitrification_temperature <= 50)}\n M106 P9 S255\n {endif}\n ;============set motor current==================\n M400 S1\n\n;===== wait temperature reaching the reference value =======\n\nM400\n;M73 P99\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{-0.02} ; for Textured PEI Plate\n {endif}\n \nG150.1\n\nM975 S1 ; turn on mech mode supression\nM983.4 S1 ; turn on deformation compensation \nG29.2 S1 ; turn on pos comp\nG29.7 S1\n\nG90\nG1 Z5 F1200\nG1 Y295 F30000\nG1 Y265 F18000\n\n;===== nozzle load line ===============================\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n G1 Z5 F1200\n G1 X270 Y-0.5 F60000\n G28.14\n G29.2 S0\n G91\n G1 Z0.8 F1200\n G90\n G1 X250 F60000\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n M83\n G1 E5 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053*60}\n G1 X290 E20 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053*60}\n G91\n G3 Z0.4 I1.217 J0 P1 F60000\n G90\n M83\n G29.2 S1 ; ensure z comp turn on\n;===== noozle load line end ===========================\n\nM400\n;M73 P99\n\nM993 A1 B1 C1 ; nozzle cam detection allowed.\n\n{if (filament_type[initial_no_support_extruder] == \"TPU\")}\nM1015.3 S1;enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PETG\")\n || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H[nozzle_diameter] ;disable E air printing detect\n{endif}\n\nM620.6 I[initial_no_support_extruder] W1 ;enable ams air printing detect\n\nM211 Z1\nG29.99\n\n\n", - "machine_end_gcode": ";======== H2D Pro end ========\n;===== date: 2025/11/11 =====\n\nG392 S0 ;turn off nozzle clog detect\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nM400\nM211 Z1\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\n\nM1002 judge_flag timelapse_record_flag\nM622 J1\n G150.3\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S5 ;wait for last picture to be taken\nM623 ;end of \"timelapse_record_flag\"\n\nG90\nG1 Z{max_layer_z + 10} F900 ; lower z a little\n\nG90\nM141 S0 ; turn off chamber heating\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM106 P9 S0 ; turn off ext toodhead cooling fan\n; pull back filament to AMS\nM620 S65535\nT65535\nG150.2\nM621 S65535\n\nM620 S65279\nT65279\nG150.2\nM621 S65279\n\nG150.3\n\nM104 S0 T0; turn off hotend\nM104 S0 T1; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (100.0 - max_layer_z/2) > 0}\n {if (max_layer_z + 100.0 - max_layer_z/2) < 320}\n G1 Z{max_layer_z + 100.0 - max_layer_z/2} F600\n G1 Z{max_layer_z + 98.0 - max_layer_z/2}\n {else}\n G1 Z320 F600\n G1 Z320\n {endif}\n{else}\n {if (max_layer_z + 4.0) < 320}\n G1 Z{max_layer_z + 4.0} F600\n G1 Z{max_layer_z + 2.0}\n {else}\n G1 Z320 F600\n G1 Z320\n {endif}\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM1015.4 S0 K0 ;disable air printing detect\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L99 C53 D10 M99 E53 F10 N99 \nM1006 A57 B10 L99 C57 D10 M99 E57 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A53 B10 L99 C53 D10 M99 E53 F10 N99 \nM1006 A57 B10 L99 C57 D10 M99 E57 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A48 B10 L99 C48 D10 M99 E48 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A60 B10 L99 C60 D10 M99 E60 F10 N99 \nM1006 W\n;=====printer finish sound=========\nM400\nM18\n\n", - "layer_change_gcode": ";======== H2D Pro 20250725 layer_change ========\n; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change\n", - "time_lapse_gcode": ";======== H2D Pro 20260612========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\n\nM1002 judge_flag timelapse_record_flag\nM622 J1\n {if !spiral_mode}\n M993 A2 B2 C2\n M993 A0 B0 C0\n {endif}\n\n {if timelapse_inline_photo}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {else}\n M622.1 S0 ; for prev firmware, default turn off\n M1002 set_flag smooth_safe_pos_suppoprt_flag=1\n M1002 judge_flag smooth_safe_pos_suppoprt_flag\n \n M622 J0\n {if !spiral_mode && !(has_timelapse_safe_pos && timelapse_type == 0) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n M83\n G1 Z{max_layer_z + 0.4} F1200\n M400\n {endif}\n {endif}\n\n {if has_timelapse_safe_pos && timelapse_type == 0 && !spiral_mode}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} X{timelapse_pos_x} Y{timelapse_pos_y} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {else}\n {if spiral_mode}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {else}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {endif}\n {endif}\n\n {if !spiral_mode && !(has_timelapse_safe_pos && timelapse_type == 0) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n G90\n G1 Z{max_layer_z + 3.0} F1200\n G1 Y295 F30000\n G1 Y265 F18000\n M83\n {endif}\n {endif}\n M623\n\n M622 J1\n {if !spiral_mode && !(has_timelapse_safe_pos) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n M83\n G1 Z{max_layer_z + 0.4} F1200\n M400\n {endif}\n {endif}\n\n {if has_timelapse_safe_pos && !spiral_mode}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} U{timelapse_pos_x} V{timelapse_pos_y} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {else}\n {if spiral_mode}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {else}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {endif}\n {endif}\n\n {if !spiral_mode && !(has_timelapse_safe_pos) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n G90\n G1 Z{max_layer_z + 3.0} F1200\n G1 Y295 F30000\n G1 Y265 F18000\n M83\n {endif}\n {endif}\n M623\n {endif}\n \n {if !spiral_mode}\n M993 A3 B3 C3\n {endif}\nM623\n; SKIPPABLE_END\n", - "wrapping_detection_gcode": ";======== H2D Pro 20250806 clumping ========\n{if !spiral_mode}\n M622.1 S0 ; for previous firmware, default turn off\n M1002 set_flag g39_forced_detection_flag=1\n M1002 judge_flag g39_forced_detection_flag\n M622 J1\n {if layer_num == 3 || layer_num == 10 || layer_num == 19}\n M993 A2 B2 C2 ; nozzle cam detection allow status save.\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n M400 P100\n\n G39\n\n G90\n G1 Y295 F30000\n G1 Y265 F18000\n \n M993 A3 B3 C3 ; nozzle cam detection allow status restore.\n {endif}\n M623\n{endif}\n", - "change_filament_gcode": ";======== H2D Pro filament ========\n;===== 20251031 =====\nM993 A2 B2 C2 ; nozzle cam detection allow status save.\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n{if (filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PETG\")\n || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG-CF\")}\nM1015.4 S1 K0 ;disable E air printing detect\n{else}\nM1015.4 S0 ; disable E air printing detect\n{endif}\n\nM620 S[next_extruder]A\nM1002 gcode_claim_action : 4\nM204 S9000\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\nM106 P2 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\n{if ((filament_type[current_extruder] == \"PLA\") || (filament_type[current_extruder] == \"PLA-CF\") || (filament_type[current_extruder] == \"PETG\")) && (nozzle_diameter[current_extruder] == 0.2)}\nM620.10 A0 F74.8347 L[flush_length] H{nozzle_diameter[current_extruder]} T{flush_temperatures[current_extruder]} P[old_filament_temp] S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[current_extruder]/2.4053*60*0.8} L[flush_length] H{nozzle_diameter[current_extruder]} T{flush_temperatures[current_extruder]} P[old_filament_temp] S1\n{endif}\n\n{if ((filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG\")) && (nozzle_diameter[next_extruder] == 0.2)}\nM620.10 A1 F74.8347 L[flush_length] H{nozzle_diameter[next_extruder]} T{flush_temperatures[next_extruder]} P[new_filament_temp] S1\n{else}\nM620.10 A1 F{flush_volumetric_speeds[next_extruder]/2.4053*60*0.8} L[flush_length] H{nozzle_diameter[next_extruder]} T{flush_temperatures[next_extruder]} P[new_filament_temp] S1\n{endif}\n\n{if long_retraction_when_cut}\nM620.11 P1 I[current_extruder] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{else}\nM620.11 P0 I[current_extruder] E0\n{endif}\n\n{if long_retraction_when_ec}\nM620.11 K1 I[current_extruder] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[current_extruder] R0\n{endif}\n\nM628 S1\n{if filament_type[current_extruder] == \"TPU\"}\nM620.11 S0 L0 I[current_extruder] E-{retraction_distances_when_cut[current_extruder]} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{else}\n{if (filament_type[current_extruder] == \"PA\") || (filament_type[current_extruder] == \"PA-GF\")}\nM620.11 S1 L0 I[current_extruder] R4 D2 E-{retraction_distances_when_cut[current_extruder]} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{else}\nM620.11 S1 L0 I[current_extruder] R10 D8 E-{retraction_distances_when_cut[current_extruder]} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{endif}\n{endif}\nM629\n\n{if filament_type[current_extruder] == \"TPU\" || filament_type[next_extruder] == \"TPU\"}\nM620.11 H2 C331\n{else}\nM620.11 H0\n{endif}\n\nT[next_extruder]\n\n;deretract\n{if filament_type[next_extruder] == \"TPU\"}\n{else}\n{if (filament_type[next_extruder] == \"PA\") || (filament_type[next_extruder] == \"PA-GF\")}\n;VG1 E1 F{max(new_filament_e_feedrate, 200)}\n;VG1 E1 F{max(new_filament_e_feedrate/2, 100)}\n{else}\n;VG1 E4 F{max(new_filament_e_feedrate, 200)}\n;VG1 E4 F{max(new_filament_e_feedrate/2, 100)}\n{endif}\n{endif}\n\n; VFLUSH_START\n\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\n\nSYNC T{ceil(flush_length / 125) * 5}\n\n; VFLUSH_END\n\nM1002 set_filament_type:{filament_type[next_extruder]}\n\nM400\nM83\n{if next_extruder < 255}\n\nM620.10 R{retract_length_toolchange[filament_map[next_extruder]-1]}\nM628 S0\n;VM109 S[new_filament_temp]\nM629\nM400\n\nM983.3 F{filament_max_volumetric_speed[next_extruder]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_extruder]-1]}\n\nM400\n{if wipe_avoid_perimeter}\nG1 Y320 F30000\nG1 X{wipe_avoid_pos_x} F30000\n{endif}\nG1 Y295 F30000\nG1 Y265 F18000\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n\nM993 A3 B3 C3 ; nozzle cam detection allow status restore.\n\n{if (filament_type[next_extruder] == \"TPU\")}\nM1015.3 S1;enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PETG\")\n || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 ; disable E air printing detect\n{endif}\n\nM620.6 I[next_extruder] W1 ;enable ams air printing detect\nM1002 gcode_claim_action : 0", "deretraction_speed": [ "30", "30", @@ -140,6 +23,31 @@ "30", "30" ], + "deretract_speed_extruder_change": [ + "15", + "15", + "15", + "15", + "15" + ], + "extruder_clearance_height_to_lid": "201", + "extruder_clearance_height_to_rod": "47.4", + "extruder_clearance_max_radius": "96", + "extruder_clearance_dist_to_rod": "50", + "enable_long_retraction_when_cut": [ + "2" + ], + "enable_pre_heating": "1", + "extruder_height_gap": "5", + "extruder_printable_area": [ + "0x0,325x0,325x320,0x320", + "25x0,350x0,350x320,25x320" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow", + "Direct Drive Standard,Direct Drive High Flow,Direct Drive TPU High Flow" + ], + "fan_direction": "left", "hotend_cooling_rate": [ "2", "2", @@ -147,6 +55,21 @@ "2", "2" ], + "hotend_heating_rate": [ + "3.6", + "3.6", + "3.6", + "3.6", + "3.6" + ], + "include": [ + "Bambu Lab H2D Pro 0.4 nozzle template machine_start_gcode", + "Bambu Lab H2D Pro 0.4 nozzle template machine_end_gcode", + "Bambu Lab H2D Pro 0.4 nozzle template layer_change_gcode", + "Bambu Lab H2D Pro 0.4 nozzle template time_lapse_gcode", + "Bambu Lab H2D Pro 0.4 nozzle template wrapping_detection_gcode", + "Bambu Lab H2D Pro 0.4 nozzle template change_filament_gcode" + ], "long_retractions_when_cut": [ "0", "0", @@ -154,6 +77,7 @@ "0", "0" ], + "machine_load_filament_time": "30", "machine_max_acceleration_e": [ "5000", "5000", @@ -190,18 +114,6 @@ "5000", "5000" ], - "machine_max_acceleration_travel": [ - "9000", - "9000", - "9000", - "9000", - "9000", - "9000", - "9000", - "9000", - "9000", - "9000" - ], "machine_max_acceleration_x": [ "20000", "20000", @@ -286,6 +198,69 @@ "3", "3" ], + "machine_max_speed_e": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50", + "50", + "50", + "50" + ], + "machine_max_speed_x": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_y": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_z": [ + "30", + "30", + "30", + "30", + "30", + "30", + "30", + "30", + "30", + "30" + ], + "machine_switch_extruder_time": "5.6", + "machine_unload_filament_time": "30", + "master_extruder_id": "2", + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000" + ], "nozzle_flush_dataset": [ "1", "2", @@ -293,12 +268,18 @@ "2", "2" ], - "nozzle_type": [ - "hardened_steel", - "hardened_steel", - "hardened_steel", - "hardened_steel", - "hardened_steel" + "nozzle_volume": [ + "130", + "133", + "145", + "148", + "148" + ], + "printable_area": [ + "0x0", + "350x0", + "350x320", + "0x320" ], "printer_extruder_id": [ "1", @@ -328,13 +309,6 @@ "2", "2" ], - "retract_lift_above": [ - "0", - "0", - "0", - "0", - "0" - ], "retract_restart_extra": [ "0", "0", @@ -356,6 +330,13 @@ "1", "1" ], + "retraction_distances_when_cut": [ + "10", + "10", + "10", + "10", + "10" + ], "retraction_length": [ "0.8", "0.8", @@ -377,6 +358,23 @@ "30", "30" ], + "retract_lift_above": [ + "0", + "0", + "0", + "0", + "0" + ], + "retract_lift_below": [ + "319", + "319", + "319", + "319", + "319" + ], + "support_cooling_filter": "1", + "support_chamber_temp_control": "1", + "support_object_skip_flush": "0", "wipe": [ "1", "1", @@ -384,6 +382,12 @@ "1", "1" ], + "wrapping_exclude_area": [ + "145x310", + "256x310", + "256x326", + "145x326" + ], "wipe_distance": [ "2", "2", @@ -405,8 +409,7 @@ "Auto Lift", "Auto Lift" ], - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow", - "Direct Drive Standard,Direct Drive High Flow,Direct Drive TPU High Flow" + "upward_compatible_machine": [ + "Bambu Lab H2D 0.4 nozzle" ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.6 nozzle.json index 218506fbfa..f948cd211f 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.6 nozzle.json @@ -1,33 +1,36 @@ { - "type": "machine", - "name": "Bambu Lab H2D Pro 0.6 nozzle", - "inherits": "Bambu Lab H2D Pro 0.4 nozzle", - "from": "system", - "setting_id": "GM053", - "instantiation": "true", - "nozzle_diameter": [ - "0.6", - "0.6" - ], - "printer_model": "Bambu Lab H2D Pro", - "printer_variant": "0.6", - "default_print_profile": "0.30mm Standard @BBL H2DP 0.6 nozzle", - "max_layer_height": [ - "0.42", - "0.42" - ], - "min_layer_height": [ - "0.12", - "0.12" - ], - "retraction_length": [ - "1.4", - "1.4", - "1.4", - "1.4", - "1.4" - ], - "upward_compatible_machine": [ - "Bambu Lab H2D 0.6 nozzle" - ] -} + "type": "machine", + "name": "Bambu Lab H2D Pro 0.6 nozzle", + "inherits": "Bambu Lab H2D Pro 0.4 nozzle", + "from": "system", + "setting_id": "GM053", + "instantiation": "true", + "nozzle_diameter": [ + "0.6", + "0.6" + ], + "printer_model": "Bambu Lab H2D Pro", + "printer_variant": "0.6", + "default_filament_profile": [ + "Bambu PLA Basic @BBL H2DP 0.6 nozzle" + ], + "default_print_profile": "0.30mm Standard @BBL H2DP 0.6 nozzle", + "max_layer_height": [ + "0.42", + "0.42" + ], + "min_layer_height": [ + "0.12", + "0.12" + ], + "retraction_length": [ + "1.4", + "1.4", + "1.4", + "1.4", + "1.4" + ], + "upward_compatible_machine": [ + "Bambu Lab H2D 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.8 nozzle.json index 6722650b46..7b363c8cb2 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2D Pro 0.8 nozzle.json @@ -1,327 +1,327 @@ { - "type": "machine", - "name": "Bambu Lab H2D Pro 0.8 nozzle", - "inherits": "Bambu Lab H2D Pro 0.4 nozzle", - "from": "system", - "setting_id": "GM054", - "instantiation": "true", - "nozzle_diameter": [ - "0.8", - "0.8" - ], - "printer_model": "Bambu Lab H2D Pro", - "printer_variant": "0.8", - "default_print_profile": "0.40mm Standard @BBL H2DP 0.8 nozzle", - "default_filament_profile": [ - "Bambu PLA Basic @BBL H2DP 0.8 nozzle" - ], - "max_layer_height": [ - "0.56", - "0.56" - ], - "min_layer_height": [ - "0.16", - "0.16" - ], - "retraction_length": [ - "3", - "3", - "3", - "3" - ], - "upward_compatible_machine": [ - "Bambu Lab H2D 0.8 nozzle" - ], - "deretraction_speed": [ - "30", - "30", - "30", - "30" - ], - "hotend_cooling_rate": [ - "2", - "2", - "2", - "2" - ], - "hotend_heating_rate": [ - "3.6", - "3.6", - "3.6", - "3.6" - ], - "long_retractions_when_cut": [ - "0", - "0", - "0", - "0" - ], - "machine_max_acceleration_e": [ - "5000", - "5000", - "5000", - "5000", - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_extruding": [ - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_retracting": [ - "5000", - "5000", - "5000", - "5000", - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_travel": [ - "9000", - "9000", - "9000", - "9000", - "9000", - "9000", - "9000", - "9000" - ], - "machine_max_acceleration_x": [ - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_y": [ - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_z": [ - "500", - "500", - "500", - "500", - "500", - "500", - "500", - "500" - ], - "machine_max_jerk_e": [ - "2.5", - "2.5", - "2.5", - "2.5", - "2.5", - "2.5", - "2.5", - "2.5" - ], - "machine_max_jerk_x": [ - "9", - "9", - "9", - "9", - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_y": [ - "9", - "9", - "9", - "9", - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_z": [ - "3", - "3", - "3", - "3", - "3", - "3", - "3", - "3" - ], - "machine_max_speed_e": [ - "50", - "50", - "50", - "50", - "50", - "50", - "50", - "50" - ], - "machine_max_speed_x": [ - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "machine_max_speed_y": [ - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "machine_max_speed_z": [ - "30", - "30", - "30", - "30", - "30", - "30", - "30", - "30" - ], - "nozzle_flush_dataset": [ - "1", - "2", - "1", - "2" - ], - "nozzle_type": [ - "hardened_steel", - "hardened_steel", - "hardened_steel", - "hardened_steel" - ], - "nozzle_volume": [ - "130", - "133", - "145", - "148" - ], - "printer_extruder_id": [ - "1", - "1", - "2", - "2" - ], - "printer_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "retract_before_wipe": [ - "0%", - "0%", - "0%", - "0%" - ], - "retract_length_toolchange": [ - "2", - "2", - "2", - "2" - ], - "retract_lift_above": [ - "0", - "0", - "0", - "0" - ], - "retract_lift_below": [ - "319", - "319", - "319", - "319" - ], - "retract_restart_extra": [ - "0", - "0", - "0", - "0" - ], - "retract_restart_extra_toolchange": [ - "0", - "0", - "0", - "0" - ], - "retract_when_changing_layer": [ - "1", - "1", - "1", - "1" - ], - "retraction_distances_when_cut": [ - "10", - "10", - "10", - "10" - ], - "retraction_minimum_travel": [ - "1", - "1", - "1", - "1" - ], - "retraction_speed": [ - "30", - "30", - "30", - "30" - ], - "wipe": [ - "1", - "1", - "1", - "1" - ], - "wipe_distance": [ - "2", - "2", - "2", - "2" - ], - "z_hop": [ - "0.4", - "0.4", - "0.4", - "0.4" - ], - "z_hop_types": [ - "Auto Lift", - "Auto Lift", - "Auto Lift", - "Auto Lift" - ], - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow", - "Direct Drive Standard,Direct Drive High Flow" - ] -} + "type": "machine", + "name": "Bambu Lab H2D Pro 0.8 nozzle", + "inherits": "Bambu Lab H2D Pro 0.4 nozzle", + "from": "system", + "setting_id": "GM054", + "instantiation": "true", + "nozzle_diameter": [ + "0.8", + "0.8" + ], + "printer_model": "Bambu Lab H2D Pro", + "printer_variant": "0.8", + "default_filament_profile": [ + "Bambu PLA Basic @BBL H2DP 0.8 nozzle" + ], + "default_print_profile": "0.40mm Standard @BBL H2DP 0.8 nozzle", + "deretraction_speed": [ + "30", + "30", + "30", + "30" + ], + "deretract_speed_extruder_change": [ + "15", + "15", + "15", + "15" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow", + "Direct Drive Standard,Direct Drive High Flow" + ], + "hotend_cooling_rate": [ + "2", + "2", + "2", + "2" + ], + "hotend_heating_rate": [ + "3.6", + "3.6", + "3.6", + "3.6" + ], + "long_retractions_when_cut": [ + "0", + "0", + "0", + "0" + ], + "machine_max_acceleration_e": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500", + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3", + "3", + "3", + "3", + "3" + ], + "machine_max_speed_e": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50", + "50" + ], + "machine_max_speed_x": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_y": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_z": [ + "30", + "30", + "30", + "30", + "30", + "30", + "30", + "30" + ], + "max_layer_height": [ + "0.56", + "0.56" + ], + "min_layer_height": [ + "0.16", + "0.16" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000" + ], + "nozzle_flush_dataset": [ + "1", + "2", + "1", + "2" + ], + "nozzle_volume": [ + "130", + "133", + "145", + "148" + ], + "printer_extruder_id": [ + "1", + "1", + "2", + "2" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "retract_before_wipe": [ + "0%", + "0%", + "0%", + "0%" + ], + "retract_length_toolchange": [ + "2", + "2", + "2", + "2" + ], + "retract_restart_extra": [ + "0", + "0", + "0", + "0" + ], + "retract_restart_extra_toolchange": [ + "0", + "0", + "0", + "0" + ], + "retract_when_changing_layer": [ + "1", + "1", + "1", + "1" + ], + "retraction_distances_when_cut": [ + "10", + "10", + "10", + "10" + ], + "retraction_length": [ + "3", + "3", + "3", + "3" + ], + "retraction_minimum_travel": [ + "1", + "1", + "1", + "1" + ], + "retraction_speed": [ + "30", + "30", + "30", + "30" + ], + "retract_lift_above": [ + "0", + "0", + "0", + "0" + ], + "retract_lift_below": [ + "319", + "319", + "319", + "319" + ], + "wipe": [ + "1", + "1", + "1", + "1" + ], + "wipe_distance": [ + "2", + "2", + "2", + "2" + ], + "z_hop": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift", + "Auto Lift", + "Auto Lift" + ], + "upward_compatible_machine": [ + "Bambu Lab H2D 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D Pro.json b/resources/profiles/BBL/machine/Bambu Lab H2D Pro.json index d2be50fe67..cacfa01b7e 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2D Pro.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2D Pro.json @@ -1,15 +1,15 @@ { - "type": "machine_model", - "name": "Bambu Lab H2D Pro", - "nozzle_diameter": "0.4;0.2;0.6;0.8", - "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", - "bed_model": "bbl-3dp-H2D.stl", - "bed_texture": "bbl-3dp-logo.svg", - "default_bed_type": "Textured PEI Plate", - "image_bed_type": "o", - "not_support_bed_type": "Smooth Cool Plate;Textured Cool Plate", - "family": "BBL-3DP", - "machine_tech": "FFF", - "model_id": "O1E", - "default_materials": "Bambu PLA Basic @BBL H2DP;Bambu PLA-CF @BBL H2DP 0.4 nozzle;Bambu PETG Basic @BBL H2DP 0.4 nozzle;Bambu ABS @BBL H2DP;Bambu PETG HF @BBL H2DP 0.4 nozzle;Bambu PLA Silk @BBL H2DP;Bambu PLA Matte @BBL H2DP;Bambu PC @BBL H2DP 0.4 nozzle;Bambu PA-CF @BBL H2DP;Bambu PLA Pure @BBL H2DP;Bambu PLA Basic @BBL H2DP 0.2 nozzle" -} + "type": "machine_model", + "name": "Bambu Lab H2D Pro", + "nozzle_diameter": "0.4;0.2;0.6;0.8", + "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", + "bed_model": "bbl-3dp-H2D.stl", + "bed_texture": "bbl-3dp-logo.svg", + "default_bed_type": "Textured PEI Plate", + "image_bed_type": "o", + "not_support_bed_type": "Cool Plate", + "family": "BBL-3DP", + "machine_tech": "FFF", + "model_id": "O1E", + "default_materials": "Bambu PLA Basic @BBL H2DP;Bambu PLA-CF @BBL H2DP 0.4 nozzle;Bambu PETG Basic @BBL H2DP 0.4 nozzle;Bambu ABS @BBL H2DP;Bambu PETG HF @BBL H2DP 0.4 nozzle;Bambu PLA Silk @BBL H2DP;Bambu PLA Matte @BBL H2DP;Bambu PC @BBL H2DP 0.4 nozzle;Bambu PA-CF @BBL H2DP;Bambu PLA Pure @BBL H2DP;Bambu PLA Basic @BBL H2DP 0.2 nozzle" +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab H2D.json b/resources/profiles/BBL/machine/Bambu Lab H2D.json index a264365c94..31b0cc023e 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2D.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2D.json @@ -1,16 +1,16 @@ { - "type": "machine_model", - "name": "Bambu Lab H2D", - "nozzle_diameter": "0.4;0.2;0.6;0.8", - "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", - "bed_model": "bbl-3dp-H2D.stl", - "bed_texture": "bbl-3dp-logo.svg", - "use_rect_grid": "true", - "default_bed_type": "Textured PEI Plate", - "image_bed_type": "o", - "not_support_bed_type": "Smooth Cool Plate;Textured Cool Plate", - "family": "BBL-3DP", - "machine_tech": "FFF", - "model_id": "O1D", - "default_materials": "Bambu PLA Basic @BBL H2D;Bambu PLA-CF @BBL H2D 0.4 nozzle;Bambu PETG Basic @BBL H2D 0.4 nozzle;Bambu ABS @BBL H2D;Bambu PETG HF @BBL H2D 0.4 nozzle;Bambu PLA Silk @BBL H2D;Bambu PLA Matte @BBL H2D;Bambu PC @BBL H2D 0.4 nozzle;Bambu PA-CF @BBL H2D;Bambu PLA Pure @BBL H2D;Bambu PLA Basic @BBL H2D 0.2 nozzle" -} + "type": "machine_model", + "name": "Bambu Lab H2D", + "nozzle_diameter": "0.4;0.2;0.6;0.8", + "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", + "bed_model": "bbl-3dp-H2D.stl", + "bed_texture": "bbl-3dp-logo.svg", + "use_rect_grid": "true", + "default_bed_type": "Textured PEI Plate", + "image_bed_type": "o", + "not_support_bed_type": "Cool Plate", + "family": "BBL-3DP", + "machine_tech": "FFF", + "model_id": "O1D", + "default_materials": "Bambu PLA Basic @BBL H2D;Bambu PLA-CF @BBL H2D 0.4 nozzle;Bambu PETG Basic @BBL H2D 0.4 nozzle;Bambu ABS @BBL H2D;Bambu PETG HF @BBL H2D 0.4 nozzle;Bambu PLA Silk @BBL H2D;Bambu PLA Matte @BBL H2D;Bambu PC @BBL H2D 0.4 nozzle;Bambu PA-CF @BBL H2D;Bambu PLA Pure @BBL H2D;Bambu PLA Basic @BBL H2D 0.2 nozzle" +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab H2S 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab H2S 0.2 nozzle.json index b7e7230b50..1623e24690 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2S 0.2 nozzle.json @@ -1,27 +1,212 @@ { - "type": "machine", - "name": "Bambu Lab H2S 0.2 nozzle", - "inherits": "Bambu Lab H2S 0.4 nozzle", - "from": "system", - "setting_id": "GM038", - "instantiation": "true", - "nozzle_diameter": [ - "0.2" - ], - "printer_model": "Bambu Lab H2S", - "printer_variant": "0.2", - "default_filament_profile": [ - "Bambu PLA Basic @BBL H2S 0.2 nozzle" - ], - "default_print_profile": "0.10mm Standard @BBL H2S 0.2 nozzle", - "max_layer_height": [ - "0.14" - ], - "min_layer_height": [ - "0.04" - ], - "retraction_length": [ - "0.4", - "0.4" - ] -} + "type": "machine", + "name": "Bambu Lab H2S 0.2 nozzle", + "inherits": "Bambu Lab H2S 0.4 nozzle", + "from": "system", + "setting_id": "GM038", + "instantiation": "true", + "nozzle_diameter": [ + "0.2" + ], + "printer_model": "Bambu Lab H2S", + "printer_variant": "0.2", + "default_filament_profile": [ + "Bambu PLA Basic @BBL H2S 0.2 nozzle" + ], + "default_print_profile": "0.10mm Standard @BBL H2S 0.2 nozzle", + "max_layer_height": [ + "0.14" + ], + "min_layer_height": [ + "0.04" + ], + "retraction_length": [ + "0.4", + "0.4" + ], + "deretraction_speed": [ + "30", + "30" + ], + "hotend_cooling_rate": [ + "2", + "2" + ], + "hotend_heating_rate": [ + "2", + "2" + ], + "long_retractions_when_cut": [ + "0", + "0" + ], + "nozzle_flush_dataset": [ + "1", + "2" + ], + "retract_before_wipe": [ + "0%", + "0%" + ], + "retract_length_toolchange": [ + "2", + "2" + ], + "retract_restart_extra": [ + "0", + "0" + ], + "retract_restart_extra_toolchange": [ + "0", + "0" + ], + "retract_when_changing_layer": [ + "1", + "1" + ], + "retraction_distances_when_cut": [ + "18", + "18" + ], + "retraction_minimum_travel": [ + "1", + "1" + ], + "retraction_speed": [ + "30", + "30" + ], + "wipe": [ + "1", + "1" + ], + "z_hop": [ + "0.4", + "0.4" + ], + "deretract_speed_extruder_change": [ + "30", + "30" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow" + ], + "nozzle_volume": [ + "145", + "148" + ], + "printer_extruder_id": [ + "1", + "1" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "retract_lift_above": [ + "0", + "0" + ], + "retract_lift_below": [ + "339", + "339" + ], + "wipe_distance": [ + "2", + "2" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift" + ], + "machine_max_acceleration_e": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3" + ], + "machine_max_speed_z": [ + "30", + "30", + "30", + "30" + ], + "machine_max_speed_y": [ + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_x": [ + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_e": [ + "30", + "30", + "30", + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template change_filament_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template change_filament_gcode.json new file mode 100644 index 0000000000..a6bf90fda6 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template change_filament_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2S 0.4 nozzle template change_filament_gcode", + "instantiation": "false", + "change_filament_gcode": ";===== machine: H2S filament_change =====\n;===== date: 2026/01/28 =====\n\nM993 A2 B2 C2 ; nozzle cam detection allow status save.\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n{if (filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PETG\")\n || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG-CF\")}\nM1015.4 S1 K0 ;disable E air printing detect\n{else}\nM1015.4 S0 ; disable E air printing detect\n{endif}\n\nM620 S[next_extruder]A\nM1002 gcode_claim_action : 4\nM204 S9000\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\nM106 P2 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\nM620.10 A0 F{flush_volumetric_speeds[current_extruder]/2.4053*60*0.8} L[flush_length] H{nozzle_diameter[current_extruder]} T{flush_temperatures[current_extruder]} P[old_filament_temp] S1\nM620.10 A1 F{flush_volumetric_speeds[next_extruder]/2.4053*60*0.8} L[flush_length] H{nozzle_diameter[next_extruder]} T{flush_temperatures[next_extruder]} P[new_filament_temp] S1\n\n{if long_retraction_when_cut}\nM620.11 P1 I[current_extruder] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{else}\nM620.11 P0 I[current_extruder] E0\n{endif}\n\n\n{if filament_type[current_extruder] == \"TPU\" || filament_type[next_extruder] == \"TPU\"}\nM620.11 H2 C331\n{else}\nM620.11 H0\n{endif}\n\nM620.15 C{new_filament_temp - filament_cooling_before_tower[next_extruder]}\n\nT[next_extruder]\n\n\n; VFLUSH_START\n\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\n\nSYNC T{ceil(flush_length / 125) * 5}\n\n; VFLUSH_END\n\nM1002 set_filament_type:{filament_type[next_extruder]}\n\nM400\nM83\n{if next_extruder < 255}\n\nM620.10 R{retract_length_toolchange[filament_map[next_extruder]-1]}\nM628 S0\n;VM109 S[new_filament_temp]\n\nM629\nM400\n\n;prime_tower_interface\n{if is_prime_tower_interface && filament_tower_interface_purge_volume !=0}\nG150.1\nM620.13 W0 L{filament_tower_interface_purge_volume} T{filament_tower_interface_print_temp} R0.0\n{endif}\n;prime_tower_interface\n\nM983.3 F{filament_max_volumetric_speed[next_extruder]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_extruder]-1]}\n\nM400\n{if wipe_avoid_perimeter}\nG1 Y320 F30000\nG1 X{wipe_avoid_pos_x} F30000\n{endif}\nG1 Y295 F30000\nG1 Y265 F18000\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n\nM622.1 S0 ;for prev version, default skip\nM1002 judge_flag powerloss_resume_flag\nM622 J1\nM983.3 F{filament_max_volumetric_speed[next_extruder]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_extruder]-1]}\nM400\n{if wipe_avoid_perimeter}\nG1 Y320 F30000\nG1 X{wipe_avoid_pos_x} F30000\n{endif}\nG1 Y295 F30000\nG1 Y265 F18000\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\nM1002 set_flag powerloss_resume_flag=0\nM623\n\nM993 A3 B3 C3 ; nozzle cam detection allow status restore.\n\n{if (filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PETG\")\n || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 ; disable E air printing detect\n{endif}\n\nM620.6 I[next_extruder] W1 ;enable ams air printing detect\nM1002 gcode_claim_action : 0\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template layer_change_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template layer_change_gcode.json new file mode 100644 index 0000000000..e46a42768e --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template layer_change_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2S 0.4 nozzle template layer_change_gcode", + "instantiation": "false", + "layer_change_gcode": ";============= H2S 20250611 =============\n; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template machine_end_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template machine_end_gcode.json new file mode 100644 index 0000000000..f8b451a7b8 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template machine_end_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2S 0.4 nozzle template machine_end_gcode", + "instantiation": "false", + "machine_end_gcode": ";========== H2S end ==========\n;===== date: 2026/03/13 =====\n\nG392 S0 ;turn off nozzle clog detect\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nM211 Z1\n\nG90\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\nM1002 judge_flag timelapse_record_flag\nM622 J1\n G150.3\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S5 ;wait for last picture to be taken\nM623 ;end of \"timelapse_record_flag\"\n\nG90\nG1 Z{max_layer_z + 10} F900 ; lower z a little\n\nM141 S0 ; turn off chamber heating\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\n; pull back filament to AMS\nM620 S65535\nT65535\nG150.2\nM621 S65535\n\nG150.3\n\nM104 S0; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (100.0 - max_layer_z/2) > 0}\n {if (max_layer_z + 100.0 - max_layer_z/2) < 340}\n G1 Z{max_layer_z + 100.0 - max_layer_z/2} F600\n G1 Z{max_layer_z + 98.0 - max_layer_z/2}\n {else}\n G1 Z340 F600\n G1 Z340\n {endif}\n{else}\n {if (max_layer_z + 4.0) < 340}\n G1 Z{max_layer_z + 4.0} F600\n G1 Z{max_layer_z + 2.0}\n {else}\n G1 Z340 F600\n G1 Z340\n {endif}\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\n\nM1015.4 S0 K0 ;disable air printing detect\n\n;=====printer finish air purification=========\nM622.1 S0\nM1002 judge_flag print_finish_air_filt_flag\n\nM622 J1\nM1002 gcode_claim_action : 66\nM145 P1\nM106 P6 S255\nM400 S180\nM106 P6 S0\nM623\n\nM622 J2\nM1002 gcode_claim_action : 66\nM145 P0\nM106 P3 S127\nM400 S180\nM106 P3 S0\nM623\n;=====printer finish air purification=========\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L99 C53 D10 M99 E53 F10 N99 \nM1006 A57 B10 L99 C57 D10 M99 E57 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A53 B10 L99 C53 D10 M99 E53 F10 N99 \nM1006 A57 B10 L99 C57 D10 M99 E57 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A48 B10 L99 C48 D10 M99 E48 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A60 B10 L99 C60 D10 M99 E60 F10 N99 \nM1006 W\n;=====printer finish sound=========\nM400\nM18\n\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..900c8d4520 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2S 0.4 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: H2S =========================\n;===== date: 2026/04/21 =====================\n\n\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\nM400\n;M73 P99\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L99 C53 D9 M99 E53 F9 N99 \nM1006 A56 B9 L99 C56 D9 M99 E56 F9 N99 \nM1006 A61 B9 L99 C61 D9 M99 E61 F9 N99 \nM1006 A53 B9 L99 C53 D9 M99 E53 F9 N99 \nM1006 A56 B9 L99 C56 D9 M99 E56 F9 N99 \nM1006 A61 B18 L99 C61 D18 M99 E61 F18 N99 \nM1006 W\n;=====printer start sound ===================\n\n;===== reset machine status =================\nM204 S10000\nM630 S0 P0\n\nG90\nM17 D ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM1002 set_gcode_claim_speed_level 5 ;Reset speed level\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nG29.1 Z{+0.0} ; clear z-trim value first\nM983.1 M1 \nM901 D4\nM481 S0 ; turn off cutter pos comp\nG28.140 D0; reset pre-extrude z pos\n;===== reset machine status =================\n\nM620 M ;enable remap\n\n;===== avoid end stop =================\nG91\nG380 S2 Z32 F1200\nG380 S2 Z-12 F1200\nG90\n;===== avoid end stop =================\n\n;==== set airduct mode ==== \n\n{if (overall_chamber_temperature >= 40)}\n\n M145 P1 ; set airduct mode to heating mode for heating\n M106 P2 S0 ; turn off auxiliary fan\n M106 P3 S0 ; turn off chamber fan\n\n{else}\n M145 P0 ; set airduct mode to cooling mode for cooling\n M106 P2 S178 ; turn on auxiliary fan for cooling\n M106 P3 S127 ; turn on chamber fan for cooling\n M140 S0 ; stop heatbed from heating\n\n M1002 gcode_claim_action : 29\n M191 S0 ; wait for chamber temp\n M106 P2 S0 ; turn off auxiliary fan\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R30 S35 T40 U0.3 V0.5 W0.8 O40 ; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 T45 U0.3 V0.5 W0.8 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n {if (!is_all_bbl_filament)}\n M142 P1 R35 S40 T45 U0.3 V0.5 W0.8 O45 L1 ; set third-party PETG chamber autocooling\n {else}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R35 S45 T50 U0.3 V0.5 W0.8 O50 L1 ; set PETG ND0.2 chamber autocooling\n {else}\n M142 P1 R35 S50 T55 U0.3 V0.5 W0.8 O55 L1 ; set PETG ND0.4 chamber autocooling\n {endif}\n {endif}\n {endif}\n{if(cooling_filter_enabled)}\nM145.2 P0 F0\n{else}\nM145.2 P0 F1\n{endif}\n{endif}\n;==== set airduct mode ==== \n\n;===== start to heat heatbed & hotend==========\n\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n\n M104 S140\n M140 S[bed_temperature_initial_layer_single]\n\n ;===== set chamber temperature ==========\n {if (overall_chamber_temperature >= 40)}\n M145 P1 ; set airduct mode to heating mode\n M141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n {endif}\n ;===== set chamber temperature ==========\n\n;===== start to heat heatbead & hotend==========\n\n;====== cog noise reduction=================\nM982.2 S1 ; turn on cog noise reduction\n\n;===== first homing start =====\nM1002 gcode_claim_action : 13\n\nG28 X T300\n\nG150.3 F18000\nT1000 O0 ;Preventing 3D Print Misalignment After Laser Operations\n\nG150.1 F18000 ; wipe mouth to avoid filament stick to heatbed\nG150.3 F18000\nM400 P200\nM972 S24 P0 T2000\nM1002 gcode_claim_action : 74 ; Heatbed surface foreign object detection\n{if curr_bed_type==\"Textured PEI Plate\"}\nM972 S26 P0 C0\n{else}\nM972 S36 P0 C0 X1\n{endif}\nM972 S35 P0 C0\nM972 S41 P0 T5000; trash can anti-collision\n\nM1009 Q1 L1\nG91\nG380 S2 Z30 F1200 ; lower heatbed to move toolhead\nG90\nG1 X170 Y160 F30000\nG28 Z P0 T250\nM1009 Q1 L0\n\n;===== first homing end =====\n\nM400\n;M73 P99\n\n;===== detection start =====\nM104 S0 T0 ; stop hotend heating before detection\nM562 P1 E0 B1\nM18 E\nM400 P200\nM1028 S1\n\nM1002 judge_flag build_plate_detect_flag\nM622 S1\n ;M1002 gcode_claim_action : 11 ; Indentifying build plate type\n M972 S19 P0 C0 ; heatbed detection\n \n M972 S31 P0 T5000; Toolhead camera detection\n \n ;M1002 gcode_claim_action : 73 ; Build plate alignment detection\n M972 S34 P0 T5000; Plate offset detection\nM623\n\nM1028 S0\nM562 P1 E1 B1\nM17 D\n\n{if max_print_z >= 145}\nM1002 gcode_claim_action : 75 ; Detect obstacles at the botton of the heated bed\nG150.3\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise temp in advance\nG3811 Z{max_print_z} ; Detect obstacles at the bottom of the heated bed\n{endif}\n\n;===== detection end =====\n\nM400\n;M73 P99\n\n;===== prepare print temperature and material ==========\nM400\nM211 X0 Y0 Z0 ;turn off soft endstop\nM975 S1 ; turn on input shaping\n\nG29.2 S0 ; avoid invalid abl data\n\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60*0.8} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60*0.8} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n\nM620.11 P0 I[initial_no_support_extruder] E0\n\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\nM1002 gcode_claim_action : 4\nM1002 set_filament_type:UNKNOWN\nM400\nT[initial_no_support_extruder]\nM400\nM628 S0\nM629\nM400\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\nM621 S[initial_no_support_extruder]A\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nM400\nM106 P1 S0\n\nG29.2 S1\n;===== prepare print temperature and material ==========\n\nM400\n;M73 P99\n\n;===== auto extrude cali start =========================\nM975 S1\nM1002 judge_flag extrude_cali_flag\n\nM622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\nM623\n\nM622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\nM623\n\nM622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\nM623\n\n;===== auto extrude cali end =========================\n\n{if filament_type[initial_no_support_extruder] == \"TPU\"}\n G150.2\n G150.1\n G150.2\n G150.1\n G150.2\n G150.1\n{else}\n M106 P1 S0\n M400 S2\n M109 S{nozzle_temperature[initial_no_support_extruder]} ; wait tmpr to extrude\n M83\n {if(nozzle_diameter == 0.8)}\n G1 E60 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60}\n {else}\n G1 E45 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60}\n {endif}\n G1 E-3 F1800\n M400 P500\n G150.2\n G150.1\n{endif}\n\nG91\nG1 Y-16 F12000 ; move away from the trash bin\nG90\n\nM400\n;M73 P99\n\n;===== wipe right nozzle start =====\n\nM1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n {if (overall_chamber_temperature >= 40)}\n G150 T{nozzle_temperature_initial_layer[initial_no_support_extruder] - 80}\n {endif}\nM106 S255 ; turn on fan to cool the nozzle\n\n;===== wipe left nozzle end =====\n\nM400\n;M73 P99\n\n{if (overall_chamber_temperature >= 40)}\n M1002 gcode_claim_action : 49\n M191 S[overall_chamber_temperature] ; wait for chamber temp\n{endif}\n\nM400\n;M73 P99\n\n;===== bed leveling ==================================\n\nM1002 judge_flag g29_before_print_flag\n\nM190 S[bed_temperature_initial_layer_single]; ensure bed temp\nM109 S140\nM106 S0 ; turn off fan , too noisy\n\nG91\nG1 Z5 F1200\nG90\nG1 X275 Y300 F30000\n\nM622 J1\n M1002 gcode_claim_action : 1\n G29.20 A3\n G29 A1 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\nM623\n \nM622 J2\n M1002 gcode_claim_action : 1\n {if has_tpu_in_first_layer}\n G29.20 A3\n G29 A1 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n {else}\n G29.20 A4\n G29 A2 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n {endif}\n M400\nM623\n\nM622 J0\n G28\nM623\n\n;===== bed leveling end ================================\n\nG390.1 Z; cali nozzle wrapped detection pos\n\nG90\nG1 Z5 F1200\nG1 X270 Y-0.5 F60000\nG28.140 S0 ; cali pre-extrude z pos\n\nM141 S[overall_chamber_temperature]\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n\n G90\n G1 Z5 F1200\n G1 X187 Y160 F20000\n T1000\n M400 P200\n\n M970.3 Q1 A5 K0 O1\n M974 Q1 S2 P0\n\n M970.3 Q0 A5 K0 O1\n M974 Q0 S2 P0\n\n M970.2 Q2 K0 W38 Z0.01\n M974 Q2 S2 P0\n\n M975 S1\n;===== mech mode sweep end =====\n\nM400\n;M73 P99\n\nG150.3 ; move to garbage can to wait for temp\nM1026\nG29.9\n\nM1002 gcode_claim_action : 0\nM400\n;M73 P99\n\n;===== wait temperature reaching the reference value =======\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise to print tmpr\n\nM140 S[bed_temperature_initial_layer_single] \nM190 S[bed_temperature_initial_layer_single] \n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off fan\n M106 P2 S0 ; turn off big fan\n\n ;============set motor current==================\n M400 S1\n\n;===== wait temperature reaching the reference value =======\n\nM400\n;M73 P99\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{-0.01} ; for Textured PEI Plate\n {endif}\n \nG150.1\n\nM975 S1 ; turn on mech mode supression\nM983.4 S1 ; turn on deformation compensation \nG29.2 S1 ; turn on pos comp\nG29.7 S1\n\nG90\nG1 Z5 F1200\nG1 Y295 F30000\nG1 Y265 F18000\n\n;===== nozzle load line ===============================\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n G1 Z5 F1200\n G1 X270 Y-0.5 F60000\n G28.14 R0\n G29.2 S0\n G91\n G1 Z0.8 F1200\n G90\n G1 X250 F60000\n M400 P50\n M500 D1\n M400 S3\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n M83\n G1 E5 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053*60}\n G1 X290 E20 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053*60}\n G91\n G3 Z0.4 I1.217 J0 P1 F60000\n G90\n M83\n G29.2 S1 ; ensure z comp turn on\n;===== noozle load line end ===========================\n\nM400\n;M73 P99\n\nM993 A1 B1 C1 ; nozzle cam detection allowed.\n\n\n{if (filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PETG\")\n || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H[nozzle_diameter] ;disable E air printing detect\n{endif}\n\nM620.6 I[initial_no_support_extruder] W1 ;enable ams air printing detect\n\nM211 Z1\nG29.99\n\n{if (filament_type[initial_no_support_extruder] == \"TPU\")}\nM1015.3 S1;enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template time_lapse_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template time_lapse_gcode.json new file mode 100644 index 0000000000..da656213d2 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template time_lapse_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2S 0.4 nozzle template time_lapse_gcode", + "instantiation": "false", + "time_lapse_gcode": ";========Date 20250925========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\n\nM1002 judge_flag timelapse_record_flag\nM622 J1\n\n{if timelapse_type == 0} ; timelapse without wipe tower\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n{elsif timelapse_type == 1} ; timelapse with wipe tower\n\n G150.3 ; move to garbage can\n M400\n\n M1004 S5 P1 ; external shutter\n M400 P300\n\n M971 S11 C10 O0\n M400 P350\n\n G90\n G1 Z{max_layer_z + 3.0} F1200\n G1 Y295 F30000\n G1 Y265 F18000\n{endif}\nM623\n\n; SKIPPABLE_END\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template wrapping_detection_gcode.json b/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template wrapping_detection_gcode.json new file mode 100644 index 0000000000..b994e13c5f --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle template wrapping_detection_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab H2S 0.4 nozzle template wrapping_detection_gcode", + "instantiation": "false", + "wrapping_detection_gcode": ";======== H2S 20250105 clumping ========\n{if !spiral_mode}\n M622.1 S0 ; for previous firmware, default turn off\n M1002 set_flag g39_forced_detection_flag=1\n M1002 judge_flag g39_forced_detection_flag\n M622 J1\n {if layer_num == 3 || layer_num == 10 || layer_num == 19}\n M993 A2 B2 C2 ; nozzle cam detection allow status save.\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n M400 P100\n\n G390\n\n G90\n G1 Y295 F30000\n G1 Y265 F15000\n \n M993 A3 B3 C3 ; nozzle cam detection allow status restore.\n {endif}\n M623\n{endif}" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle.json index 0a02a254f1..a71260a9ba 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2S 0.4 nozzle.json @@ -9,123 +9,170 @@ "0.4" ], "printer_model": "Bambu Lab H2S", + "farthest_point_timelapse": "1", "printer_variant": "0.4", "bed_exclude_area": [], "default_filament_profile": [ "Bambu PLA Basic @BBL H2S" ], "default_print_profile": "0.20mm Standard @BBL H2S", + "deretract_speed_extruder_change": [ + "30", + "30", + "30" + ], "deretraction_speed": [ + "30", "30", "30" ], "enable_long_retraction_when_cut": "2", - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow" - ], "extruder_clearance_dist_to_rod": "56", "extruder_clearance_height_to_lid": "187", "extruder_clearance_height_to_rod": "33", "extruder_clearance_max_radius": "81", + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow,Direct Drive E3D High Flow" + ], "fan_direction": "left", "hotend_cooling_rate": [ + "2", "2", "2" ], "hotend_heating_rate": [ + "2", "2", "2" ], + "include": [ + "Bambu Lab H2S 0.4 nozzle template machine_start_gcode", + "Bambu Lab H2S 0.4 nozzle template machine_end_gcode", + "Bambu Lab H2S 0.4 nozzle template time_lapse_gcode", + "Bambu Lab H2S 0.4 nozzle template change_filament_gcode", + "Bambu Lab H2S 0.4 nozzle template layer_change_gcode", + "Bambu Lab H2S 0.4 nozzle template wrapping_detection_gcode" + ], "long_retractions_when_cut": [ + "0", "0", "0" ], - "machine_max_acceleration_z": [ - "500", - "500", - "500", - "500" - ], - "machine_max_speed_x": [ - "1000", - "1000", - "1000", - "1000" - ], - "machine_max_speed_y": [ - "1000", - "1000", - "1000", - "1000" - ], - "machine_max_speed_z": [ - "30", - "30", - "30", - "30" - ], - "machine_unload_filament_time": "28", "machine_max_acceleration_e": [ + "5000", + "5000", "5000", "5000", "5000", "5000" ], "machine_max_acceleration_extruding": [ + "20000", + "20000", "20000", "20000", "20000", "20000" ], "machine_max_acceleration_retracting": [ + "5000", + "5000", "5000", "5000", "5000", "5000" ], "machine_max_acceleration_travel": [ + "9000", + "9000", "9000", "9000", "9000", "9000" ], "machine_max_acceleration_x": [ + "20000", + "20000", "20000", "20000", "20000", "20000" ], "machine_max_acceleration_y": [ + "20000", + "20000", "20000", "20000", "20000", "20000" ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500", + "500", + "500" + ], "machine_max_jerk_e": [ + "2.5", + "2.5", "2.5", "2.5", "2.5", "2.5" ], "machine_max_jerk_x": [ + "9", + "9", "9", "9", "9", "9" ], "machine_max_jerk_y": [ + "9", + "9", "9", "9", "9", "9" ], "machine_max_jerk_z": [ + "3", + "3", "3", "3", "3", "3" ], "machine_max_speed_e": [ + "30", + "30", + "30", + "30", + "30", + "30" + ], + "machine_max_speed_x": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_y": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_z": [ + "30", + "30", "30", "30", "30", @@ -137,17 +184,16 @@ "machine_min_travel_rate": [ "0" ], - "nozzle_volume": [ - "145", - "148" - ], + "machine_unload_filament_time": "28", "nozzle_flush_dataset": [ "1", + "2", "2" ], - "nozzle_type": [ - "hardened_steel", - "hardened_steel" + "nozzle_volume": [ + "145", + "148", + "148" ], "printable_area": [ "0x0", @@ -157,79 +203,97 @@ ], "printable_height": "340", "printer_extruder_id": [ + "1", "1", "1" ], "printer_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" - ], - "retract_lift_below": [ - "339", - "339" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" ], "retract_before_wipe": [ + "0%", "0%", "0%" ], "retract_length_toolchange": [ + "2", "2", "2" ], "retract_lift_above": [ + "0", "0", "0" ], - "retraction_length": [ - "0.8", - "0.8" - ], - "retraction_minimum_travel": [ - "1", - "1" - ], - "retraction_speed": [ - "30", - "30" + "retract_lift_below": [ + "339", + "339", + "339" ], "retract_restart_extra": [ + "0", "0", "0" ], "retract_restart_extra_toolchange": [ + "0", "0", "0" ], "retract_when_changing_layer": [ + "1", "1", "1" ], "retraction_distances_when_cut": [ + "18", "18", "18" ], - "support_air_filtration": "1", - "support_chamber_temp_control": "1", - "support_cooling_filter": "1", - "support_object_skip_flush": "1", - "wipe_distance": [ - "2", - "2" + "retraction_length": [ + "0.8", + "0.8", + "0.8" ], - "wipe": [ + "retraction_minimum_travel": [ + "1", "1", "1" ], + "retraction_speed": [ + "30", + "30", + "30" + ], + "support_chamber_temp_control": "1", + "support_cooling_filter": "1", + "support_object_skip_flush": "1", + "wipe": [ + "1", + "1", + "1" + ], + "wipe_distance": [ + "2", + "2", + "2" + ], + "wrapping_exclude_area": [ + "172.3x302", + "232.5x302", + "232.5x322", + "172.3x322" + ], "z_hop": [ + "0.4", "0.4", "0.4" ], "z_hop_types": [ + "Auto Lift", "Auto Lift", "Auto Lift" - ], - "machine_start_gcode": ";===== machine: H2S =========================\n;===== date: 2025/08/06 =====================\n\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\nM400\n;M73 P99\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L99 C53 D9 M99 E53 F9 N99 \nM1006 A56 B9 L99 C56 D9 M99 E56 F9 N99 \nM1006 A61 B9 L99 C61 D9 M99 E61 F9 N99 \nM1006 A53 B9 L99 C53 D9 M99 E53 F9 N99 \nM1006 A56 B9 L99 C56 D9 M99 E56 F9 N99 \nM1006 A61 B18 L99 C61 D18 M99 E61 F18 N99 \nM1006 W\n;=====printer start sound ===================\n\n;===== reset machine status =================\nM204 S10000\nM630 S0 P0\n\nG90\nM17 D ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nG29.1 Z{+0.0} ; clear z-trim value first\nM983.1 M1 \nM901 D4\nM481 S0 ; turn off cutter pos comp\n;===== reset machine status =================\n\nM620 M ;enable remap\n\n;===== avoid end stop =================\nG91\nG380 S2 Z22 F1200\nG380 S2 Z-12 F1200\nG90\n;===== avoid end stop =================\n\n;==== set airduct mode ==== \n\n{if (overall_chamber_temperature >= 40)}\n\n M145 P1 ; set airduct mode to heating mode for heating\n M106 P2 S0 ; turn off auxiliary fan\n M106 P3 S0 ; turn off chamber fan\n\n{else}\n M145 P0 ; set airduct mode to cooling mode for cooling\n M106 P2 S178 ; turn on auxiliary fan for cooling\n M106 P3 S127 ; turn on chamber fan for cooling\n M140 S0 ; stop heatbed from heating\n\n M1002 gcode_claim_action : 29\n M191 S0 ; wait for chamber temp\n M106 P2 S0 ; turn off auxiliary fan\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R30 S35 T40 U0.3 V0.5 W0.8 O40 ; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 T45 U0.3 V0.5 W0.8 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n {if (!is_all_bbl_filament)}\n M142 P1 R35 S40 T45 U0.3 V0.5 W0.8 O45 L1 ; set third-party PETG chamber autocooling\n {else}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R35 S45 T50 U0.3 V0.5 W0.8 O50 L1 ; set PETG ND0.2 chamber autocooling\n {else}\n M142 P1 R35 S50 T55 U0.3 V0.5 W0.8 O55 L1 ; set PETG ND0.4 chamber autocooling\n {endif}\n {endif}\n {endif}\n{if(cooling_filter_enabled)}\nM145.2 P0 F0\n{else}\nM145.2 P0 F1\n{endif}\n{endif}\n;==== set airduct mode ==== \n\n;===== start to heat heatbed & hotend==========\n\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n\n M104 S140\n M140 S[bed_temperature_initial_layer_single]\n\n ;===== set chamber temperature ==========\n {if (overall_chamber_temperature >= 40)}\n M145 P1 ; set airduct mode to heating mode\n M141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n {endif}\n ;===== set chamber temperature ==========\n\n;===== start to heat heatbead & hotend==========\n\n;====== cog noise reduction=================\nM982.2 S1 ; turn on cog noise reduction\n\n;===== first homing start =====\nM1002 gcode_claim_action : 13\n\nG28 X T300\n\nG150.3 F18000\nT1000 O0 ;Preventing 3D Print Misalignment After Laser Operations\n\nG150.1 F18000 ; wipe mouth to avoid filament stick to heatbed\nG150.3 F18000\nM400 P200\nM972 S24 P0 T2000\n{if curr_bed_type==\"Textured PEI Plate\"}\nM972 S26 P0 C0\n{else}\nM972 S36 P0 C0 X1\n{endif}\nM972 S35 P0 C0\nM972 S41 P0 T5000; trash can anti-collision\n\nG90\nG1 X170 Y160 F30000\n\nG28 Z P0 T250\n\n;===== first homing end =====\n\nM400\n;M73 P99\n\n;===== detection start =====\n\n \n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-80} ; rise temp in advance\n\n M972 S19 P0 C0 ; heatbed detection\n\n M972 S31 P0 T5000; Toolhead camera detection\n M972 S34 P0 T5000; Plate offset detection\n;===== detection end =====\n\nM400\n;M73 P99\n\n;===== prepare print temperature and material ==========\nM400\nM211 X0 Y0 Z0 ;turn off soft endstop\nM975 S1 ; turn on input shaping\n\nG29.2 S0 ; avoid invalid abl data\n\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n\nM620.11 P0 I[initial_no_support_extruder] E0\n\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\nM1002 gcode_claim_action : 4\nM1002 set_filament_type:UNKNOWN\nM400\nT[initial_no_support_extruder]\nM400\nM628 S0\nM629\nM400\nM1002 set_filament_type:{filament_type[initial_no_support_extruder]}\nM621 S[initial_no_support_extruder]A\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nM400\nM106 P1 S0\n\nG29.2 S1\n;===== prepare print temperature and material ==========\n\nM400\n;M73 P99\n\n;===== auto extrude cali start =========================\nM975 S1\nM1002 judge_flag extrude_cali_flag\n\nM622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\nM623\n\nM622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\nM623\n\nM622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\nM623\n\n;===== auto extrude cali end =========================\n\n{if filament_type[initial_no_support_extruder] == \"TPU\"}\n G150.2\n G150.1\n G150.2\n G150.1\n G150.2\n G150.1\n{else}\n M106 P1 S0\n M400 S2\n M83\n G1 E45 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4053*60}\n G1 E-3 F1800\n M400 P500\n G150.2\n G150.1\n{endif}\n\nG91\nG1 Y-16 F12000 ; move away from the trash bin\nG90\n\nM400\n;M73 P99\n\n;===== wipe right nozzle start =====\n\nM1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n {if (overall_chamber_temperature >= 40)}\n G150 T{nozzle_temperature_initial_layer[initial_no_support_extruder] - 80}\n {endif}\nM106 S255 ; turn on fan to cool the nozzle\n\n;===== wipe left nozzle end =====\n\nM400\n;M73 P99\n\n{if (overall_chamber_temperature >= 40)}\n M1002 gcode_claim_action : 49\n M191 S[overall_chamber_temperature] ; wait for chamber temp\n{endif}\n\nM400\n;M73 P99\n\n;===== bed leveling ==================================\n\nM1002 judge_flag g29_before_print_flag\n\nM190 S[bed_temperature_initial_layer_single]; ensure bed temp\nM109 S140\nM106 S0 ; turn off fan , too noisy\n\nG91\nG1 Z5 F1200\nG90\nG1 X275 Y300 F30000\n\nM622 J1\n M1002 gcode_claim_action : 1\n G29.20 A3\n G29 A1 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\nM623\n \nM622 J2\n M1002 gcode_claim_action : 1\n {if has_tpu_in_first_layer}\n G29.20 A3\n G29 A1 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n {else}\n G29.20 A4\n G29 A2 O X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n {endif}\n M400\n M500 ; save cali data\nM623\n\nM622 J0\n G28\nM623\n\n;===== bed leveling end ================================\n\nM400\n;M73 P99\n\nM141 S[overall_chamber_temperature]\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n\n G90\n G1 Z5 F1200\n G1 X187 Y160 F20000\n T1000\n M400 P200\n\n M970.3 Q1 A5 K0 O1\n M974 Q1 S2 P0\n\n M970.3 Q0 A5 K0 O1\n M974 Q0 S2 P0\n\n M970.2 Q2 K0 W38 Z0.01\n M974 Q2 S2 P0\n M500\n\n M975 S1\n;===== mech mode sweep end =====\n\nM400\n;M73 P99\n\nG150.3 ; move to garbage can to wait for temp\nM1026\n\nM1002 gcode_claim_action : 0\nM400\n;M73 P99\n\n;===== wait temperature reaching the reference value =======\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise to print tmpr\n\nM140 S[bed_temperature_initial_layer_single] \nM190 S[bed_temperature_initial_layer_single] \n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off fan\n M106 P2 S0 ; turn off big fan\n\n ;============set motor current==================\n M400 S1\n\n;===== wait temperature reaching the reference value =======\n\nM400\n;M73 P99\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{-0.01} ; for Textured PEI Plate\n {endif}\n \nG150.1\n\nM975 S1 ; turn on mech mode supression\nM983.4 S1 ; turn on deformation compensation \nG29.2 S1 ; turn on pos comp\nG29.7 S1\n\nG90\nG1 Z5 F1200\nG1 Y295 F30000\nG1 Y265 F18000\n\n;===== nozzle load line ===============================\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n G1 Z5 F1200\n G1 X270 Y-0.5 F60000\n G28.14\n G29.2 S0\n G91\n G1 Z0.8 F1200\n G90\n G1 X250 F60000\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n M83\n G1 E5 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053*60}\n G1 X290 E20 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053*60}\n G91\n G3 Z0.4 I1.217 J0 P1 F60000\n G90\n M83\n G29.2 S1 ; ensure z comp turn on\n;===== noozle load line end ===========================\n\nM400\n;M73 P99\n\nM993 A1 B1 C1 ; nozzle cam detection allowed.\n\n\n{if (filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PETG\")\n || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H[nozzle_diameter] ;disable E air printing detect\n{endif}\n\nM620.6 I[initial_no_support_extruder] W1 ;enable ams air printing detect\n\nM211 Z1\nG29.99\n\n{if (filament_type[initial_no_support_extruder] == \"TPU\")}\nM1015.3 S1;enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n", - "machine_end_gcode": ";===== date: 2025/02/05 =====================\n;===== H2S =====================\nG392 S0 ;turn off nozzle clog detect\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n{if timelapse_type == 2}\nM991 S0 P-1 ;end timelapse immediately\n{endif}\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\n\nG90\nG150.3\n\n{if timelapse_type == 1}\nM991 S0 P-1 ;end timelapse at safe pos\n{endif}\n\nM141 S0 ; turn off chamber heating\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\n; pull back filament to AMS\nM620 S65535\nT65535\nG150.2\nM621 S65535\n\nG150.3\n\nM104 S0; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 320}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z320 F600\n G1 Z320\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM1015.4 S0 K0 ;disable air printing detect\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L99 C53 D10 M99 E53 F10 N99 \nM1006 A57 B10 L99 C57 D10 M99 E57 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A53 B10 L99 C53 D10 M99 E53 F10 N99 \nM1006 A57 B10 L99 C57 D10 M99 E57 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A48 B10 L99 C48 D10 M99 E48 F10 N99 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A60 B10 L99 C60 D10 M99 E60 F10 N99 \nM1006 W\n;=====printer finish sound=========\nM400\nM18\n\n", - "time_lapse_gcode": ";========Date 20250611========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firware, default turned on\n\nM1002 judge_flag timelapse_record_flag\nM622 J1\n\nM400\n\n{if timelapse_type == 0} ; timelapse without wipe tower\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n{elsif timelapse_type == 1} ; timelapse with wipe tower\n\n G150.3 ; move to garbage can\n M400\n\n M1004 S5 P1 ; external shutter\n M400 P300\n\n M971 S11 C10 O0\n M400 P350\n\n G90\n G1 Z{max_layer_z + 3.0} F1200\n G1 Y295 F30000\n G1 Y265 F18000\n{endif}\nM623\n\n; SKIPPABLE_END\n", - "change_filament_gcode": ";===== machine: H2S filament_change =====\n;===== date: 2025/08/14 =====\n\nM993 A2 B2 C2 ; nozzle cam detection allow status save.\nM993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n{if (filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PETG\")\n || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG-CF\")}\nM1015.4 S1 K0 ;disable E air printing detect\n{else}\nM1015.4 S0 ; disable E air printing detect\n{endif}\n\nM620 S[next_extruder]A\nM1002 gcode_claim_action : 4\nM204 S9000\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\nM106 P2 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\nM620.10 A0 F{flush_volumetric_speeds[current_extruder]/2.4053*60} L[flush_length] H{nozzle_diameter[current_extruder]} T{flush_temperatures[current_extruder]} P{nozzle_temperature[current_extruder]} S1\nM620.10 A1 F{flush_volumetric_speeds[next_extruder]/2.4053*60} L[flush_length] H{nozzle_diameter[next_extruder]} T{flush_temperatures[next_extruder]} P{nozzle_temperature[next_extruder]} S1\n\n{if long_retraction_when_cut}\nM620.11 P1 I[current_extruder] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{else}\nM620.11 P0 I[current_extruder] E0\n{endif}\n\n\n{if filament_type[current_extruder] == \"TPU\" || filament_type[next_extruder] == \"TPU\"}\nM620.11 H2 C331\n{else}\nM620.11 H0\n{endif}\n\nT[next_extruder]\n\n\n; VFLUSH_START\n\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\n\nSYNC T{ceil(flush_length / 125) * 5}\n\n; VFLUSH_END\n\nM1002 set_filament_type:{filament_type[next_extruder]}\n\nM400\nM83\n{if next_extruder < 255}\n\nM620.10 R{retract_length_toolchange[filament_map[next_extruder]-1]}\nM628 S0\n;VM109 S[new_filament_temp]\n\nM629\nM400\n\nM983.3 F{filament_max_volumetric_speed[next_extruder]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_extruder]-1]}\n\nM400\n{if wipe_avoid_perimeter}\nG1 Y320 F30000\nG1 X{wipe_avoid_pos_x} F30000\n{endif}\nG1 Y295 F30000\nG1 Y265 F18000\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n\nM993 A3 B3 C3 ; nozzle cam detection allow status restore.\n\n{if (filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PETG\")\n || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 ; disable E air printing detect\n{endif}\n\nM620.6 I[next_extruder] W1 ;enable ams air printing detect\nM1002 gcode_claim_action : 0\n" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab H2S 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab H2S 0.6 nozzle.json index 0240681890..8b203a6579 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2S 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2S 0.6 nozzle.json @@ -1,27 +1,28 @@ { - "type": "machine", - "name": "Bambu Lab H2S 0.6 nozzle", - "inherits": "Bambu Lab H2S 0.4 nozzle", - "from": "system", - "setting_id": "GM039", - "instantiation": "true", - "nozzle_diameter": [ - "0.6" - ], - "printer_model": "Bambu Lab H2S", - "printer_variant": "0.6", - "default_print_profile": "0.30mm Standard @BBL H2S 0.6 nozzle", - "default_filament_profile": [ - "Bambu PLA Basic @BBL H2S 0.6 nozzle" - ], - "max_layer_height": [ - "0.42" - ], - "min_layer_height": [ - "0.12" - ], - "retraction_length": [ - "1.4", - "1.4" - ] -} + "type": "machine", + "name": "Bambu Lab H2S 0.6 nozzle", + "inherits": "Bambu Lab H2S 0.4 nozzle", + "from": "system", + "setting_id": "GM039", + "instantiation": "true", + "nozzle_diameter": [ + "0.6" + ], + "printer_model": "Bambu Lab H2S", + "printer_variant": "0.6", + "default_print_profile": "0.30mm Standard @BBL H2S 0.6 nozzle", + "default_filament_profile": [ + "Bambu PLA Basic @BBL H2S 0.6 nozzle" + ], + "max_layer_height": [ + "0.42" + ], + "min_layer_height": [ + "0.12" + ], + "retraction_length": [ + "1.4", + "1.4", + "1.4" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab H2S 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab H2S 0.8 nozzle.json index b7aedb41bc..a3d001d6aa 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2S 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2S 0.8 nozzle.json @@ -1,27 +1,212 @@ { - "type": "machine", - "name": "Bambu Lab H2S 0.8 nozzle", - "inherits": "Bambu Lab H2S 0.4 nozzle", - "from": "system", - "setting_id": "GM040", - "instantiation": "true", - "nozzle_diameter": [ - "0.8" - ], - "printer_model": "Bambu Lab H2S", - "printer_variant": "0.8", - "default_print_profile": "0.40mm Standard @BBL H2S 0.8 nozzle", - "default_filament_profile": [ - "Bambu PLA Basic @BBL H2S 0.8 nozzle" - ], - "max_layer_height": [ - "0.56" - ], - "min_layer_height": [ - "0.16" - ], - "retraction_length": [ - "3", - "3" - ] -} + "type": "machine", + "name": "Bambu Lab H2S 0.8 nozzle", + "inherits": "Bambu Lab H2S 0.4 nozzle", + "from": "system", + "setting_id": "GM040", + "instantiation": "true", + "nozzle_diameter": [ + "0.8" + ], + "printer_model": "Bambu Lab H2S", + "printer_variant": "0.8", + "default_print_profile": "0.40mm Standard @BBL H2S 0.8 nozzle", + "default_filament_profile": [ + "Bambu PLA Basic @BBL H2S 0.8 nozzle" + ], + "max_layer_height": [ + "0.56" + ], + "min_layer_height": [ + "0.16" + ], + "retraction_length": [ + "3", + "3" + ], + "deretraction_speed": [ + "30", + "30" + ], + "hotend_cooling_rate": [ + "2", + "2" + ], + "hotend_heating_rate": [ + "2", + "2" + ], + "long_retractions_when_cut": [ + "0", + "0" + ], + "nozzle_flush_dataset": [ + "1", + "2" + ], + "retract_before_wipe": [ + "0%", + "0%" + ], + "retract_length_toolchange": [ + "2", + "2" + ], + "retract_restart_extra": [ + "0", + "0" + ], + "retract_restart_extra_toolchange": [ + "0", + "0" + ], + "retract_when_changing_layer": [ + "1", + "1" + ], + "retraction_distances_when_cut": [ + "18", + "18" + ], + "retraction_minimum_travel": [ + "1", + "1" + ], + "retraction_speed": [ + "30", + "30" + ], + "wipe": [ + "1", + "1" + ], + "z_hop": [ + "0.4", + "0.4" + ], + "deretract_speed_extruder_change": [ + "30", + "30" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow" + ], + "nozzle_volume": [ + "145", + "148" + ], + "printer_extruder_id": [ + "1", + "1" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "retract_lift_above": [ + "0", + "0" + ], + "retract_lift_below": [ + "339", + "339" + ], + "wipe_distance": [ + "2", + "2" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift" + ], + "machine_max_acceleration_e": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3" + ], + "machine_max_speed_z": [ + "30", + "30", + "30", + "30" + ], + "machine_max_speed_y": [ + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_x": [ + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_e": [ + "30", + "30", + "30", + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab H2S.json b/resources/profiles/BBL/machine/Bambu Lab H2S.json index 2ead7abc09..3eae9e9567 100644 --- a/resources/profiles/BBL/machine/Bambu Lab H2S.json +++ b/resources/profiles/BBL/machine/Bambu Lab H2S.json @@ -1,18 +1,20 @@ { - "type": "machine_model", - "name": "Bambu Lab H2S", - "nozzle_diameter": "0.2;0.4;0.6;0.8", - "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", - "bed_model": "bbl-3dp-O1S.stl", - "bed_texture": "bbl-3dp-logo.svg", - "use_double_extruder_default_texture": "true", - "bottom_texture_rect": "40,-14.5,70,8", - "default_bed_type": "Textured PEI Plate", - "image_bed_type": "o", - "not_support_bed_type": "Smooth Cool Plate;Textured Cool Plate", - "right_icon_offset_bed": "10;-5", - "family": "BBL-3DP", - "machine_tech": "FFF", - "model_id": "O1S", - "default_materials": "Bambu PLA Basic @BBL H2S;Bambu PLA Matte @BBL H2S;Bambu PLA Tough @BBL H2S;Bambu PLA Marble @BBL H2S;Bambu PLA Metal @BBL H2S;Bambu PLA Silk @BBL H2S;Bambu TPU 95A HF @BBL H2S;Bambu PETG Basic @BBL H2S;Bambu PLA Pure @BBL H2S;Bambu PLA Basic @BBL H2S 0.2 nozzle" -} + "type": "machine_model", + "name": "Bambu Lab H2S", + "nozzle_diameter": "0.2;0.4;0.6;0.8", + "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", + "bed_model": "bbl-3dp-O1S.stl", + "bed_texture": "bbl-3dp-logo.svg", + "use_double_extruder_default_texture": "true", + "bottom_texture_rect": "40,-14.5,70,8", + "bottom_texture_rect_longer": "40,-14.5,260,8", + "bottom_texture_rect_longer_ignore_list": "High Temp Plate;Textured PEI Plate", + "default_bed_type": "Textured PEI Plate", + "image_bed_type": "o", + "not_support_bed_type": "Cool Plate", + "right_icon_offset_bed": "10;-5", + "family": "BBL-3DP", + "machine_tech": "FFF", + "model_id": "O1S", + "default_materials": "Bambu PLA Basic @BBL H2S;Bambu PLA Matte @BBL H2S;Bambu PLA Tough @BBL H2S;Bambu PLA Marble @BBL H2S;Bambu PLA Metal @BBL H2S;Bambu PLA Silk @BBL H2S;Bambu TPU 95A HF @BBL H2S;Bambu PETG Basic @BBL H2S;Bambu PLA Pure @BBL H2S;Bambu PLA Basic @BBL H2S 0.2 nozzle" +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.2 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.2 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..df7a462624 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.2 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P1P 0.2 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: P1S-0.2 ========================\n;===== date: 20251031 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z-0.04 ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.2 nozzle.json index a55651cba2..eb9a546b92 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.2 nozzle.json @@ -1,218 +1,44 @@ { - "type": "machine", - "name": "Bambu Lab P1P 0.2 nozzle", - "inherits": "Bambu Lab P1P 0.4 nozzle", - "from": "system", - "setting_id": "GM010", - "instantiation": "true", - "nozzle_diameter": [ - "0.2" - ], - "printer_model": "Bambu Lab P1P", - "printer_variant": "0.2", - "default_filament_profile": [ - "Bambu PLA Basic @BBL P1P 0.2 nozzle" - ], - "default_print_profile": "0.10mm Standard @BBL P1P 0.2 nozzle", - "deretraction_speed": [ - "30", - "30" - ], - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow" - ], - "long_retractions_when_cut": [ - "0", - "0" - ], - "max_layer_height": [ - "0.14" - ], - "min_layer_height": [ - "0.04" - ], - "machine_max_acceleration_e": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_extruding": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_retracting": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_travel": [ - "9000", - "9000", - "9000", - "9000" - ], - "machine_max_acceleration_x": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_y": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_z": [ - "500", - "200", - "200", - "200" - ], - "machine_max_jerk_e": [ - "2.5", - "2.5", - "2.5", - "2.5" - ], - "machine_max_jerk_x": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_y": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_z": [ - "3", - "3", - "3", - "3" - ], - "machine_max_speed_e": [ - "30", - "30", - "30", - "30" - ], - "machine_max_speed_x": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_y": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_z": [ - "20", - "20", - "20", - "20" - ], - "machine_min_extruding_rate": [ - "0" - ], - "machine_min_travel_rate": [ - "0" - ], - "nozzle_type": [ - "stainless_steel", - "stainless_steel" - ], - "nozzle_volume": [ - "107", - "107" - ], - "printer_extruder_id": [ - "1", - "1" - ], - "printer_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "retraction_length": [ - "0.4", - "0.4" - ], - "retract_before_wipe": [ - "0%", - "0%" - ], - "retract_length_toolchange": [ - "2", - "2" - ], - "retract_lift_above": [ - "0", - "0" - ], - "retract_lift_below": [ - "249", - "249" - ], - "retraction_minimum_travel": [ - "1", - "1" - ], - "retraction_speed": [ - "30", - "30" - ], - "retract_restart_extra": [ - "0", - "0" - ], - "retract_restart_extra_toolchange": [ - "0", - "0" - ], - "retract_when_changing_layer": [ - "1", - "1" - ], - "retraction_distances_when_cut": [ - "18", - "18" - ], - "wipe_distance": [ - "2", - "2" - ], - "wipe": [ - "1", - "1" - ], - "z_hop": [ - "0.4", - "0.4" - ], - "z_hop_types": [ - "Auto Lift", - "Auto Lift" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle", - "Bambu Lab A1 0.2 nozzle", - "Bambu Lab H2D 0.2 nozzle", - "Bambu Lab H2D Pro 0.2 nozzle", - "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle" - ], - "machine_start_gcode": ";===== machine: P1S-0.2 ========================\n;===== date: 20250822 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z-0.04 ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" + "type": "machine", + "name": "Bambu Lab P1P 0.2 nozzle", + "inherits": "Bambu Lab P1P 0.4 nozzle", + "from": "system", + "setting_id": "GM010", + "instantiation": "true", + "nozzle_diameter": [ + "0.2" + ], + "printer_model": "Bambu Lab P1P", + "printer_variant": "0.2", + "default_filament_profile": [ + "Bambu PLA Basic @BBL P1P 0.2 nozzle" + ], + "default_print_profile": "0.10mm Standard @BBL P1P 0.2 nozzle", + "include": [ + "Bambu Lab P1P 0.2 nozzle template machine_start_gcode" + ], + "max_layer_height": [ + "0.14" + ], + "min_layer_height": [ + "0.04" + ], + "retraction_length": [ + "0.4", + "0.4" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle", + "Bambu Lab A1 0.2 nozzle", + "Bambu Lab H2D 0.2 nozzle", + "Bambu Lab H2D Pro 0.2 nozzle", + "Bambu Lab H2S 0.2 nozzle", + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab H2C 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab A2L 0.2 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template change_filament_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template change_filament_gcode.json new file mode 100644 index 0000000000..325f89c9a2 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template change_filament_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P1P 0.4 nozzle template change_filament_gcode", + "instantiation": "false", + "change_filament_gcode": ";=P1P 20251031=\nM620 S[next_extruder]A\nM204 S9000\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if old_filament_temp > 142 && next_extruder < 255}\nM104 S[old_filament_temp]\n{endif}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{else}\nM620.11 S0\n{endif}\nM400\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F{flush_volumetric_speeds[previous_extruder]/2.4053*60} T{flush_temperatures[previous_extruder]}\nT[next_extruder]\nM620.1 E F{flush_volumetric_speeds[next_extruder]/2.4053*60} T{flush_temperatures[next_extruder]}\n\n{if next_extruder < 255}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S{flush_temperatures[next_extruder]}\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{flush_volumetric_speeds[previous_extruder]/2.4053*60} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\n{else}\nG1 E{flush_length_1} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S[new_filament_temp]\nG1 E2 F{flush_volumetric_speeds[next_extruder]/2.4053*60} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template layer_change_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template layer_change_gcode.json new file mode 100644 index 0000000000..92609c5299 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template layer_change_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P1P 0.4 nozzle template layer_change_gcode", + "instantiation": "false", + "layer_change_gcode": "; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template machine_end_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template machine_end_gcode.json new file mode 100644 index 0000000000..9f54de954b --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template machine_end_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P1P 0.4 nozzle template machine_end_gcode", + "instantiation": "false", + "machine_end_gcode": ";===== date: 20230428 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos \nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..d3fc2793b0 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P1P 0.4 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: P1P-0.4 ========================\n;===== date: 20251031 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template time_lapse_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template time_lapse_gcode.json new file mode 100644 index 0000000000..670ab7b3e5 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle template time_lapse_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P1P 0.4 nozzle template time_lapse_gcode", + "instantiation": "false", + "time_lapse_gcode": ";========Date 20250206========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n{if timelapse_type == 0} ; timelapse without wipe tower\nM971 S11 C10 O0\nM1004 S5 P1 ; external shutter\n{elsif timelapse_type == 1} ; timelapse with wipe tower\nG92 E0\nG1 X65 Y245 F20000 ; move to safe pos\nG17\nG2 Z{layer_z} I0.86 J0.86 P1 F20000\nG1 Y265 F3000\nM400\nM1004 S5 P1 ; external shutter\nM400 P300\nM971 S11 C11 O0\nG92 E0\nG1 X100 F5000\nG1 Y255 F20000\n{endif}\nM623\n; SKIPPABLE_END\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle.json index adb67848f4..aa8b12cebc 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.4 nozzle.json @@ -1,228 +1,243 @@ { - "type": "machine", - "name": "Bambu Lab P1P 0.4 nozzle", - "inherits": "fdm_bbl_3dp_001_common", - "from": "system", - "setting_id": "GM013", - "instantiation": "true", - "nozzle_diameter": [ - "0.4" - ], - "printer_model": "Bambu Lab P1P", - "printer_variant": "0.4", - "auxiliary_fan": "0", - "bed_exclude_area": [ - "0x0", - "18x0", - "18x28", - "0x28" - ], - "default_filament_profile": [ - "Bambu PLA Basic @BBL P1P" - ], - "default_print_profile": "0.20mm Standard @BBL P1P", - "deretraction_speed": [ - "30", - "30" - ], - "enable_long_retraction_when_cut": "2", - "extruder_offset": [ - "0x2" - ], - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow" - ], - "long_retractions_when_cut": [ - "0", - "0" - ], - "machine_unload_filament_time": "28", - "machine_max_acceleration_e": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_extruding": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_retracting": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_travel": [ - "9000", - "9000", - "9000", - "9000" - ], - "machine_max_acceleration_x": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_y": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_z": [ - "500", - "200", - "200", - "200" - ], - "machine_max_jerk_e": [ - "2.5", - "2.5", - "2.5", - "2.5" - ], - "machine_max_jerk_x": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_y": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_z": [ - "3", - "3", - "3", - "3" - ], - "machine_max_speed_e": [ - "30", - "30", - "30", - "30" - ], - "machine_max_speed_x": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_y": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_z": [ - "20", - "20", - "20", - "20" - ], - "machine_min_extruding_rate": [ - "0" - ], - "machine_min_travel_rate": [ - "0" - ], - "nozzle_height": "4.2", - "nozzle_type": [ - "stainless_steel", - "stainless_steel" - ], - "nozzle_volume": [ - "107", - "107" - ], - "printer_extruder_id": [ - "1", - "1" - ], - "printer_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "retract_before_wipe": [ - "0%", - "0%" - ], - "retract_length_toolchange": [ - "2", - "2" - ], - "retract_lift_above": [ - "0", - "0" - ], - "retract_lift_below": [ - "249", - "249" - ], - "retraction_length": [ - "0.8", - "0.8" - ], - "retraction_minimum_travel": [ - "1", - "1" - ], - "retraction_speed": [ - "30", - "30" - ], - "retract_restart_extra": [ - "0", - "0" - ], - "retract_restart_extra_toolchange": [ - "0", - "0" - ], - "retract_when_changing_layer": [ - "1", - "1" - ], - "retraction_distances_when_cut": [ - "18", - "18" - ], - "wipe_distance": [ - "2", - "2" - ], - "wipe": [ - "1", - "1" - ], - "z_hop": [ - "0.4", - "0.4" - ], - "z_hop_types": [ - "Auto Lift", - "Auto Lift" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle" - ], - "machine_start_gcode": ";===== machine: P1P-0.4 ========================\n;===== date: 20250822 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n", - "machine_end_gcode": ";===== date: 20230428 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos \nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\n", - "time_lapse_gcode": ";========Date 20250206========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n{if timelapse_type == 0} ; timelapse without wipe tower\nM971 S11 C10 O0\nM1004 S5 P1 ; external shutter\n{elsif timelapse_type == 1} ; timelapse with wipe tower\nG92 E0\nG1 X65 Y245 F20000 ; move to safe pos\nG17\nG2 Z{layer_z} I0.86 J0.86 P1 F20000\nG1 Y265 F3000\nM400\nM1004 S5 P1 ; external shutter\nM400 P300\nM971 S11 C11 O0\nG92 E0\nG1 X100 F5000\nG1 Y255 F20000\n{endif}\nM623\n; SKIPPABLE_END\n", - "change_filament_gcode": ";=P1P 20250822=\nM620 S[next_extruder]A\nM204 S9000\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if nozzle_temperature[previous_extruder] > 142 && next_extruder < 255}\nM104 S{nozzle_temperature[previous_extruder]}\n{endif}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{else}\nM620.11 S0\n{endif}\nM400\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F{flush_volumetric_speeds[previous_extruder]/2.4053*60} T{flush_temperatures[previous_extruder]}\nT[next_extruder]\nM620.1 E F{flush_volumetric_speeds[next_extruder]/2.4053*60} T{flush_temperatures[next_extruder]}\n\n{if next_extruder < 255}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S{flush_temperatures[next_extruder]}\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{flush_volumetric_speeds[previous_extruder]/2.4053*60} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\n{else}\nG1 E{flush_length_1} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S{nozzle_temperature[next_extruder]}\nG1 E2 F{flush_volumetric_speeds[next_extruder]/2.4053*60} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" + "type": "machine", + "name": "Bambu Lab P1P 0.4 nozzle", + "inherits": "fdm_bbl_3dp_001_common", + "from": "system", + "setting_id": "GM013", + "instantiation": "true", + "nozzle_diameter": [ + "0.4" + ], + "printer_model": "Bambu Lab P1P", + "farthest_point_timelapse": "1", + "printer_variant": "0.4", + "auxiliary_fan": "0", + "bed_exclude_area": [ + "0x0", + "18x0", + "18x28", + "0x28" + ], + "default_filament_profile": [ + "Bambu PLA Basic @BBL P1P" + ], + "default_print_profile": "0.20mm Standard @BBL P1P", + "deretraction_speed": [ + "30", + "30" + ], + "enable_long_retraction_when_cut": "2", + "extruder_offset": [ + "0x2" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow" + ], + "hotend_cooling_rate": [ + "2", + "2" + ], + "hotend_heating_rate": [ + "2", + "2" + ], + "include": [ + "Bambu Lab P1P 0.4 nozzle template machine_start_gcode", + "Bambu Lab P1P 0.4 nozzle template machine_end_gcode", + "Bambu Lab P1P 0.4 nozzle template time_lapse_gcode", + "Bambu Lab P1P 0.4 nozzle template change_filament_gcode", + "Bambu Lab P1P 0.4 nozzle template layer_change_gcode" + ], + "long_retractions_when_cut": [ + "0", + "0" + ], + "machine_unload_filament_time": "28", + "machine_max_acceleration_e": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3" + ], + "machine_max_speed_e": [ + "30", + "30", + "30", + "30" + ], + "machine_max_speed_x": [ + "500", + "500", + "500", + "500" + ], + "machine_max_speed_y": [ + "500", + "500", + "500", + "500" + ], + "machine_max_speed_z": [ + "20", + "20", + "20", + "20" + ], + "machine_min_extruding_rate": [ + "0" + ], + "machine_min_travel_rate": [ + "0" + ], + "nozzle_height": "4.2", + "nozzle_volume": [ + "107", + "107" + ], + "nozzle_flush_dataset": [ + "0", + "0" + ], + "printer_extruder_id": [ + "1", + "1" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "retract_before_wipe": [ + "0%", + "0%" + ], + "retract_length_toolchange": [ + "2", + "2" + ], + "retract_lift_above": [ + "0", + "0" + ], + "retract_lift_below": [ + "249", + "249" + ], + "retraction_length": [ + "0.8", + "0.8" + ], + "retraction_minimum_travel": [ + "1", + "1" + ], + "retraction_speed": [ + "30", + "30" + ], + "retract_restart_extra": [ + "0", + "0" + ], + "retract_restart_extra_toolchange": [ + "0", + "0" + ], + "retract_when_changing_layer": [ + "1", + "1" + ], + "retraction_distances_when_cut": [ + "18", + "18" + ], + "wipe_distance": [ + "2", + "2" + ], + "wipe": [ + "1", + "1" + ], + "z_hop": [ + "0.4", + "0.4" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab H2C 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab A2L 0.4 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.6 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.6 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..0d92979b2e --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.6 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P1P 0.6 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: P1S-0.6 ========================\n;===== date: 20251031 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X18 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.6 nozzle.json index 013da7a12f..a92ad68146 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1P 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.6 nozzle.json @@ -1,44 +1,48 @@ { - "type": "machine", - "name": "Bambu Lab P1P 0.6 nozzle", - "inherits": "Bambu Lab P1P 0.4 nozzle", - "from": "system", - "setting_id": "GM011", - "instantiation": "true", - "nozzle_diameter": [ - "0.6" - ], - "printer_model": "Bambu Lab P1P", - "printer_variant": "0.6", - "default_print_profile": "0.30mm Standard @BBL P1P 0.6 nozzle", - "max_layer_height": [ - "0.42" - ], - "min_layer_height": [ - "0.12" - ], - "nozzle_type": [ - "hardened_steel", - "hardened_steel" - ], - "retraction_length": [ - "1.4", - "1.4" - ], - "retraction_minimum_travel": [ - "3", - "3" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle" - ], - "machine_start_gcode": ";===== machine: P1S-0.6 ========================\n;===== date: 20250822 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X18 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" + "type": "machine", + "name": "Bambu Lab P1P 0.6 nozzle", + "inherits": "Bambu Lab P1P 0.4 nozzle", + "from": "system", + "setting_id": "GM011", + "instantiation": "true", + "nozzle_diameter": [ + "0.6" + ], + "printer_model": "Bambu Lab P1P", + "printer_variant": "0.6", + "default_print_profile": "0.30mm Standard @BBL P1P 0.6 nozzle", + "default_filament_profile": [ + "Bambu PLA Basic @BBL P1P 0.6 nozzle" + ], + "include": [ + "Bambu Lab P1P 0.6 nozzle template machine_start_gcode" + ], + "max_layer_height": [ + "0.42" + ], + "min_layer_height": [ + "0.12" + ], + "retraction_length": [ + "1.4", + "1.4" + ], + "retraction_minimum_travel": [ + "3", + "3" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab A2L 0.6 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.8 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.8 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..1bb4dc652f --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.8 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P1P 0.8 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: P1S-0.8 ========================\n;===== date: 20251031 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ; turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y15 E1.500 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.500\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X18 E15\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1P 0.8 nozzle.json index 1911e2b60a..8e4bed700c 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1P 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1P 0.8 nozzle.json @@ -1,44 +1,45 @@ { - "type": "machine", - "name": "Bambu Lab P1P 0.8 nozzle", - "inherits": "Bambu Lab P1P 0.4 nozzle", - "from": "system", - "setting_id": "GM012", - "instantiation": "true", - "nozzle_diameter": [ - "0.8" - ], - "printer_model": "Bambu Lab P1P", - "printer_variant": "0.8", - "default_print_profile": "0.40mm Standard @BBL P1P 0.8 nozzle", - "max_layer_height": [ - "0.56" - ], - "min_layer_height": [ - "0.16" - ], - "nozzle_type": [ - "hardened_steel", - "hardened_steel" - ], - "retract_length_toolchange": [ - "3", - "3" - ], - "retraction_length": [ - "3", - "3" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1E 0.8 nozzle", - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab H2D 0.8 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle", - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "machine_start_gcode": ";===== machine: P1S-0.8 ========================\n;===== date: 20250822 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ; turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y15 E1.500 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.500\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X18 E15\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" + "type": "machine", + "name": "Bambu Lab P1P 0.8 nozzle", + "inherits": "Bambu Lab P1P 0.4 nozzle", + "from": "system", + "setting_id": "GM012", + "instantiation": "true", + "nozzle_diameter": [ + "0.8" + ], + "printer_model": "Bambu Lab P1P", + "printer_variant": "0.8", + "default_print_profile": "0.40mm Standard @BBL P1P 0.8 nozzle", + "include": [ + "Bambu Lab P1P 0.8 nozzle template machine_start_gcode" + ], + "max_layer_height": [ + "0.56" + ], + "min_layer_height": [ + "0.16" + ], + "retract_length_toolchange": [ + "3", + "3" + ], + "retraction_length": [ + "3", + "3" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab H2C 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab P1P.json b/resources/profiles/BBL/machine/Bambu Lab P1P.json index 7365599b1c..ce92149a61 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1P.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1P.json @@ -1,13 +1,14 @@ { - "type": "machine_model", - "name": "Bambu Lab P1P", - "nozzle_diameter": "0.4;0.2;0.6;0.8", - "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", - "bed_model": "bbl-3dp-X1.stl", - "bed_texture": "bbl-3dp-logo.svg", - "default_bed_type": "Textured PEI Plate", - "family": "BBL-3DP", - "machine_tech": "FFF", - "model_id": "C11", - "default_materials": "Bambu PLA Matte @BBL P1P;Bambu PLA Basic @BBL P1P;Bambu PLA-CF @BBL P1P;Bambu PETG-CF @BBL P1P;Bambu ABS @BBL P1P;Bambu PLA Silk @BBL P1P;Bambu PAHT-CF @BBL P1P;Bambu Support For PA/PET @BBL P1P;Bambu Support For PLA @BBL P1P;Generic PLA @BBL P1P;Generic PLA High Speed @BBL P1P;Generic PETG @BBL P1P;Bambu PETG HF @BBL X1C;Bambu PLA Basic @BBL P1P 0.2 nozzle" -} + "type": "machine_model", + "name": "Bambu Lab P1P", + "nozzle_diameter": "0.4;0.2;0.6;0.8", + "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", + "bed_model": "bbl-3dp-X1.stl", + "bed_texture": "bbl-3dp-logo.svg", + "default_bed_type": "Textured PEI Plate", + "support_side_panel_fan": "false", + "family": "BBL-3DP", + "machine_tech": "FFF", + "model_id": "C11", + "default_materials": "Bambu PLA Matte @BBL P1P;Bambu PLA Basic @BBL P1P;Bambu PLA-CF @BBL P1P;Bambu PETG-CF @BBL P1P;Bambu ABS @BBL P1P;Bambu PLA Silk @BBL P1P;Bambu PAHT-CF @BBL P1P;Bambu Support For PA/PET @BBL P1P;Bambu Support For PLA @BBL P1P;Generic PLA @BBL P1P;Generic PLA High Speed @BBL P1P;Generic PETG @BBL P1P;Bambu PETG HF @BBL X1C;Bambu PLA Pure @BBL P1P;Bambu PLA Basic @BBL P1P 0.2 nozzle" +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.2 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.2 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..ce98968537 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.2 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P1S 0.2 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: P1S-0.2 ========================\n;===== date: 20251031 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z-0.04 ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.2 nozzle.json index 136fbc3a2a..36f4e4bfeb 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1S 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.2 nozzle.json @@ -1,218 +1,44 @@ { - "type": "machine", - "name": "Bambu Lab P1S 0.2 nozzle", - "inherits": "Bambu Lab P1S 0.4 nozzle", - "from": "system", - "setting_id": "GM015", - "instantiation": "true", - "nozzle_diameter": [ - "0.2" - ], - "printer_model": "Bambu Lab P1S", - "printer_variant": "0.2", - "default_filament_profile": [ - "Bambu PLA Basic @BBL X1C 0.2 nozzle" - ], - "default_print_profile": "0.10mm Standard @BBL X1C 0.2 nozzle", - "deretraction_speed": [ - "30", - "30" - ], - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow" - ], - "long_retractions_when_cut": [ - "0", - "0" - ], - "max_layer_height": [ - "0.14" - ], - "min_layer_height": [ - "0.04" - ], - "machine_max_acceleration_e": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_extruding": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_retracting": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_travel": [ - "9000", - "9000", - "9000", - "9000" - ], - "machine_max_acceleration_x": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_y": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_z": [ - "500", - "200", - "200", - "200" - ], - "machine_max_jerk_e": [ - "2.5", - "2.5", - "2.5", - "2.5" - ], - "machine_max_jerk_x": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_y": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_z": [ - "3", - "3", - "3", - "3" - ], - "machine_max_speed_e": [ - "30", - "30", - "30", - "30" - ], - "machine_max_speed_x": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_y": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_z": [ - "20", - "20", - "20", - "20" - ], - "machine_min_extruding_rate": [ - "0" - ], - "machine_min_travel_rate": [ - "0" - ], - "nozzle_type": [ - "stainless_steel", - "stainless_steel" - ], - "nozzle_volume": [ - "107", - "107" - ], - "printer_extruder_id": [ - "1", - "1" - ], - "printer_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "retraction_length": [ - "0.4", - "0.4" - ], - "retract_before_wipe": [ - "0%", - "0%" - ], - "retract_length_toolchange": [ - "2", - "2" - ], - "retract_lift_above": [ - "0", - "0" - ], - "retract_lift_below": [ - "249", - "249" - ], - "retraction_minimum_travel": [ - "1", - "1" - ], - "retraction_speed": [ - "30", - "30" - ], - "retract_restart_extra": [ - "0", - "0" - ], - "retract_restart_extra_toolchange": [ - "0", - "0" - ], - "retract_when_changing_layer": [ - "1", - "1" - ], - "retraction_distances_when_cut": [ - "18", - "18" - ], - "wipe_distance": [ - "2", - "2" - ], - "wipe": [ - "1", - "1" - ], - "z_hop": [ - "0.4", - "0.4" - ], - "z_hop_types": [ - "Auto Lift", - "Auto Lift" - ], - "upward_compatible_machine": [ - "Bambu Lab P1P 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle", - "Bambu Lab A1 0.2 nozzle", - "Bambu Lab H2D 0.2 nozzle", - "Bambu Lab H2D Pro 0.2 nozzle", - "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle" - ], - "machine_start_gcode": ";===== machine: P1S-0.2 ========================\n;===== date: 20250822 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z-0.04 ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" + "type": "machine", + "name": "Bambu Lab P1S 0.2 nozzle", + "inherits": "Bambu Lab P1S 0.4 nozzle", + "from": "system", + "setting_id": "GM015", + "instantiation": "true", + "nozzle_diameter": [ + "0.2" + ], + "printer_model": "Bambu Lab P1S", + "printer_variant": "0.2", + "default_filament_profile": [ + "Bambu PLA Basic @BBL X1C 0.2 nozzle" + ], + "default_print_profile": "0.10mm Standard @BBL X1C 0.2 nozzle", + "include": [ + "Bambu Lab P1S 0.2 nozzle template machine_start_gcode" + ], + "max_layer_height": [ + "0.14" + ], + "min_layer_height": [ + "0.04" + ], + "retraction_length": [ + "0.4", + "0.4" + ], + "upward_compatible_machine": [ + "Bambu Lab P1P 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle", + "Bambu Lab A1 0.2 nozzle", + "Bambu Lab H2D 0.2 nozzle", + "Bambu Lab H2D Pro 0.2 nozzle", + "Bambu Lab H2S 0.2 nozzle", + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab H2C 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab A2L 0.2 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template change_filament_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template change_filament_gcode.json new file mode 100644 index 0000000000..cbec41ae6a --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template change_filament_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P1S 0.4 nozzle template change_filament_gcode", + "instantiation": "false", + "change_filament_gcode": ";=P1S 20251031=\nM620 S[next_extruder]A\nM204 S9000\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if old_filament_temp > 142 && next_extruder < 255}\nM104 S[old_filament_temp]\n{endif}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{else}\nM620.11 S0\n{endif}\nM400\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F{flush_volumetric_speeds[previous_extruder]/2.4053*60} T{flush_temperatures[previous_extruder]}\nT[next_extruder]\nM620.1 E F{flush_volumetric_speeds[next_extruder]/2.4053*60} T{flush_temperatures[next_extruder]}\n\n{if next_extruder < 255}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S{flush_temperatures[next_extruder]}\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{flush_volumetric_speeds[previous_extruder]/2.4053*60} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\n{else}\nG1 E{flush_length_1} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S[new_filament_temp]\nG1 E2 F{flush_volumetric_speeds[next_extruder]/2.4053*60} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template layer_change_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template layer_change_gcode.json new file mode 100644 index 0000000000..2004d93548 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template layer_change_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P1S 0.4 nozzle template layer_change_gcode", + "instantiation": "false", + "layer_change_gcode": "; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template machine_end_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template machine_end_gcode.json new file mode 100644 index 0000000000..f30a018718 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template machine_end_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P1S 0.4 nozzle template machine_end_gcode", + "instantiation": "false", + "machine_end_gcode": ";===== date: 20230428 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos \nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..fab3b107a4 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P1S 0.4 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: P1S-0.4 ========================\n;===== date: 20251031 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template time_lapse_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template time_lapse_gcode.json new file mode 100644 index 0000000000..fce7cdbddd --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle template time_lapse_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P1S 0.4 nozzle template time_lapse_gcode", + "instantiation": "false", + "time_lapse_gcode": ";========Date 20250206========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n{if timelapse_type == 0} ; timelapse without wipe tower\nM971 S11 C10 O0\nM1004 S5 P1 ; external shutter\n{elsif timelapse_type == 1} ; timelapse with wipe tower\nG92 E0\nG1 X65 Y245 F20000 ; move to safe pos\nG17\nG2 Z{layer_z} I0.86 J0.86 P1 F20000\nG1 Y265 F3000\nM400\nM1004 S5 P1 ; external shutter\nM400 P300\nM971 S11 C11 O0\nG92 E0\nG1 X100 F5000\nG1 Y255 F20000\n{endif}\nM623\n; SKIPPABLE_END" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle.json index e7d011aa54..960814b881 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.4 nozzle.json @@ -1,226 +1,243 @@ { - "type": "machine", - "name": "Bambu Lab P1S 0.4 nozzle", - "inherits": "fdm_bbl_3dp_001_common", - "from": "system", - "setting_id": "GM014", - "instantiation": "true", - "nozzle_diameter": [ - "0.4" - ], - "printer_model": "Bambu Lab P1S", - "printer_variant": "0.4", - "bed_exclude_area": [ - "0x0", - "18x0", - "18x28", - "0x28" - ], - "default_print_profile": "0.20mm Standard @BBL X1C", - "deretraction_speed": [ - "30", - "30" - ], - "enable_long_retraction_when_cut": "2", - "extruder_offset": [ - "0x2" - ], - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow" - ], - "fan_direction": "left", - "long_retractions_when_cut": [ - "0", - "0" - ], - "machine_unload_filament_time": "28", - "machine_max_acceleration_e": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_extruding": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_retracting": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_travel": [ - "9000", - "9000", - "9000", - "9000" - ], - "machine_max_acceleration_x": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_y": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_z": [ - "500", - "200", - "200", - "200" - ], - "machine_max_jerk_e": [ - "2.5", - "2.5", - "2.5", - "2.5" - ], - "machine_max_jerk_x": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_y": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_z": [ - "3", - "3", - "3", - "3" - ], - "machine_max_speed_e": [ - "30", - "30", - "30", - "30" - ], - "machine_max_speed_x": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_y": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_z": [ - "20", - "20", - "20", - "20" - ], - "machine_min_extruding_rate": [ - "0" - ], - "machine_min_travel_rate": [ - "0" - ], - "nozzle_height": "4.2", - "nozzle_type": [ - "stainless_steel", - "stainless_steel" - ], - "nozzle_volume": [ - "107", - "107" - ], - "printer_extruder_id": [ - "1", - "1" - ], - "printer_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "retract_before_wipe": [ - "0%", - "0%" - ], - "retract_length_toolchange": [ - "2", - "2" - ], - "retract_lift_above": [ - "0", - "0" - ], - "retract_lift_below": [ - "249", - "249" - ], - "retraction_length": [ - "0.8", - "0.8" - ], - "retraction_minimum_travel": [ - "1", - "1" - ], - "retraction_speed": [ - "30", - "30" - ], - "retract_restart_extra": [ - "0", - "0" - ], - "retract_restart_extra_toolchange": [ - "0", - "0" - ], - "retract_when_changing_layer": [ - "1", - "1" - ], - "retraction_distances_when_cut": [ - "18", - "18" - ], - "support_air_filtration": "1", - "wipe_distance": [ - "2", - "2" - ], - "wipe": [ - "1", - "1" - ], - "z_hop": [ - "0.4", - "0.4" - ], - "z_hop_types": [ - "Auto Lift", - "Auto Lift" - ], - "upward_compatible_machine": [ - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle" - ], - "machine_start_gcode": ";===== machine: P1S-0.4 ========================\n;===== date: 20250822 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n", - "machine_end_gcode": ";===== date: 20230428 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos \nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\n", - "time_lapse_gcode": ";========Date 20250206========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n{if timelapse_type == 0} ; timelapse without wipe tower\nM971 S11 C10 O0\nM1004 S5 P1 ; external shutter\n{elsif timelapse_type == 1} ; timelapse with wipe tower\nG92 E0\nG1 X65 Y245 F20000 ; move to safe pos\nG17\nG2 Z{layer_z} I0.86 J0.86 P1 F20000\nG1 Y265 F3000\nM400\nM1004 S5 P1 ; external shutter\nM400 P300\nM971 S11 C11 O0\nG92 E0\nG1 X100 F5000\nG1 Y255 F20000\n{endif}\nM623\n; SKIPPABLE_END", - "change_filament_gcode": ";=P1S 20250822=\nM620 S[next_extruder]A\nM204 S9000\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if nozzle_temperature[previous_extruder] > 142 && next_extruder < 255}\nM104 S{nozzle_temperature[previous_extruder]}\n{endif}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{else}\nM620.11 S0\n{endif}\nM400\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F{flush_volumetric_speeds[previous_extruder]/2.4053*60} T{flush_temperatures[previous_extruder]}\nT[next_extruder]\nM620.1 E F{flush_volumetric_speeds[next_extruder]/2.4053*60} T{flush_temperatures[next_extruder]}\n\n{if next_extruder < 255}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S{flush_temperatures[next_extruder]}\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{flush_volumetric_speeds[previous_extruder]/2.4053*60} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\n{else}\nG1 E{flush_length_1} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S{nozzle_temperature[next_extruder]}\nG1 E2 F{flush_volumetric_speeds[next_extruder]/2.4053*60} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" + "type": "machine", + "name": "Bambu Lab P1S 0.4 nozzle", + "inherits": "fdm_bbl_3dp_001_common", + "from": "system", + "setting_id": "GM014", + "instantiation": "true", + "nozzle_diameter": [ + "0.4" + ], + "printer_model": "Bambu Lab P1S", + "farthest_point_timelapse": "1", + "printer_variant": "0.4", + "bed_exclude_area": [ + "0x0", + "18x0", + "18x28", + "0x28" + ], + "default_print_profile": "0.20mm Standard @BBL X1C", + "deretraction_speed": [ + "30", + "30" + ], + "default_filament_profile": [ + "Bambu PLA Basic @BBL P1S 0.4 nozzle" + ], + "enable_long_retraction_when_cut": "2", + "extruder_offset": [ + "0x2" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow" + ], + "fan_direction": "left", + "hotend_cooling_rate": [ + "2", + "2" + ], + "hotend_heating_rate": [ + "2", + "2" + ], + "include": [ + "Bambu Lab P1S 0.4 nozzle template machine_start_gcode", + "Bambu Lab P1S 0.4 nozzle template machine_end_gcode", + "Bambu Lab P1S 0.4 nozzle template time_lapse_gcode", + "Bambu Lab P1S 0.4 nozzle template change_filament_gcode", + "Bambu Lab P1S 0.4 nozzle template layer_change_gcode" + ], + "long_retractions_when_cut": [ + "0", + "0" + ], + "machine_unload_filament_time": "28", + "machine_max_acceleration_e": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3" + ], + "machine_max_speed_e": [ + "30", + "30", + "30", + "30" + ], + "machine_max_speed_x": [ + "500", + "500", + "500", + "500" + ], + "machine_max_speed_y": [ + "500", + "500", + "500", + "500" + ], + "machine_max_speed_z": [ + "20", + "20", + "20", + "20" + ], + "machine_min_extruding_rate": [ + "0" + ], + "machine_min_travel_rate": [ + "0" + ], + "nozzle_height": "4.2", + "nozzle_volume": [ + "107", + "107" + ], + "nozzle_flush_dataset": [ + "0", + "0" + ], + "printer_extruder_id": [ + "1", + "1" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "retract_before_wipe": [ + "0%", + "0%" + ], + "retract_length_toolchange": [ + "2", + "2" + ], + "retract_lift_above": [ + "0", + "0" + ], + "retract_lift_below": [ + "249", + "249" + ], + "retraction_length": [ + "0.8", + "0.8" + ], + "retraction_minimum_travel": [ + "1", + "1" + ], + "retraction_speed": [ + "30", + "30" + ], + "retract_restart_extra": [ + "0", + "0" + ], + "retract_restart_extra_toolchange": [ + "0", + "0" + ], + "retract_when_changing_layer": [ + "1", + "1" + ], + "retraction_distances_when_cut": [ + "18", + "18" + ], + "wipe_distance": [ + "2", + "2" + ], + "wipe": [ + "1", + "1" + ], + "z_hop": [ + "0.4", + "0.4" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift" + ], + "upward_compatible_machine": [ + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab H2C 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab A2L 0.4 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.6 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.6 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..9b07c9a2b6 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.6 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P1S 0.6 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: P1S-0.6 ========================\n;===== date: 20251031 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X18 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.6 nozzle.json index 34e21341af..e1518a7ba4 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1S 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.6 nozzle.json @@ -1,44 +1,48 @@ { - "type": "machine", - "name": "Bambu Lab P1S 0.6 nozzle", - "inherits": "Bambu Lab P1S 0.4 nozzle", - "from": "system", - "setting_id": "GM016", - "instantiation": "true", - "nozzle_diameter": [ - "0.6" - ], - "printer_model": "Bambu Lab P1S", - "printer_variant": "0.6", - "default_print_profile": "0.30mm Standard @BBL X1C 0.6 nozzle", - "max_layer_height": [ - "0.42" - ], - "min_layer_height": [ - "0.12" - ], - "nozzle_type": [ - "hardened_steel", - "hardened_steel" - ], - "retraction_length": [ - "1.4", - "1.4" - ], - "retraction_minimum_travel": [ - "3", - "3" - ], - "upward_compatible_machine": [ - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle" - ], - "machine_start_gcode": ";===== machine: P1S-0.6 ========================\n;===== date: 20250822 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ;turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X18 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" + "type": "machine", + "name": "Bambu Lab P1S 0.6 nozzle", + "inherits": "Bambu Lab P1S 0.4 nozzle", + "from": "system", + "setting_id": "GM016", + "instantiation": "true", + "nozzle_diameter": [ + "0.6" + ], + "printer_model": "Bambu Lab P1S", + "printer_variant": "0.6", + "default_print_profile": "0.30mm Standard @BBL X1C 0.6 nozzle", + "default_filament_profile": [ + "Bambu PLA Basic @BBL P1S 0.6 nozzle" + ], + "include": [ + "Bambu Lab P1S 0.6 nozzle template machine_start_gcode" + ], + "max_layer_height": [ + "0.42" + ], + "min_layer_height": [ + "0.12" + ], + "retraction_length": [ + "1.4", + "1.4" + ], + "retraction_minimum_travel": [ + "3", + "3" + ], + "upward_compatible_machine": [ + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab A2L 0.6 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.8 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.8 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..9066f0fdef --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.8 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P1S 0.8 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: P1S-0.8 ========================\n;===== date: 20251031 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ; turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y15 E1.500 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.500\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X18 E15\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P1S 0.8 nozzle.json index 1c78e34238..a7ee22787e 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1S 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1S 0.8 nozzle.json @@ -1,47 +1,48 @@ { - "type": "machine", - "name": "Bambu Lab P1S 0.8 nozzle", - "inherits": "Bambu Lab P1S 0.4 nozzle", - "from": "system", - "setting_id": "GM017", - "instantiation": "true", - "nozzle_diameter": [ - "0.8" - ], - "printer_model": "Bambu Lab P1S", - "printer_variant": "0.8", - "default_filament_profile": [ - "Bambu PLA Basic @BBL X1C 0.8 nozzle" - ], - "default_print_profile": "0.40mm Standard @BBL X1C 0.8 nozzle", - "max_layer_height": [ - "0.56" - ], - "min_layer_height": [ - "0.16" - ], - "nozzle_type": [ - "hardened_steel", - "hardened_steel" - ], - "retract_length_toolchange": [ - "3", - "3" - ], - "retraction_length": [ - "3", - "3" - ], - "upward_compatible_machine": [ - "Bambu Lab P1P 0.8 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1E 0.8 nozzle", - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab H2D 0.8 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle", - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "machine_start_gcode": ";===== machine: P1S-0.8 ========================\n;===== date: 20250822 =====================\n;===== turn on the HB fan & MC board fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\nM710 A1 S255 ; turn on MC fan by default(P1S)\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X230 Y15\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_extruder]==\"PLA\"}\n {if (bed_temperature[initial_extruder] >50)||(bed_temperature_initial_layer[initial_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_extruder] >45)||(bed_temperature_initial_layer[initial_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n\nM104 S{nozzle_temperature_initial_layer[initial_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== fmech mode fast check============================\n\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature_initial_layer[initial_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y15 E1.500 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.500\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X18 E15\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\n" + "type": "machine", + "name": "Bambu Lab P1S 0.8 nozzle", + "inherits": "Bambu Lab P1S 0.4 nozzle", + "from": "system", + "setting_id": "GM017", + "instantiation": "true", + "nozzle_diameter": [ + "0.8" + ], + "printer_model": "Bambu Lab P1S", + "printer_variant": "0.8", + "default_filament_profile": [ + "Bambu PLA Basic @BBL X1C 0.8 nozzle" + ], + "default_print_profile": "0.40mm Standard @BBL X1C 0.8 nozzle", + "include": [ + "Bambu Lab P1S 0.8 nozzle template machine_start_gcode" + ], + "max_layer_height": [ + "0.56" + ], + "min_layer_height": [ + "0.16" + ], + "retract_length_toolchange": [ + "3", + "3" + ], + "retraction_length": [ + "3", + "3" + ], + "upward_compatible_machine": [ + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab H2C 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab P1S.json b/resources/profiles/BBL/machine/Bambu Lab P1S.json index 76d1a92839..48f008b02a 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P1S.json +++ b/resources/profiles/BBL/machine/Bambu Lab P1S.json @@ -1,13 +1,13 @@ { - "type": "machine_model", - "name": "Bambu Lab P1S", - "nozzle_diameter": "0.4;0.2;0.6;0.8", - "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", - "bed_model": "bbl-3dp-X1.stl", - "bed_texture": "bbl-3dp-logo.svg", - "default_bed_type": "Textured PEI Plate", - "family": "BBL-3DP", - "machine_tech": "FFF", - "model_id": "C12", - "default_materials": "Bambu PLA Matte @BBL X1C;Bambu PLA Basic @BBL X1C;Bambu PLA-CF @BBL X1C;Bambu PETG-CF @BBL X1C;Bambu ABS @BBL X1C;Bambu PLA Silk @BBL X1C;Bambu PAHT-CF @BBL X1C;Bambu Support For PLA @BBL X1C;Bambu Support For PA/PET @BBL X1C;Generic PLA;Generic PLA High Speed @BBL X1C;Generic PETG;Bambu PETG HF @BBL X1C;Bambu PLA Basic @BBL X1C 0.2 nozzle" -} + "type": "machine_model", + "name": "Bambu Lab P1S", + "nozzle_diameter": "0.4;0.2;0.6;0.8", + "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", + "bed_model": "bbl-3dp-X1.stl", + "bed_texture": "bbl-3dp-logo.svg", + "default_bed_type": "Textured PEI Plate", + "family": "BBL-3DP", + "machine_tech": "FFF", + "model_id": "C12", + "default_materials": "Bambu PLA Matte @BBL X1C;Bambu PLA Basic @BBL X1C;Bambu PLA-CF @BBL X1C;Bambu PETG-CF @BBL X1C;Bambu ABS @BBL X1C;Bambu PLA Silk @BBL X1C;Bambu PAHT-CF @BBL X1C;Bambu Support For PLA @BBL X1C;Bambu Support For PA/PET @BBL X1C;Generic PLA;Generic PLA High Speed @BBL X1C;Generic PETG;Bambu PETG HF @BBL X1C;Bambu PLA Pure @BBL X1C;Bambu PLA Basic @BBL X1C 0.2 nozzle" +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab P2S 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P2S 0.2 nozzle.json index 8b174457f9..490fb819cc 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P2S 0.2 nozzle.json @@ -1,33 +1,221 @@ { - "type": "machine", - "name": "Bambu Lab P2S 0.2 nozzle", - "inherits": "Bambu Lab P2S 0.4 nozzle", - "from": "system", - "setting_id": "GM000", - "instantiation": "true", - "nozzle_diameter": [ - "0.2" - ], - "printer_model": "Bambu Lab P2S", - "printer_variant": "0.2", - "default_filament_profile": [ - "Bambu PLA Basic @BBL P2S 0.2 nozzle" - ], - "default_print_profile": "0.10mm Standard @BBL P2S 0.2 nozzle", - "max_layer_height": [ - "0.14" - ], - "min_layer_height": [ - "0.04" - ], - "retraction_length": [ - "0.4", - "0.4" - ], - "upward_compatible_machine": [ - "Bambu Lab A1 0.2 nozzle", - "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab H2D 0.2 nozzle", - "Bambu Lab H2D Pro 0.2 nozzle" - ] -} + "type": "machine", + "name": "Bambu Lab P2S 0.2 nozzle", + "inherits": "Bambu Lab P2S 0.4 nozzle", + "from": "system", + "setting_id": "GM000", + "instantiation": "true", + "nozzle_diameter": [ + "0.2" + ], + "printer_model": "Bambu Lab P2S", + "printer_variant": "0.2", + "default_filament_profile": [ + "Bambu PLA Basic @BBL P2S 0.2 nozzle" + ], + "default_print_profile": "0.10mm Standard @BBL P2S 0.2 nozzle", + "max_layer_height": [ + "0.14" + ], + "min_layer_height": [ + "0.04" + ], + "retraction_length": [ + "0.4", + "0.4" + ], + "upward_compatible_machine": [ + "Bambu Lab A1 0.2 nozzle", + "Bambu Lab H2S 0.2 nozzle", + "Bambu Lab H2D 0.2 nozzle", + "Bambu Lab H2D Pro 0.2 nozzle", + "Bambu Lab H2C 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab A2L 0.2 nozzle" + ], + "deretraction_speed": [ + "30", + "30" + ], + "hotend_cooling_rate": [ + "2", + "2" + ], + "hotend_heating_rate": [ + "2", + "2" + ], + "long_retractions_when_cut": [ + "0", + "0" + ], + "nozzle_flush_dataset": [ + "0", + "0" + ], + "retract_before_wipe": [ + "0%", + "0%" + ], + "retract_length_toolchange": [ + "2", + "2" + ], + "retract_restart_extra": [ + "0", + "0" + ], + "retract_restart_extra_toolchange": [ + "0", + "0" + ], + "retract_when_changing_layer": [ + "1", + "1" + ], + "retraction_distances_when_cut": [ + "18", + "18" + ], + "retraction_minimum_travel": [ + "1", + "1" + ], + "retraction_speed": [ + "30", + "30" + ], + "wipe": [ + "1", + "1" + ], + "z_hop": [ + "0.4", + "0.4" + ], + "deretract_speed_extruder_change": [ + "30", + "30" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow" + ], + "nozzle_volume": [ + "110", + "110" + ], + "printer_extruder_id": [ + "1", + "1" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "retract_lift_above": [ + "0", + "0" + ], + "retract_lift_below": [ + "249", + "249" + ], + "wipe_distance": [ + "2", + "2" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift" + ], + "machine_max_acceleration_e": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "10000", + "10000", + "10000", + "10000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3" + ], + "machine_max_speed_z": [ + "20", + "20", + "20", + "20" + ], + "machine_max_speed_y": [ + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_x": [ + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_e": [ + "30", + "30", + "30", + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template change_filament_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template change_filament_gcode.json new file mode 100644 index 0000000000..0cb2886e39 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template change_filament_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P2S 0.4 nozzle template change_filament_gcode", + "instantiation": "false", + "change_filament_gcode": ";======== P2S filament_change gcode ==========\n;===== 2026/05/15 =====\n\nM620 S[next_filament_id]A\nM204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_filament_id] == 0 || z_hop_types[current_filament_id] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\n\n;nozzle_change_gcode\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\n{if ((filament_type[current_filament_id] == \"PLA\") || (filament_type[current_filament_id] == \"PLA-CF\") || (filament_type[current_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[current_filament_id]/2.4053*60} L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{endif}\n\n{if ((filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[next_nozzle_id] == 0.2)}\nM620.10 A1 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{else}\nM620.10 A1 F{flush_volumetric_speeds[next_filament_id]/2.4053*60} L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{endif}\n\nM620.15 C{new_filament_temp - filament_cooling_before_tower[next_filament_id]}\n\n{if long_retraction_when_cut}\nM620.11 P1 L0 I[current_filament_id] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 P0 L0 I[current_filament_id] E0\n{endif}\n\nM620.11 K0 I[current_filament_id] R0\n\n\nT[next_filament_id]\n\n;deretract\n{if filament_type[next_filament_id] == \"TPU\"}\n{else}\n{if filament_type[next_filament_id] == \"PA\"}\n;VG1 E1 F{max(new_filament_e_feedrate, 200)}\n;VG1 E1 F{max(new_filament_e_feedrate/2, 100)}\n{else}\n;VG1 E4 F{max(new_filament_e_feedrate, 200)}\n;VG1 E4 F{max(new_filament_e_feedrate/2, 100)}\n{endif}\n{endif}\n\n; VFLUSH_START\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\nSYNC T{ceil(flush_length / 80) * 5}\n; VFLUSH_END\n\nM1002 set_filament_type:{filament_type[next_filament_id]}\n\nM400\nM83\n{if next_filament_id < 255}\nM620.10 R{retract_length_toolchange[filament_map[next_filament_id]-1]}\nM628 S0\n;VM109 S[new_filament_temp]\n\nM629\nM400\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_filament_id]-1]}\nM400\nG1 Y247 F30000\nG1 Y217 F18000\n\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[travel_acceleration]\n{endif}\n\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\n\nM621 S[next_filament_id]A\n\nM622.1 S0 ;for prev version, default skip\nM1002 judge_flag powerloss_resume_flag\nM622 J1\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_filament_id]-1]}\nM400\nG1 Y247 F30000\nG1 Y217 F18000\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[travel_acceleration]\n{endif}\nM1002 set_flag powerloss_resume_flag=0\nM623\n\n{if (filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PETG\")\n || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} ;disable E air printing detect\n{endif}\n\nM620.6 I[next_filament_id] W1 ;enable ams air printing detect\n\nG1 Y256 F18000\n\n{if (overall_chamber_temperature < 40)}\n{if (layer_num + 1 <= close_additional_fan_first_x_layers[next_filament_id])}\n {if (min_vitrification_temperature <= 50)}\n M106 P2 S{first_x_layer_fan_speed[next_filament_id]*255.0/100.0 };set first x_layer aux fan\n {endif}\n{elsif (layer_num + 1 < additional_fan_full_speed_layer[next_filament_id] && additional_fan_full_speed_layer[next_filament_id] > close_additional_fan_first_x_layers[next_filament_id])}\n {if (min_vitrification_temperature <= 50)}\n M106 P2 S{(first_x_layer_fan_speed[next_filament_id] + (additional_cooling_fan_speed[next_filament_id] - first_x_layer_fan_speed[next_filament_id]) * (layer_num + 1 - close_additional_fan_first_x_layers[next_filament_id]) / max(additional_fan_full_speed_layer[next_filament_id] - close_additional_fan_first_x_layers[next_filament_id], 1)) * 255.0/100.0}\n {endif}\n{else}\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {endif}\n{endif}\n{endif}\n\nM622.1 S0\nM1002 judge_flag ventobox_replace_aux1_fan_flag\nM622 J0\n{if (layer_num + 1 <= close_additional_fan_first_x_layers[next_filament_id])}\n M106 P10 S{first_x_layer_fan_speed[next_filament_id]*255.0/100.0 };set first x_layer left aux fan\n{elsif (layer_num + 1 < additional_fan_full_speed_layer[next_filament_id] && additional_fan_full_speed_layer[next_filament_id] > close_additional_fan_first_x_layers[next_filament_id])}\n M106 P10 S{(first_x_layer_fan_speed[next_filament_id] + (additional_cooling_fan_speed[next_filament_id] - first_x_layer_fan_speed[next_filament_id]) * (layer_num + 1 - close_additional_fan_first_x_layers[next_filament_id]) / max(additional_fan_full_speed_layer[next_filament_id] - close_additional_fan_first_x_layers[next_filament_id], 1)) * 255.0/100.0}\n{else}\n M106 P10 S{additional_cooling_fan_speed[next_filament_id]*255.0/100.0};set left aux fan\n{endif}\nM623\n\n;not set fan changing filament" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template layer_change_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template layer_change_gcode.json new file mode 100644 index 0000000000..a3f4757bea --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template layer_change_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P2S 0.4 nozzle template layer_change_gcode", + "instantiation": "false", + "layer_change_gcode": ";======== P2S layer_change gcode ==========\n;===== 2026/05/15 ====\n\n{if (layer_num + 1 == 1)}\n{if (overall_chamber_temperature >= 40)}\n ;not reset filter fan in first layer\n ;not reset fan\n{else}\n{if (min_vitrification_temperature > 50)}\n ;not reset filter fan in first layer\n ;not reset fan\n{endif}\n{endif}\n{endif}\n\n{if (layer_num + 1 <= close_additional_fan_first_x_layers[current_filament_id])}\n{if (overall_chamber_temperature < 40)}\n {if (min_vitrification_temperature <= 50)}\n M106 P2 S{first_x_layer_fan_speed[current_filament_id]*255.0/100.0}\n {endif}\n{endif}\n M622.1 S0\n M1002 judge_flag ventobox_replace_aux1_fan_flag\n M622 J0\n M106 P10 S{first_x_layer_fan_speed[current_filament_id]*255.0/100.0}; set first x_layer left aux fan\n M623\n;not reset fan\n{elsif (layer_num + 1 < additional_fan_full_speed_layer[current_filament_id] && additional_fan_full_speed_layer[current_filament_id] > close_additional_fan_first_x_layers[current_filament_id])}\n{if (overall_chamber_temperature < 40)}\n {if (min_vitrification_temperature <= 50)}\n M106 P2 S{(first_x_layer_fan_speed[current_filament_id] + (additional_cooling_fan_speed[current_filament_id] - first_x_layer_fan_speed[current_filament_id]) * (layer_num + 1 - close_additional_fan_first_x_layers[current_filament_id]) / max(additional_fan_full_speed_layer[current_filament_id] - close_additional_fan_first_x_layers[current_filament_id], 1)) * 255.0/100.0}\n {endif}\n{endif}\n M622.1 S0\n M1002 judge_flag ventobox_replace_aux1_fan_flag\n M622 J0\n M106 P10 S{(first_x_layer_fan_speed[current_filament_id] + (additional_cooling_fan_speed[current_filament_id] - first_x_layer_fan_speed[current_filament_id]) * (layer_num + 1 - close_additional_fan_first_x_layers[current_filament_id]) / max(additional_fan_full_speed_layer[current_filament_id] - close_additional_fan_first_x_layers[current_filament_id], 1)) * 255.0/100.0}\n M623\n;not reset fan\n{elsif (layer_num + 1 == max(close_additional_fan_first_x_layers[current_filament_id] + 1, additional_fan_full_speed_layer[current_filament_id]))}\n{if (overall_chamber_temperature < 40)}\n ;updata chamber autocooling in Xth layer\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n ;not reset filter fan in Xth layer\n {endif}\n{else}\n ;not reset filter fan in Xth layer\n{endif}\n M622.1 S0\n M1002 judge_flag ventobox_replace_aux1_fan_flag\n M622 J0\n M106 P10 S{additional_cooling_fan_speed[current_filament_id]*255.0/100.0}; set left aux fan\n M623\n;not reset fan\n{endif}\n\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change\n\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template machine_end_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template machine_end_gcode.json new file mode 100644 index 0000000000..5ce7cb3c9f --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template machine_end_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P2S 0.4 nozzle template machine_end_gcode", + "instantiation": "false", + "machine_end_gcode": ";======== P2S end gcode ==========\n;===== 2026/05/18 =====\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nM211 Z1\n\nG90\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\nM1002 judge_flag timelapse_record_flag\nM622 J1\n G150.3\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S5 ;wait for last picture to be taken\nM623 ;end of \"timelapse_record_flag\n\nG90\nG1 Z{max_layer_z + 10} F900 ; lower z a little\n\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM106 P10 S0 ; turn off left aux fan\n\n; pull back filament to AMS\nM620 S65535\nT65535\nG150.1 F8000\nM621 S65535\n\nG150.3\nM104 S0 ; turn off hotend\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (80.0 - max_layer_z/2) > 0}\n {if (max_layer_z + 80.0 - max_layer_z/2) < 256}\n G1 Z{max_layer_z + 80.0 - max_layer_z/2} F600\n G1 Z{max_layer_z + 78.0 - max_layer_z/2}\n {else}\n G1 Z256 F600\n G1 Z256\n {endif}\n{else}\n {if (max_layer_z + 4.0) < 256}\n G1 Z{max_layer_z + 4.0} F600\n G1 Z{max_layer_z + 2.0}\n {else}\n G1 Z256 F600\n G1 Z256\n {endif}\n{endif}\nM400 P100\nM17 R ; restore z current\n\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM1015.3 S0 ;disable clog detect\nM1015.4 S0 K0 ;disable air printing detect\n\n;=====printer finish air purification=========\nM622.1 S0\nM1002 judge_flag print_finish_air_filt_flag\n\nM622 J1\nM1002 gcode_claim_action : 66\nM145 P1\nM106 P2 S255\nM400 S180\nM106 P2 S0\nM623\n\nM622 J2\nM1002 gcode_claim_action : 66\nM145 P0\nM106 P3 S255\nM400 S180\nM106 P3 S0\nM623\n;=====printer finish air purification=========\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L50 C53 D10 M50 E53 F10 N50 \nM1006 A57 B10 L50 C57 D10 M50 E57 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A53 B10 L50 C53 D10 M50 E53 F10 N50 \nM1006 A57 B10 L50 C57 D10 M50 E57 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A48 B10 L50 C48 D10 M50 E48 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A60 B10 L50 C60 D10 M50 E60 F10 N50 \nM1006 W\n;=====printer finish sound=========\nM400\nM18\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..a7dee998fb --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P2S 0.4 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";M1002 set_flag extrude_cali_flag=1\n;M1002 set_flag g29_before_print_flag=1\n;M1002 set_flag auto_cali_toolhead_offset_flag=1\n;M1002 set_flag build_plate_detect_flag=1\n\n;======== P2S start gcode==========\n;===== 2026/05/18 =====\n\n M140 S[bed_temperature_initial_layer_single] ; heat heatbed first\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n M400\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50\nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50\nM1006 A61 B9 L50 C61 D9 M50 E61 F9 N50\nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50\nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50\nM1006 A61 B18 L50 C61 D18 M50 E61 F18 N50\nM1006 W\n;=====printer start sound ===================\n\n M620 M ;enable remap\n G389\n\n;===== avoid end stop =================\n G91\n G380 S2 Z22 F1200\n G380 S2 Z-12 F1200\n G90\n;===== avoid end stop =================\n\n;===== reset machine status =================\n M204 S10000\n M630 S0 P1\n G90\n M17 D ; reset motor current to default\n M960 S5 P1 ; turn on logo lamp\n G90\n M220 S100 ;Reset Feedrate\n M1002 set_gcode_claim_speed_level: 5\n M221 S100 ;Reset Flowrate\n M73.2 R1.0 ;Reset left time magnitude\n G29.1 Z{+0.0} ; clear z-trim value first\n M983.1 M1\n M982.2 S1 ; turn on cog noise reduction\n M983.4 S0\n;===== reset machine status =================\n\n;==== set airduct mode ====\n;==== if Chamber Cooling is necessary ====\n{if (overall_chamber_temperature >= 40)}\nM145 P1 ; set airduct mode to heating mode for heating\nM106 P2 S255 ; turn on filter fan\nM622.1 S0\nM1002 judge_flag ventobox_replace_aux1_fan_flag\nM622 J0\nM106 P10 S0 ; turn off left aux fan\nM623\n{else}\n{if (min_vitrification_temperature <= 50)}\nM145 P0 ; set airduct mode to cooling mode for cooling\nM106 P2 S255 ; turn on auxiliary fan for cooling\nM106 P3 S127 ; turn on chamber fan for cooling\nM1002 gcode_claim_action : 29\nM191 S0 ; wait for chamber temp\nM106 P2 S102 ; turn on chamber cooling fan\nM622.1 S0\nM1002 judge_flag ventobox_replace_aux1_fan_flag\nM622 J0\nM106 P10 S0 ; turn off left aux fan\nM623\nM142 P6 R30 S40 U0.3 V0.8 ; set PETG exhaust chamber autocooling\n{else}\nM145 P1 ; set airduct mode to heating mode for heating\nM106 P2 S127 ; turn on 50% filter fan\nM142 P6 R30 S40 U0.3 V0.8 ; set PLA/TPU exhaust chamber autocooling\n{endif}\n{endif}\n;==== set airduct mode ====\n\n;===== start to heat heatbed & hotend==========\n M1002 gcode_claim_action : 2\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M104 S140 A\n\n G29.2 S0 ; avoid invalid abl data\n\n;===== first homing start =====\n M1002 gcode_claim_action : 13\n G28 X T300\n G150.1 F8000 ; wipe mouth to avoid filament stick to heatbed\n G150.3\n M972 S24 P0\n M972 S26 P0 C0\n M972 S42 P0 T5000\n G150.1 F8000 ; wipe mouth to avoid filament stick to heatbed\n G90\n G1 X128 Y128 F30000\n G28 Z P0 T400\n M400\n;===== first homign end =====\n\n;===== detection start =====\n M1002 gcode_claim_action : 11\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]-80} A ; rise temp in advance\n M972 S19 P0 T5000 ;plate type detection\n\n {if max_print_z >= 145}\n M1002 gcode_claim_action : 75 ; Detect obstacles at the botton of the heated bed\n G150.3\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]} ; rise temp in advance\n G3811 Z{max_print_z} ; Detect obstacles at the bottom of the heated bed\n {endif}\n;===== detection end =====\n\n;===== prepare print temperature and material ==========\n M400\n M211 X0 Y0 Z0 ;turn off soft endstop\n M975 S1 ; turn on input shaping\n\n G29.2 S0 ; avoid invalid abl data\n G150.3\n{if ((filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{endif}\n\n M620.11 P0 L0 I[initial_no_support_filament_id] E0\n M620.11 K0 I[initial_no_support_filament_id] R0\n\n M620 S[initial_no_support_filament_id]A ; switch material if AMS exist\n M1002 gcode_claim_action : 4\n M1002 set_filament_type:UNKNOWN\n M400\n T[initial_no_support_filament_id]\n M400\n M628 S0\n M629\n M400\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M621 S[initial_no_support_filament_id]A\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n M400\n M106 P1 S0\n M400\n G29.2 S1\n;===== prepare print temperature and material ==========\n\n\n;===== auto extrude cali start =========================\n M975 S1\n M1002 judge_flag extrude_cali_flag\n M622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n M623\n\n M622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n\n M622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n;===== auto extrude cali end =========================\n\n {if hold_chamber_temp_for_flat_print}\n M1002 gcode_claim_action : 58\n M104 S{first_layer_temperature[initial_no_support_filament_id]}\n {if bed_temperature_initial_layer_single > 89}\n M1030 S1800\n SYNC R0 T1800\n {else}\n M1030 S300\n SYNC R0 T300\n {endif}\n M1030 C\n {endif}\n\n {if filament_type[initial_filament_id] == \"TPU\" || filament_type[initial_filament_id] == \"PVA\"}\n {else}\n M83\n G1 E-3 F1800\n M400 P500\n {endif}\n G150.2\n G150.1 F8000\n G150.2\n G150.1 F8000\n\n G91\n G1 Y-16 F12000 ; move away from the trash bin\n G90\n M400\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]-80} A\n\n;===== wipe right nozzle start =====\n M1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n M400\n\n{if filament_type[initial_filament_id] == \"PC\"}\n M109 S170 A\n{else}\n M109 S140 A\n{endif}\n G91\n G1 Z5 F1200\n G90\n M400\n G150.1\n;===== wipe left nozzle end =====\n\n\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n G90\n G1 X128 Y128 F20000\n G1 Z5 F1200\n M400 P200\n M970.3 Q1 A5 K0 O1\n M970.2 Q1 K1 W74 Z0.01\n M974 Q1 S2 P0\n M970.3 Q0 A7 K0 O1\n M970.2 Q0 K1 W74 Z0.01\n M974 Q0 S2 P0\n M975 S1\n M400\n;===== mech mode sweep end =====\n\n;===== bed leveling ==================================\n M1002 gcode_claim_action : 54\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n M109 S140 A\n M106 S0 ; turn off fan , too noisy\n M1002 judge_flag g29_before_print_flag\n M622 J1\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H\n {else}\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n {endif}\n M400\n M623\n\n M622 J2\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H\n {else}\n G29 A2 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n {endif}\n M400\n M623\n\n M622 J0\n G28\n M623\n G29.2 S1\n G28\n;===== bed leveling end ================================\n\n M985.1 U0 E2\n M985.1 U1 E2\n\n M104 S{nozzle_temperature_initial_layer[initial_filament_id]} A\n G150.3 ; move to garbage can to wait for temp\n\n;===== wait temperature reaching the reference value =======\n M190 S[bed_temperature_initial_layer_single]\n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off cooling fan\n\n;===== wait temperature reaching the reference value =======\n\n M1002 gcode_claim_action : 255\n M400\n M975 S1 ; turn on mech mode supression\n\n;============switch again==================\n M211 X0 Y0 Z0 ;turn off soft endstop\n G91\n G1 Z6 F1200\n G90\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M620 S[initial_no_support_filament_id]A\n M400\n T[initial_no_support_filament_id]\n M400\n M628 S0\n M629\n M400\n M621 S[initial_no_support_filament_id]A\n;============switch again==================\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if bed_temperature_initial_layer_single > 89}\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{-0.02} ; for Textured PEI Plate\n {else}\n G29.1 Z{0.0}\n {endif}\n {else}\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{0.01} ; for Textured PEI Plate\n {else}\n G29.1 Z{0.03}\n {endif}\n {endif}\n\n\n;===== nozzle load line ===============================\nM1002 gcode_claim_action : 51\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n M400 P50\n M500 D1\n M400 S3\n M109 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n G0 X100 Y0 F24000\n M400\n ;G130 O0 X100 Y-0.4 Z0.8 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2/2.4053} L40 E20 D5\n G130 O0 X100 Y-0.2 Z0.6 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2/2.4053} L40 E12 D4\n G90\n M83\n G1 Z1\n M400\n;===== noozle load line end ===========================\nM1002 gcode_claim_action : 0\n G29.99\n\n{if (filament_type[initial_no_support_filament_id] == \"TPU\") ||\n(filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PETG\")}\nM1015.3 S1 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]};enable tpu, pla and petg clog detect\n{else}\nM1015.3 S0;disable clog detect\n{endif}\n\n{if (filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PETG\")\n || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;disable E air printing detect\n{endif}\n\nM620.6 I[initial_no_support_filament_id] W1 ;enable ams air printing detect\n\nM1010 Q0 B0.023 S0.01\nM1010 Q1 B0.005 S0.01\nM1010.1 S1\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template time_lapse_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template time_lapse_gcode.json new file mode 100644 index 0000000000..4ba9426d02 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template time_lapse_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P2S 0.4 nozzle template time_lapse_gcode", + "instantiation": "false", + "time_lapse_gcode": ";======== P2S timelapes gcode ==========\n;===== 2025/06/16 ====\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firware, default turned on\n\nM1002 judge_flag timelapse_record_flag\nM622 J1\n{if timelapse_type == 0} ; timelapse without wipe tower\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n{elsif timelapse_type == 1} ; timelapse with wipe tower\n G150.3 ; move to garbage can\n M400\n M1004 S5 P1 ; external shutter\n M400 P300\n M971 S11 C10 O0\n M400 P350\n \n G90\n G1 Z{max_layer_z + 3.0} F1200\n G1 Y247 F30000\n G1 Y217 F18000\n{endif}\nM623\n; SKIPPABLE_END\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template wrapping_detection_gcode.json b/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template wrapping_detection_gcode.json new file mode 100644 index 0000000000..97ec404494 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle template wrapping_detection_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab P2S 0.4 nozzle template wrapping_detection_gcode", + "instantiation": "false", + "wrapping_detection_gcode": ";======== P2S 20250822 clumping ========\n{if !spiral_mode}\n M622.1 S0 ; for previous firmware, default turn off\n M1002 set_flag g39_forced_detection_flag=1\n M1002 judge_flag g39_forced_detection_flag\n M622 J1\n {if layer_num == 3 || layer_num == 10 || layer_num == 19}\n M993 A2 B2 C2 ; nozzle cam detection allow status save.\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n M400 P100\n\n G39\n\n G90\n G1 Y247 F30000\n G1 Y217 F18000\n \n M993 A3 B3 C3 ; nozzle cam detection allow status restore.\n {endif}\n M623\n{endif}" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle.json index 96e9e51600..55119f44e5 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P2S 0.4 nozzle.json @@ -9,6 +9,7 @@ "0.4" ], "printer_model": "Bambu Lab P2S", + "farthest_point_timelapse": "1", "printer_variant": "0.4", "bed_exclude_area": [], "default_filament_profile": [ @@ -16,10 +17,12 @@ ], "default_print_profile": "0.20mm Standard @BBL P2S", "deretraction_speed": [ + "30", "30", "30" ], "deretract_speed_extruder_change": [ + "30", "30", "30" ], @@ -32,67 +35,94 @@ "0X0" ], "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow" + "Direct Drive Standard,Direct Drive High Flow,Direct Drive E3D High Flow" ], "fan_direction": "right", "hotend_cooling_rate": [ + "2", "2", "2" ], "hotend_heating_rate": [ + "2", "2", "2" ], + "include": [ + "Bambu Lab P2S 0.4 nozzle template machine_start_gcode", + "Bambu Lab P2S 0.4 nozzle template machine_end_gcode", + "Bambu Lab P2S 0.4 nozzle template layer_change_gcode", + "Bambu Lab P2S 0.4 nozzle template time_lapse_gcode", + "Bambu Lab P2S 0.4 nozzle template wrapping_detection_gcode", + "Bambu Lab P2S 0.4 nozzle template change_filament_gcode" + ], "long_retractions_when_cut": [ + "0", "0", "0" ], "machine_load_filament_time": "26", "machine_max_acceleration_travel": [ + "10000", + "10000", "10000", "10000", "10000", "10000" ], "machine_max_speed_x": [ - "600", - "600", - "600", - "600" + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" ], "machine_max_speed_y": [ - "600", - "600", - "600", - "600" + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" ], "machine_prepare_compensation_time": "370", "machine_unload_filament_time": "31", "machine_max_acceleration_e": [ + "5000", + "5000", "5000", "5000", "5000", "5000" ], "machine_max_acceleration_extruding": [ + "20000", + "20000", "20000", "20000", "20000", "20000" ], "machine_max_acceleration_retracting": [ + "5000", + "5000", "5000", "5000", "5000", "5000" ], "machine_max_acceleration_x": [ + "20000", + "20000", "20000", "20000", "20000", "20000" ], "machine_max_acceleration_y": [ + "20000", + "20000", "20000", "20000", "20000", @@ -100,41 +130,55 @@ ], "machine_max_acceleration_z": [ "500", - "200", - "200", - "200" + "500", + "500", + "500", + "500", + "500" ], "machine_max_jerk_e": [ + "2.5", + "2.5", "2.5", "2.5", "2.5", "2.5" ], "machine_max_jerk_x": [ + "9", + "9", "9", "9", "9", "9" ], "machine_max_jerk_y": [ + "9", + "9", "9", "9", "9", "9" ], "machine_max_jerk_z": [ + "3", + "3", "3", "3", "3", "3" ], "machine_max_speed_e": [ + "30", + "30", "30", "30", "30", "30" ], "machine_max_speed_z": [ + "20", + "20", "20", "20", "20", @@ -148,78 +192,89 @@ ], "nozzle_height": "4.2", "nozzle_volume": [ + "110", "110", "110" ], - "nozzle_type": [ - "hardened_steel", - "hardened_steel" - ], "nozzle_flush_dataset": [ + "0", "0", "0" ], "printable_height": "256", - "auxiliary_fan": "0", - "support_air_filtration": "1", "printer_extruder_id": [ + "1", "1", "1" ], "printer_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" ], "retract_before_wipe": [ + "0%", "0%", "0%" ], "retract_length_toolchange": [ + "2", "2", "2" ], "retract_lift_above": [ + "0", "0", "0" ], "retract_lift_below": [ + "249", "249", "249" ], "retraction_length": [ + "0.8", "0.8", "0.8" ], "retraction_minimum_travel": [ + "1", "1", "1" ], "retraction_speed": [ + "30", "30", "30" ], "retract_restart_extra": [ + "0", "0", "0" ], "retract_restart_extra_toolchange": [ + "0", "0", "0" ], "retract_when_changing_layer": [ + "1", "1", "1" ], "retraction_distances_when_cut": [ + "18", "18", "18" ], "support_object_skip_flush": "1", "wipe_distance": [ + "2", "2", "2" ], "wipe": [ + "1", "1", "1" ], @@ -230,10 +285,12 @@ "153x235" ], "z_hop": [ + "0.4", "0.4", "0.4" ], "z_hop_types": [ + "Auto Lift", "Auto Lift", "Auto Lift" ], @@ -241,12 +298,10 @@ "Bambu Lab A1 0.4 nozzle", "Bambu Lab H2S 0.4 nozzle", "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D Pro 0.4 nozzle" + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2C 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab A2L 0.4 nozzle" ], - "machine_start_gcode": ";M1002 set_flag extrude_cali_flag=1\n;M1002 set_flag g29_before_print_flag=1\n;M1002 set_flag auto_cali_toolhead_offset_flag=1\n;M1002 set_flag build_plate_detect_flag=1\n\n;======== P2S start gcode==========\n;===== Based on official 2026/04/21 start gcode =====\n \n M140 S[bed_temperature_initial_layer_single] ; heat heatbed first\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n M400\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50 \nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50 \nM1006 A61 B9 L50 C61 D9 M50 E61 F9 N50 \nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50 \nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50 \nM1006 A61 B18 L50 C61 D18 M50 E61 F18 N50 \nM1006 W\n;=====printer start sound ===================\n\n M620 M ;enable remap\n G389\n\n;===== avoid end stop =================\n G91\n G380 S2 Z22 F1200\n G380 S2 Z-12 F1200\n G90\n;===== avoid end stop =================\n\n;===== reset machine status =================\n M204 S10000\n M630 S0 P1\n G90\n M17 D ; reset motor current to default\n M960 S5 P1 ; turn on logo lamp\n G90\n M220 S100 ;Reset Feedrate\n M1002 set_gcode_claim_speed_level: 5\n M221 S100 ;Reset Flowrate\n M73.2 R1.0 ;Reset left time magnitude\n G29.1 Z{+0.0} ; clear z-trim value first\n M983.1 M1\n M975 S1 ; turn on input shaping\n M982.2 S1 ; turn on cog noise reduction\n M983.4 S0\n;===== reset machine status =================\n\n;==== set airduct mode ==== \n;==== if Chamber Cooling is necessary ====\n{if (overall_chamber_temperature >= 40)}\nM145 P1 ; set airduct mode to heating mode for heating\nM106 P2 S255 ; turn on filter fan\nM622.1 S0\nM1002 judge_flag ventobox_replace_aux1_fan_flag\nM622 J0\nM106 P10 S0 ; turn off left aux fan\nM623\n{else}\n{if (min_vitrification_temperature <= 50)}\nM145 P0 ; set airduct mode to cooling mode for cooling\nM106 P2 S255 ; turn on auxiliary fan for cooling\nM106 P3 S127 ; turn on chamber fan for cooling\nM1002 gcode_claim_action : 29\nM191 S0 ; wait for chamber temp\nM106 P2 S102 ; turn on chamber cooling fan\nM622.1 S0\nM1002 judge_flag ventobox_replace_aux1_fan_flag\nM622 J0\nM106 P10 S0 ; turn off left aux fan\nM623\nM142 P6 R30 S40 U0.3 V0.8 ; set PETG exhaust chamber autocooling\n{else}\nM145 P1 ; set airduct mode to heating mode for heating\nM106 P2 S127 ; turn on 50% filter fan\nM142 P6 R30 S40 U0.3 V0.8 ; set PLA/TPU exhaust chamber autocooling\n{endif}\n{endif}\n;==== set airduct mode ==== \n\n;===== start to heat heatbed & hotend==========\n M1002 gcode_claim_action : 2\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M104 S140 A \n\n G29.2 S0 ; avoid invalid abl data\n\n;===== first homing start =====\n M1002 gcode_claim_action : 13\n G28 X T300\n G150.1 F8000 ; wipe mouth to avoid filament stick to heatbed\n G150.3\n M972 S24 P0\n M972 S26 P0 C0\n M972 S42 P0 T5000\n G150.1 F8000 ; wipe mouth to avoid filament stick to heatbed\n G90\n G1 X128 Y128 F30000\n G28 Z P0 T400\n M400\n;===== first homing end =====\n\n;===== detection start =====\n M1002 gcode_claim_action : 11\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-80} A ; rise temp in advance\n M972 S19 P0 T5000 ;plate type detection\n \n {if max_print_z >= 145}\n M1002 gcode_claim_action : 75 ; Detect obstacles at the botton of the heated bed\n G150.3\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise temp in advance\n G3811 Z{max_print_z} ; Detect obstacles at the bottom of the heated bed\n {endif}\n;===== detection end =====\n\n;===== prepare print temperature and material ==========\n M400\n M211 X0 Y0 Z0 ;turn off soft endstop\n \n G29.2 S0 ; avoid invalid abl data\n G150.3\n{if ((filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG\")) && (nozzle_diameter[initial_no_support_extruder] == 0.2)}\nM620.10 A0 F74.8347 H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F74.8347 H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n{endif}\n \n M620.11 P0 L0 I[initial_no_support_extruder] E0\n M620.11 K0 I[initial_no_support_extruder] R0\n \n M620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M1002 gcode_claim_action : 4\n M1002 set_filament_type:UNKNOWN\n M400\n T[initial_no_support_extruder]\n M400\n M628 S0\n M629\n M400\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M621 S[initial_no_support_extruder]A\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n M400\n M106 P1 S0\n M400\n G29.2 S1\n;===== prepare print temperature and material ==========\n\n\n;===== auto extrude cali start =========================\n M975 S1\n M1002 judge_flag extrude_cali_flag\n M622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M623\n\n M622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n\n M622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n;===== auto extrude cali end =========================\n\n {if hold_chamber_temp_for_flat_print}\n M1002 gcode_claim_action : 58\n M104 S{first_layer_temperature[initial_no_support_extruder]}\n {if bed_temperature_initial_layer_single > 89}\n M1030 S1800 \n SYNC R0 T1800\n {else}\n M1030 S300\n SYNC R0 T300\n {endif}\n M1030 C\n {endif}\n \n {if filament_type[current_extruder] == \"TPU\" || filament_type[current_extruder] == \"PVA\"}\n {else}\n M83\n G1 E-3 F1800\n M400 P500\n {endif}\n\n ; series of wipes to ensure the nozzle is as clean as possible to avoid potential z-drift issues.\n M104 S180\n G150.2\n G150.1 F8000\n G150.2\n G150.1 F8000\n M106 P1 S255\n M109 S180 A\n G150.1 F8000 \n M109 S140 A\n M106 P1 S0\n G150.1 F8000\n G91\n G1 Y-16 F12000\n G1 X100 F6000\n G90\n M400\n\n;===== wipe right nozzle start =====\n M1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n M400\n \n{if filament_type[current_extruder] == \"PC\"}\n M109 S170 A\n{else}\n M109 S140 A\n{endif}\n G91\n G1 Z5 F1200\n G90\n M400\n G150.1\n;===== wipe left nozzle end =====\n\n\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n G90\n G1 X128 Y128 F20000\n G1 Z5 F1200\n M400 P200\n M970.3 Q1 A5 K0 O1\n M970.2 Q1 K1 W74 Z0.01\n M974 Q1 S2 P0\n M970.3 Q0 A7 K0 O1\n M970.2 Q0 K1 W74 Z0.01\n M974 Q0 S2 P0\n M975 S1\n M400\n;===== mech mode sweep end =====\n\n;===== bed leveling ==================================\n M1002 gcode_claim_action : 54\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n M109 S140 A\n M106 S0 ; turn off fan , too noisy\n M1002 judge_flag g29_before_print_flag\n M622 J1\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H\n {else}\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n {endif}\n M400\n M623\n \n M622 J2\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H\n {else}\n G29 A2 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n {endif}\n M400\n M623\n\n M622 J0\n ;skip to homing\n M623\n G29.2 S1\n G28\n;===== bed leveling end ================================\n\n M985.1 U0 E2\n M985.1 U1 E2\n\n M104 S[nozzle_temperature_initial_layer] A\n G150.3 ; move to garbage can to wait for temp\n\n;===== wait temperature reaching the reference value =======\n M190 S[bed_temperature_initial_layer_single] \n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off cooling fan\n \n;===== wait temperature reaching the reference value =======\n\n M1002 gcode_claim_action : 255\n M400\n M975 S1 ; turn on mech mode supression\n\n;============switch again==================\n M211 X0 Y0 Z0 ;turn off soft endstop\n G91\n G1 Z6 F1200\n G90\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M620 S[initial_no_support_extruder]A\n M400\n T[initial_no_support_extruder]\n M400\n M628 S0\n M629\n M400\n M621 S[initial_no_support_extruder]A\n;============switch again==================\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if bed_temperature_initial_layer_single > 89}\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{-0.02} ; for Textured PEI Plate\n {else}\n G29.1 Z{0.0}\n {endif}\n {else}\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{0.01} ; for Textured PEI Plate\n {else}\n G29.1 Z{0.03}\n {endif}\n {endif}\n\n\n;===== nozzle load line ===============================\nM1002 gcode_claim_action : 51\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n M400 P50\n M500 D1\n M400 S3\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 X100 Y0 F24000\n M400\n G130 O0 X100 Y-0.2 Z0.6 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053} L40 E12 D4\n G90\n M83\n G1 Z1\n M400\n;===== nozzle load line end ===========================\nM1002 gcode_claim_action : 0\n G29.99\n\n{if (filament_type[initial_no_support_extruder] == \"TPU\") || \n(filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PETG\")}\nM1015.3 S1 H[nozzle_diameter];enable tpu, pla and petg clog detect\n{else}\nM1015.3 S0;disable clog detect\n{endif}\n\n{if (filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PETG\")\n || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H[nozzle_diameter] ;disable E air printing detect\n{endif}\n\nM620.6 I[initial_no_support_extruder] W1 ;enable ams air printing detect\n\nM1010 Q0 B0.023 S0.01\nM1010 Q1 B0.005 S0.01\nM1010.1 S1\n", - "machine_end_gcode": ";======== P2S end gcode ==========\n;===== Based on official 2026/04/01 end gcode =====\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\n\nG90\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\nM1002 judge_flag timelapse_record_flag\nM622 J1\n G150.3\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S5 ;wait for last picture to be taken\nM623 ;end of \"timelapse_record_flag\n\nG90\nG1 Z{max_layer_z + 10} F900 ; lower z a little\n\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM106 P10 S0 ; turn off left aux fan\n\n; pull back filament to AMS\nM620 S65535\nT65535\nG150.1 F8000\nM621 S65535\n\nG150.3\nM104 S0 ; turn off hotend\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (80.0 - max_layer_z/2) > 0}\n {if (max_layer_z + 80.0 - max_layer_z/2) < 256}\n G1 Z{max_layer_z + 80.0 - max_layer_z/2} F600\n G1 Z{max_layer_z + 78.0 - max_layer_z/2}\n {else}\n G1 Z256 F600\n G1 Z256\n {endif}\n{else}\n {if (max_layer_z + 4.0) < 256}\n G1 Z{max_layer_z + 4.0} F600\n G1 Z{max_layer_z + 2.0}\n {else}\n G1 Z256 F600\n G1 Z256\n {endif}\n{endif}\nM400 P100\nM17 R ; restore z current\n\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM1015.3 S0 ;disable clog detect\nM1015.4 S0 K0 ;disable air printing detect\n\n;=====printer finish air purification=========\nM622.1 S0\nM1002 judge_flag print_finish_air_filt_flag\n\n;checks for activate_air_filtration_on_completion and parent flag. If enabled, the override fan speed will be used. Otherwise, the default air purification will kick in.\n\nM622 J1\n{if !activate_air_filtration[current_extruder] || (activate_air_filtration[current_extruder] && !activate_air_filtration_on_completion[current_extruder])}\nM1002 gcode_claim_action : 66\nM145 P1\nM106 P2 S255\nM400 S180\nM106 P2 S0\n{endif}\nM623\n\nM622 J2\n{if !activate_air_filtration[current_extruder] || (activate_air_filtration[current_extruder] && !activate_air_filtration_on_completion[current_extruder])}\nM1002 gcode_claim_action : 66\nM145 P0\nM106 P3 S255\nM400 S180\nM106 P3 S0\n{endif}\nM623\n;=====printer finish air purification=========\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L50 C53 D10 M50 E53 F10 N50 \nM1006 A57 B10 L50 C57 D10 M50 E57 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A53 B10 L50 C53 D10 M50 E53 F10 N50 \nM1006 A57 B10 L50 C57 D10 M50 E57 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A48 B10 L50 C48 D10 M50 E48 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A60 B10 L50 C60 D10 M50 E60 F10 N50 \nM1006 W\n;=====printer finish sound=========\nM400\nM18\n", - "layer_change_gcode": ";======== P2S layer_change gcode ==========\n;===== Based on official 2026/04/08 layer change gcode =====\n\n{if (layer_num + 1 == 1)}\n{if (overall_chamber_temperature >= 40)}\n ;not reset filter fan in first layer\n ;not reset fan\n{else}\n{if (min_vitrification_temperature > 50)}\n ;not reset filter fan in first layer\n ;not reset fan\n{endif} \n{endif}\n{endif}\n\n{if (layer_num + 1 <= close_fan_the_first_x_layers[current_extruder])}\n{if (overall_chamber_temperature < 40)}\n {if (min_vitrification_temperature <= 50)}\n M106 P2 S{first_x_layer_fan_speed[current_extruder]*255.0/100.0}\n {endif}\n{endif}\n M622.1 S0\n M1002 judge_flag ventobox_replace_aux1_fan_flag\n M622 J0\n M106 P10 S{first_x_layer_fan_speed[current_extruder]*255.0/100.0}; set first x_layer left aux fan \n M623\n;not reset fan\n{elsif (layer_num + 1 < full_fan_speed_layer[current_extruder] && full_fan_speed_layer[current_extruder] > close_fan_the_first_x_layers[current_extruder])}\n{if (overall_chamber_temperature < 40)}\n {if (min_vitrification_temperature <= 50)}\n M106 P2 S{(first_x_layer_fan_speed[current_extruder] + (additional_cooling_fan_speed[current_extruder] - first_x_layer_fan_speed[current_extruder]) * (layer_num + 1 - close_fan_the_first_x_layers[current_extruder]) / (full_fan_speed_layer[current_extruder] - close_fan_the_first_x_layers[current_extruder])) * 255.0/100.0}\n {endif}\n{endif}\n M622.1 S0\n M1002 judge_flag ventobox_replace_aux1_fan_flag\n M622 J0\n M106 P10 S{(first_x_layer_fan_speed[current_extruder] + (additional_cooling_fan_speed[current_extruder] - first_x_layer_fan_speed[current_extruder]) * (layer_num + 1 - close_fan_the_first_x_layers[current_extruder]) / (full_fan_speed_layer[current_extruder] - close_fan_the_first_x_layers[current_extruder])) * 255.0/100.0}\n M623\n;not reset fan\n{elsif (layer_num + 1 == max(close_fan_the_first_x_layers[current_extruder] + 1, full_fan_speed_layer[current_extruder]))}\n{if (overall_chamber_temperature < 40)}\n ;updata chamber autocooling in Xth layer\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n ;not reset filter fan in Xth layer\n {endif}\n{else}\n ;not reset filter fan in Xth layer\n{endif}\n M622.1 S0\n M1002 judge_flag ventobox_replace_aux1_fan_flag\n M622 J0\n M106 P10 S{additional_cooling_fan_speed[current_extruder]*255.0/100.0}; set left aux fan \n M623\n;not reset fan\n{endif}\n\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change\n\n", - "time_lapse_gcode": ";======== P2S timeslape gcode ==========\n;===== 2025/06/16 ====\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firware, default turned on\n\nM1002 judge_flag timelapse_record_flag\nM622 J1\n{if timelapse_type == 0} ; timelapse without wipe tower\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n{elsif timelapse_type == 1} ; timelapse with wipe tower\n G150.3 ; move to garbage can\n M400\n M1004 S5 P1 ; external shutter\n M400 P300\n M971 S11 C10 O0\n M400 P350\n \n G90\n G1 Z{max_layer_z + 3.0} F1200\n G0 Y210 F18000\n{endif}\nM623\n; SKIPPABLE_END\n", - "wrapping_detection_gcode": ";======== P2S 20250822 clumping ========\n{if !spiral_mode}\n M622.1 S0 ; for previous firmware, default turn off\n M1002 set_flag g39_forced_detection_flag=1\n M1002 judge_flag g39_forced_detection_flag\n M622 J1\n {if layer_num == 3 || layer_num == 10 || layer_num == 19}\n M993 A2 B2 C2 ; nozzle cam detection allow status save.\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n\n M400 P100\n\n G39\n\n G90\n G1 Y240 F30000\n G1 Y210 F15000\n \n M993 A3 B3 C3 ; nozzle cam detection allow status restore.\n {endif}\n M623\n{endif}", - "change_filament_gcode": ";======== P2S filament_change gcode ==========\n;===== Based on official 2026/04/08 filament change gcode =====\n\nM620 S[next_extruder]A\nM204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_extruder] == 0 || z_hop_types[current_extruder] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\n\n;nozzle_change_gcode\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\n{if ((filament_type[current_extruder] == \"PLA\") || (filament_type[current_extruder] == \"PLA-CF\") || (filament_type[current_extruder] == \"PETG\")) && (nozzle_diameter[current_extruder] == 0.2)}\nM620.10 A0 F74.8347 L[flush_length] H{nozzle_diameter[current_extruder]} T{flush_temperatures[current_extruder]} P{nozzle_temperature[current_extruder]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[current_extruder]/2.4053*60} L[flush_length] H{nozzle_diameter[current_extruder]} T{flush_temperatures[current_extruder]} P{nozzle_temperature[current_extruder]} S1\n{endif}\n\n{if ((filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG\")) && (nozzle_diameter[next_extruder] == 0.2)}\nM620.10 A1 F74.8347 L[flush_length] H{nozzle_diameter[next_extruder]} T{flush_temperatures[next_extruder]} P{nozzle_temperature[next_extruder]} S1\n{else}\nM620.10 A1 F{flush_volumetric_speeds[next_extruder]/2.4053*60} L[flush_length] H{nozzle_diameter[next_extruder]} T{flush_temperatures[next_extruder]} P{nozzle_temperature[next_extruder]} S1\n{endif}\n\n{if long_retraction_when_cut}\nM620.11 P1 L0 I[current_extruder] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{else}\nM620.11 P0 L0 I[current_extruder] E0\n{endif}\n\nM620.11 K0 I[current_extruder] R0\n\n \nT[next_extruder]\n\n;deretract\n{if filament_type[next_extruder] == \"TPU\"}\n{else}\n{if filament_type[next_extruder] == \"PA\"}\n;VG1 E1 F{max(new_filament_e_feedrate, 200)}\n;VG1 E1 F{max(new_filament_e_feedrate/2, 100)}\n{else}\n;VG1 E4 F{max(new_filament_e_feedrate, 200)}\n;VG1 E4 F{max(new_filament_e_feedrate/2, 100)}\n{endif}\n{endif}\n\n; VFLUSH_START\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\nSYNC T{ceil(flush_length / 80) * 5}\n; VFLUSH_END\n\nM1002 set_filament_type:{filament_type[next_extruder]}\n\nM400\nM83\n{if next_extruder < 255}\nM620.10 R{retract_length_toolchange[filament_map[next_extruder]-1]}\nM628 S0\n;VM109 S[new_filament_temp]\n\nM629\nM400\nM983.3 F{filament_max_volumetric_speed[next_extruder]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_extruder]-1]}\nM400\n\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[travel_acceleration]\n{endif}\n\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\n\nM621 S[next_extruder]A\n\nM622.1 S0 ;for prev version, default skip\nM1002 judge_flag powerloss_resume_flag\nM622 J1\nM983.3 F{filament_max_volumetric_speed[next_extruder]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_extruder]-1]}\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[travel_acceleration]\n{endif}\nM1002 set_flag powerloss_resume_flag=0\nM623\n\n{if (filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PETG\")\n || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H[nozzle_diameter] ;disable E air printing detect\n{endif}\n\nM620.6 I[next_extruder] W1 ;enable ams air printing detect\n\nG1 Y256 F18000\n\n{if (overall_chamber_temperature < 40)}\n{if (layer_num + 1 <= close_fan_the_first_x_layers[next_extruder])}\n {if (min_vitrification_temperature <= 50)}\n M106 P2 S{first_x_layer_fan_speed[next_extruder]*255.0/100.0 };set first x_layer aux fan\n {endif}\n{elsif (layer_num + 1 < full_fan_speed_layer[next_extruder] && full_fan_speed_layer[next_extruder] > close_fan_the_first_x_layers[next_extruder])}\n {if (min_vitrification_temperature <= 50)}\n M106 P2 S{(first_x_layer_fan_speed[next_extruder] + (additional_cooling_fan_speed[next_extruder] - first_x_layer_fan_speed[next_extruder]) * (layer_num + 1 - close_fan_the_first_x_layers[next_extruder]) / (full_fan_speed_layer[next_extruder] - close_fan_the_first_x_layers[next_extruder])) * 255.0/100.0}\n {endif}\n{else}\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {endif}\n{endif}\n{endif}\n\nM622.1 S0\nM1002 judge_flag ventobox_replace_aux1_fan_flag\nM622 J0\n{if (layer_num + 1 <= close_fan_the_first_x_layers[next_extruder])}\n M106 P10 S{first_x_layer_fan_speed[next_extruder]*255.0/100.0 };set first x_layer left aux fan \n{elsif (layer_num + 1 < full_fan_speed_layer[next_extruder] && full_fan_speed_layer[next_extruder] > close_fan_the_first_x_layers[next_extruder])}\n M106 P10 S{(first_x_layer_fan_speed[next_extruder] + (additional_cooling_fan_speed[next_extruder] - first_x_layer_fan_speed[next_extruder]) * (layer_num + 1 - close_fan_the_first_x_layers[next_extruder]) / (full_fan_speed_layer[next_extruder] - close_fan_the_first_x_layers[next_extruder])) * 255.0/100.0}\n{else}\n M106 P10 S{additional_cooling_fan_speed[next_extruder]*255.0/100.0};set left aux fan\n{endif}\nM623\n\n;not set fan changing filament" + "print_in_clockwise": "1" } diff --git a/resources/profiles/BBL/machine/Bambu Lab P2S 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P2S 0.6 nozzle.json index fe42eef3f1..78764749fa 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P2S 0.6 nozzle.json @@ -1,33 +1,37 @@ { - "type": "machine", - "name": "Bambu Lab P2S 0.6 nozzle", - "inherits": "Bambu Lab P2S 0.4 nozzle", - "from": "system", - "setting_id": "GM009", - "instantiation": "true", - "nozzle_diameter": [ - "0.6" - ], - "printer_model": "Bambu Lab P2S", - "printer_variant": "0.6", - "default_filament_profile": [ - "Bambu PLA Basic @BBL P2S 0.6 nozzle" - ], - "default_print_profile": "0.30mm Standard @BBL P2S 0.6 nozzle", - "max_layer_height": [ - "0.42" - ], - "min_layer_height": [ - "0.12" - ], - "retraction_length": [ - "1.4", - "1.4" - ], - "upward_compatible_machine": [ - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle" - ] + "type": "machine", + "name": "Bambu Lab P2S 0.6 nozzle", + "inherits": "Bambu Lab P2S 0.4 nozzle", + "from": "system", + "setting_id": "GM009", + "instantiation": "true", + "nozzle_diameter": [ + "0.6" + ], + "printer_model": "Bambu Lab P2S", + "printer_variant": "0.6", + "default_filament_profile": [ + "Bambu PLA Basic @BBL P2S 0.6 nozzle" + ], + "default_print_profile": "0.30mm Standard @BBL P2S 0.6 nozzle", + "max_layer_height": [ + "0.42" + ], + "min_layer_height": [ + "0.12" + ], + "retraction_length": [ + "1.4", + "1.4", + "1.4" + ], + "upward_compatible_machine": [ + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab A2L 0.6 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab P2S 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab P2S 0.8 nozzle.json index c154ec6105..35dd4955d8 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab P2S 0.8 nozzle.json @@ -1,37 +1,221 @@ { - "type": "machine", - "name": "Bambu Lab P2S 0.8 nozzle", - "inherits": "Bambu Lab P2S 0.4 nozzle", - "from": "system", - "setting_id": "GM018", - "instantiation": "true", - "nozzle_diameter": [ - "0.8" - ], - "printer_model": "Bambu Lab P2S", - "printer_variant": "0.8", - "default_filament_profile": [ - "Bambu PLA Basic @BBL P2S 0.8 nozzle" - ], - "default_print_profile": "0.40mm Standard @BBL P2S 0.8 nozzle", - "max_layer_height": [ - "0.56" - ], - "min_layer_height": [ - "0.16" - ], - "retract_length_toolchange": [ - "3", - "3" - ], - "retraction_length": [ - "3", - "3" - ], - "upward_compatible_machine": [ - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab H2D 0.8 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle" - ] -} + "type": "machine", + "name": "Bambu Lab P2S 0.8 nozzle", + "inherits": "Bambu Lab P2S 0.4 nozzle", + "from": "system", + "setting_id": "GM018", + "instantiation": "true", + "nozzle_diameter": [ + "0.8" + ], + "printer_model": "Bambu Lab P2S", + "printer_variant": "0.8", + "default_filament_profile": [ + "Bambu PLA Basic @BBL P2S 0.8 nozzle" + ], + "default_print_profile": "0.40mm Standard @BBL P2S 0.8 nozzle", + "max_layer_height": [ + "0.56" + ], + "min_layer_height": [ + "0.16" + ], + "retract_length_toolchange": [ + "3", + "3" + ], + "retraction_length": [ + "3", + "3" + ], + "upward_compatible_machine": [ + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2C 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "deretraction_speed": [ + "30", + "30" + ], + "hotend_cooling_rate": [ + "2", + "2" + ], + "hotend_heating_rate": [ + "2", + "2" + ], + "long_retractions_when_cut": [ + "0", + "0" + ], + "nozzle_flush_dataset": [ + "0", + "0" + ], + "retract_before_wipe": [ + "0%", + "0%" + ], + "retract_restart_extra": [ + "0", + "0" + ], + "retract_restart_extra_toolchange": [ + "0", + "0" + ], + "retract_when_changing_layer": [ + "1", + "1" + ], + "retraction_distances_when_cut": [ + "18", + "18" + ], + "retraction_minimum_travel": [ + "1", + "1" + ], + "retraction_speed": [ + "30", + "30" + ], + "wipe": [ + "1", + "1" + ], + "z_hop": [ + "0.4", + "0.4" + ], + "deretract_speed_extruder_change": [ + "30", + "30" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow" + ], + "nozzle_volume": [ + "110", + "110" + ], + "printer_extruder_id": [ + "1", + "1" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "retract_lift_above": [ + "0", + "0" + ], + "retract_lift_below": [ + "249", + "249" + ], + "wipe_distance": [ + "2", + "2" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift" + ], + "machine_max_acceleration_e": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "10000", + "10000", + "10000", + "10000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3" + ], + "machine_max_speed_z": [ + "20", + "20", + "20", + "20" + ], + "machine_max_speed_y": [ + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_x": [ + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_e": [ + "30", + "30", + "30", + "30" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab P2S.json b/resources/profiles/BBL/machine/Bambu Lab P2S.json index 869cb56016..a355fc1179 100644 --- a/resources/profiles/BBL/machine/Bambu Lab P2S.json +++ b/resources/profiles/BBL/machine/Bambu Lab P2S.json @@ -1,16 +1,16 @@ { - "type": "machine_model", - "name": "Bambu Lab P2S", - "nozzle_diameter": "0.4;0.2;0.6;0.8", - "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", - "bed_model": "bbl-3dp-X1.stl", - "bed_texture": "bbl-3dp-logo.svg", - "default_bed_type": "Textured PEI Plate", - "image_bed_type": "n", - "bottom_texture_end_name": "n", - "not_support_bed_type": "Smooth Cool Plate;Textured Cool Plate", - "family": "BBL-3DP", - "machine_tech": "FFF", - "model_id": "N7", - "default_materials": "Bambu PLA Matte @BBL P2S;Bambu PLA Basic @BBL P2S;Bambu PLA Silk @BBL P2S;Bambu PLA Marble @BBL P2S;Bambu PLA Sparkle @BBL P2S;Generic PLA @BBL P2S;Bambu TPU 95A @BBL P2S;Bambu ABS @BBL P2S;Bambu PC @BBL P2S 0.4 nozzle;Bambu PLA Basic @BBL P2S 0.2 nozzle" -} + "type": "machine_model", + "name": "Bambu Lab P2S", + "nozzle_diameter": "0.4;0.2;0.6;0.8", + "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", + "bed_model": "bbl-3dp-X1.stl", + "bed_texture": "bbl-3dp-logo.svg", + "default_bed_type": "Textured PEI Plate", + "image_bed_type": "n", + "bottom_texture_end_name": "n", + "not_support_bed_type": "Cool Plate", + "family": "BBL-3DP", + "machine_tech": "FFF", + "model_id": "N7", + "default_materials": "Bambu PLA Matte @BBL P2S;Bambu PLA Basic @BBL P2S;Bambu PLA Silk @BBL P2S;Bambu PLA Marble @BBL P2S;Bambu PLA Sparkle @BBL P2S;Generic PLA @BBL P2S;Bambu TPU 95A @BBL P2S;Bambu ABS @BBL P2S;Bambu PC @BBL P2S 0.4 nozzle;Bambu PLA Pure @BBL P2S 0.4 nozzle;Bambu PLA Basic @BBL P2S 0.2 nozzle" +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.2 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.2 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..c814830f56 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.2 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1 0.2 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: X1-0.2 ====================\n;===== date: 20251031 ==================\n;===== start printer sound ================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A46 B10 L100 C43 D10 M70 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A43 B10 L100 C0 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A41 B10 L100 C0 D10 M100 E41 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E44 F10 N100\nM1006 A49 B10 L100 C0 D10 M100 E49 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A48 B10 L100 C44 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M90 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A46 B10 L100 C43 D10 M60 E39 F10 N100\nM1006 W\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y12 Z0.2 E0.577\n G0 F1200.0 X226 Y12 Z0.2 E0.275\n G0 F1200.0 X226 Y1.5 Z0.2 E0.577\n G0 F1200.0 X220 Y1.5 Z0.2 E0.330\n G0 F1200.0 X220 Y8 Z0.2 E0.358\n G0 F1200.0 X210 Y8 Z0.2 E0.549\n G0 F1200.0 X210 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E11.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E0.772 F1200.0\n G0 X45.0 E0.22 F1200.0\n G0 X35.0 Y6.0 E0.86 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n\t{if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.160\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.080\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.080 K0.160\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.08 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.08}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.2 nozzle.json index 1d7363975b..0d3e449d12 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.2 nozzle.json @@ -1,218 +1,44 @@ { - "type": "machine", - "name": "Bambu Lab X1 0.2 nozzle", - "inherits": "Bambu Lab X1 0.4 nozzle", - "from": "system", - "setting_id": "GM008", - "instantiation": "true", - "nozzle_diameter": [ - "0.2" - ], - "printer_model": "Bambu Lab X1", - "printer_variant": "0.2", - "default_filament_profile": [ - "Bambu PLA Basic @BBL X1C 0.2 nozzle" - ], - "default_print_profile": "0.10mm Standard @BBL X1C 0.2 nozzle", - "deretraction_speed": [ - "30", - "30" - ], - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow" - ], - "long_retractions_when_cut": [ - "0", - "0" - ], - "max_layer_height": [ - "0.14" - ], - "min_layer_height": [ - "0.04" - ], - "machine_max_acceleration_e": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_extruding": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_retracting": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_travel": [ - "9000", - "9000", - "9000", - "9000" - ], - "machine_max_acceleration_x": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_y": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_z": [ - "500", - "200", - "200", - "200" - ], - "machine_max_jerk_e": [ - "2.5", - "2.5", - "2.5", - "2.5" - ], - "machine_max_jerk_x": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_y": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_z": [ - "3", - "3", - "3", - "3" - ], - "machine_max_speed_e": [ - "30", - "30", - "30", - "30" - ], - "machine_max_speed_x": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_y": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_z": [ - "20", - "20", - "20", - "20" - ], - "machine_min_extruding_rate": [ - "0" - ], - "machine_min_travel_rate": [ - "0" - ], - "nozzle_type": [ - "stainless_steel", - "stainless_steel" - ], - "nozzle_volume": [ - "107", - "107" - ], - "printer_extruder_id": [ - "1", - "1" - ], - "printer_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "retraction_length": [ - "0.4", - "0.4" - ], - "retract_before_wipe": [ - "0%", - "0%" - ], - "retract_length_toolchange": [ - "2", - "2" - ], - "retract_lift_above": [ - "0", - "0" - ], - "retract_lift_below": [ - "249", - "249" - ], - "retraction_minimum_travel": [ - "1", - "1" - ], - "retraction_speed": [ - "30", - "30" - ], - "retract_restart_extra": [ - "0", - "0" - ], - "retract_restart_extra_toolchange": [ - "0", - "0" - ], - "retract_when_changing_layer": [ - "1", - "1" - ], - "retraction_distances_when_cut": [ - "18", - "18" - ], - "wipe_distance": [ - "2", - "2" - ], - "wipe": [ - "1", - "1" - ], - "z_hop": [ - "0.4", - "0.4" - ], - "z_hop_types": [ - "Auto Lift", - "Auto Lift" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab P1P 0.2 nozzle", - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle", - "Bambu Lab A1 0.2 nozzle", - "Bambu Lab H2D 0.2 nozzle", - "Bambu Lab H2D Pro 0.2 nozzle", - "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle" - ], - "machine_start_gcode": ";===== machine: X1-0.2 ====================\n;===== date: 20250909 ==================\n;===== start printer sound ================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A46 B10 L100 C43 D10 M70 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A43 B10 L100 C0 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A41 B10 L100 C0 D10 M100 E41 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E44 F10 N100\nM1006 A49 B10 L100 C0 D10 M100 E49 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A48 B10 L100 C44 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M90 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A46 B10 L100 C43 D10 M60 E39 F10 N100\nM1006 W\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y12 Z0.2 E0.577\n G0 F1200.0 X226 Y12 Z0.2 E0.275\n G0 F1200.0 X226 Y1.5 Z0.2 E0.577\n G0 F1200.0 X220 Y1.5 Z0.2 E0.330\n G0 F1200.0 X220 Y8 Z0.2 E0.358\n G0 F1200.0 X210 Y8 Z0.2 E0.549\n G0 F1200.0 X210 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E11.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E0.772 F1200.0\n G0 X45.0 E0.22 F1200.0\n G0 X35.0 Y6.0 E0.86 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n\t{if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.160\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.080\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.080 K0.160\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.08 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.08}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n" + "type": "machine", + "name": "Bambu Lab X1 0.2 nozzle", + "inherits": "Bambu Lab X1 0.4 nozzle", + "from": "system", + "setting_id": "GM008", + "instantiation": "true", + "nozzle_diameter": [ + "0.2" + ], + "printer_model": "Bambu Lab X1", + "printer_variant": "0.2", + "default_filament_profile": [ + "Bambu PLA Basic @BBL X1C 0.2 nozzle" + ], + "default_print_profile": "0.10mm Standard @BBL X1C 0.2 nozzle", + "include": [ + "Bambu Lab X1 0.2 nozzle template machine_start_gcode" + ], + "max_layer_height": [ + "0.14" + ], + "min_layer_height": [ + "0.04" + ], + "retraction_length": [ + "0.4", + "0.4" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab P1P 0.2 nozzle", + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle", + "Bambu Lab A1 0.2 nozzle", + "Bambu Lab H2D 0.2 nozzle", + "Bambu Lab H2D Pro 0.2 nozzle", + "Bambu Lab H2S 0.2 nozzle", + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab H2C 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab A2L 0.2 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle template change_filament_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle template change_filament_gcode.json new file mode 100644 index 0000000000..3167207ebe --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle template change_filament_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1 0.4 nozzle template change_filament_gcode", + "instantiation": "false", + "change_filament_gcode": ";=X1 20251031=\nM620 S[next_extruder]A\nM204 S9000\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if old_filament_temp > 142 && next_extruder < 255}\nM104 S[old_filament_temp]\n{endif}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{else}\nM620.11 S0\n{endif}\nM400\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F{flush_volumetric_speeds[previous_extruder]/2.4053*60} T{flush_temperatures[previous_extruder]}\nT[next_extruder]\nM620.1 E F{flush_volumetric_speeds[next_extruder]/2.4053*60} T{flush_temperatures[next_extruder]}\n\n{if next_extruder < 255}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S{flush_temperatures[next_extruder]}\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{flush_volumetric_speeds[previous_extruder]/2.4053*60} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\n{else}\nG1 E{flush_length_1} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S[new_filament_temp]\nG1 E2 F{flush_volumetric_speeds[next_extruder]/2.4053*60} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle template machine_end_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle template machine_end_gcode.json new file mode 100644 index 0000000000..d0a5e1716c --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle template machine_end_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1 0.4 nozzle template machine_end_gcode", + "instantiation": "false", + "machine_end_gcode": ";===== date: 20240528 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos\nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A0 B20 L100 C37 D20 M40 E42 F20 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C46 D10 M80 E46 F10 N80\nM1006 A44 B20 L100 C39 D20 M60 E48 F20 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C39 D10 M60 E39 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C39 D10 M60 E39 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C48 D10 M60 E44 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A49 B20 L100 C44 D20 M100 E41 F20 N100\nM1006 A0 B20 L100 C0 D20 M60 E0 F20 N100\nM1006 A0 B20 L100 C37 D20 M30 E37 F20 N60\nM1006 W\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\nM960 S5 P0 ; turn off logo lamp\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..3709f9f179 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1 0.4 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: X1-0.4 ====================\n;===== date: 20251031 ==================\n;===== start printer sound ================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A46 B10 L100 C43 D10 M70 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A43 B10 L100 C0 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A41 B10 L100 C0 D10 M100 E41 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E44 F10 N100\nM1006 A49 B10 L100 C0 D10 M100 E49 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A48 B10 L100 C44 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M90 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A46 B10 L100 C43 D10 M60 E39 F10 N100\nM1006 W\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y12 Z0.2 E0.577\n G0 F1200.0 X226 Y12 Z0.2 E0.275\n G0 F1200.0 X226 Y1.5 Z0.2 E0.577\n G0 F1200.0 X220 Y1.5 Z0.2 E0.330\n G0 F1200.0 X220 Y8 Z0.2 E0.358\n G0 F1200.0 X210 Y8 Z0.2 E0.549\n G0 F1200.0 X210 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E11.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E0.772 F1200.0\n G0 X45.0 E0.22 F1200.0\n G0 X35.0 Y6.0 E0.86 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.040\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.020\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.020 K0.040\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.02 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.02}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle template time_lapse_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle template time_lapse_gcode.json new file mode 100644 index 0000000000..67d293b29f --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle template time_lapse_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1 0.4 nozzle template time_lapse_gcode", + "instantiation": "false", + "time_lapse_gcode": ";========Date 20250206========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n{if timelapse_type == 0} ; timelapse without wipe tower\nM971 S11 C10 O0\nM1004 S5 P1 ; external shutter\n{elsif timelapse_type == 1} ; timelapse with wipe tower\nG92 E0\nG1 X65 Y245 F20000 ; move to safe pos\nG17\nG2 Z{layer_z} I0.86 J0.86 P1 F20000\nG1 Y265 F3000\nM400\nM1004 S5 P1 ; external shutter\nM400 P300\nM971 S11 C10 O0\nG92 E0\nG1 X100 F5000\nG1 Y255 F20000\n{endif}\nM623\n; SKIPPABLE_END\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle.json index d56f1094f8..667590e658 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.4 nozzle.json @@ -1,233 +1,246 @@ { - "type": "machine", - "name": "Bambu Lab X1 0.4 nozzle", - "inherits": "fdm_bbl_3dp_001_common", - "from": "system", - "setting_id": "GM003", - "instantiation": "true", - "nozzle_diameter": [ - "0.4" - ], - "printer_model": "Bambu Lab X1", - "printer_variant": "0.4", - "auxiliary_fan": "0", - "bed_exclude_area": [ - "0x0", - "18x0", - "18x28", - "0x28" - ], - "default_filament_profile": [ - "Bambu PLA Basic @BBL X1" - ], - "default_print_profile": "0.20mm Standard @BBL X1C", - "deretraction_speed": [ - "30", - "30" - ], - "enable_long_retraction_when_cut": [ - "2" - ], - "extruder_offset": [ - "0x2" - ], - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow" - ], - "fan_direction": "left", - "long_retractions_when_cut": [ - "0", - "0" - ], - "machine_unload_filament_time": "28", - "machine_max_acceleration_e": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_extruding": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_retracting": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_travel": [ - "9000", - "9000", - "9000", - "9000" - ], - "machine_max_acceleration_x": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_y": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_z": [ - "500", - "200", - "200", - "200" - ], - "machine_max_jerk_e": [ - "2.5", - "2.5", - "2.5", - "2.5" - ], - "machine_max_jerk_x": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_y": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_z": [ - "3", - "3", - "3", - "3" - ], - "machine_max_speed_e": [ - "30", - "30", - "30", - "30" - ], - "machine_max_speed_x": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_y": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_z": [ - "20", - "20", - "20", - "20" - ], - "machine_min_extruding_rate": [ - "0" - ], - "machine_min_travel_rate": [ - "0" - ], - "nozzle_height": "4.2", - "nozzle_type": [ - "stainless_steel", - "stainless_steel" - ], - "nozzle_volume": [ - "107", - "107" - ], - "printer_extruder_id": [ - "1", - "1" - ], - "printer_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "retract_before_wipe": [ - "0%", - "0%" - ], - "retract_length_toolchange": [ - "2", - "2" - ], - "retract_lift_above": [ - "0", - "0" - ], - "retract_lift_below": [ - "249", - "249" - ], - "retraction_length": [ - "0.8", - "0.8" - ], - "retraction_minimum_travel": [ - "1", - "1" - ], - "retraction_speed": [ - "30", - "30" - ], - "retract_restart_extra": [ - "0", - "0" - ], - "retract_restart_extra_toolchange": [ - "0", - "0" - ], - "retract_when_changing_layer": [ - "1", - "1" - ], - "retraction_distances_when_cut": [ - "18", - "18" - ], - "scan_first_layer": "1", - "support_air_filtration": "1", - "wipe_distance": [ - "2", - "2" - ], - "wipe": [ - "1", - "1" - ], - "z_hop": [ - "0.4", - "0.4" - ], - "z_hop_types": [ - "Auto Lift", - "Auto Lift" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle" - ], - "machine_start_gcode": ";===== machine: X1-0.4 ====================\n;===== date: 20250909 ==================\n;===== start printer sound ================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A46 B10 L100 C43 D10 M70 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A43 B10 L100 C0 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A41 B10 L100 C0 D10 M100 E41 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E44 F10 N100\nM1006 A49 B10 L100 C0 D10 M100 E49 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A48 B10 L100 C44 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M90 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A46 B10 L100 C43 D10 M60 E39 F10 N100\nM1006 W\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y12 Z0.2 E0.577\n G0 F1200.0 X226 Y12 Z0.2 E0.275\n G0 F1200.0 X226 Y1.5 Z0.2 E0.577\n G0 F1200.0 X220 Y1.5 Z0.2 E0.330\n G0 F1200.0 X220 Y8 Z0.2 E0.358\n G0 F1200.0 X210 Y8 Z0.2 E0.549\n G0 F1200.0 X210 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E11.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E0.772 F1200.0\n G0 X45.0 E0.22 F1200.0\n G0 X35.0 Y6.0 E0.86 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.040\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.020\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.020 K0.040\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.02 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.02}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n", - "machine_end_gcode": ";===== date: 20240528 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos\nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A0 B20 L100 C37 D20 M40 E42 F20 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C46 D10 M80 E46 F10 N80\nM1006 A44 B20 L100 C39 D20 M60 E48 F20 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C39 D10 M60 E39 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C39 D10 M60 E39 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C48 D10 M60 E44 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A49 B20 L100 C44 D20 M100 E41 F20 N100\nM1006 A0 B20 L100 C0 D20 M60 E0 F20 N100\nM1006 A0 B20 L100 C37 D20 M30 E37 F20 N60\nM1006 W\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\nM960 S5 P0 ; turn off logo lamp\n", - "time_lapse_gcode": ";========Date 20250206========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n{if timelapse_type == 0} ; timelapse without wipe tower\nM971 S11 C10 O0\nM1004 S5 P1 ; external shutter\n{elsif timelapse_type == 1} ; timelapse with wipe tower\nG92 E0\nG1 X65 Y245 F20000 ; move to safe pos\nG17\nG2 Z{layer_z} I0.86 J0.86 P1 F20000\nG1 Y265 F3000\nM400\nM1004 S5 P1 ; external shutter\nM400 P300\nM971 S11 C10 O0\nG92 E0\nG1 X100 F5000\nG1 Y255 F20000\n{endif}\nM623\n; SKIPPABLE_END\n", - "change_filament_gcode": ";=X1 20250822=\nM620 S[next_extruder]A\nM204 S9000\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if nozzle_temperature[previous_extruder] > 142 && next_extruder < 255}\nM104 S{nozzle_temperature[previous_extruder]}\n{endif}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{else}\nM620.11 S0\n{endif}\nM400\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F{flush_volumetric_speeds[previous_extruder]/2.4053*60} T{flush_temperatures[previous_extruder]}\nT[next_extruder]\nM620.1 E F{flush_volumetric_speeds[next_extruder]/2.4053*60} T{flush_temperatures[next_extruder]}\n\n{if next_extruder < 255}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S{flush_temperatures[next_extruder]}\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{flush_volumetric_speeds[previous_extruder]/2.4053*60} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\n{else}\nG1 E{flush_length_1} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S{nozzle_temperature[next_extruder]}\nG1 E2 F{flush_volumetric_speeds[next_extruder]/2.4053*60} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" + "type": "machine", + "name": "Bambu Lab X1 0.4 nozzle", + "inherits": "fdm_bbl_3dp_001_common", + "from": "system", + "setting_id": "GM003", + "instantiation": "true", + "nozzle_diameter": [ + "0.4" + ], + "printer_model": "Bambu Lab X1", + "farthest_point_timelapse": "1", + "printer_variant": "0.4", + "auxiliary_fan": "0", + "bed_exclude_area": [ + "0x0", + "18x0", + "18x28", + "0x28" + ], + "default_filament_profile": [ + "Bambu PLA Basic @BBL X1" + ], + "default_print_profile": "0.20mm Standard @BBL X1C", + "deretraction_speed": [ + "30", + "30" + ], + "enable_long_retraction_when_cut": [ + "2" + ], + "extruder_offset": [ + "0x2" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow" + ], + "fan_direction": "left", + "hotend_cooling_rate": [ + "2", + "2" + ], + "hotend_heating_rate": [ + "2", + "2" + ], + "include": [ + "Bambu Lab X1 0.4 nozzle template machine_start_gcode", + "Bambu Lab X1 0.4 nozzle template machine_end_gcode", + "Bambu Lab X1 0.4 nozzle template time_lapse_gcode", + "Bambu Lab X1 0.4 nozzle template change_filament_gcode" + ], + "long_retractions_when_cut": [ + "0", + "0" + ], + "machine_unload_filament_time": "28", + "machine_max_acceleration_e": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3" + ], + "machine_max_speed_e": [ + "30", + "30", + "30", + "30" + ], + "machine_max_speed_x": [ + "500", + "500", + "500", + "500" + ], + "machine_max_speed_y": [ + "500", + "500", + "500", + "500" + ], + "machine_max_speed_z": [ + "20", + "20", + "20", + "20" + ], + "machine_min_extruding_rate": [ + "0" + ], + "machine_min_travel_rate": [ + "0" + ], + "nozzle_height": "4.2", + "nozzle_volume": [ + "107", + "107" + ], + "nozzle_flush_dataset": [ + "0", + "0" + ], + "printer_extruder_id": [ + "1", + "1" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "retract_before_wipe": [ + "0%", + "0%" + ], + "retract_length_toolchange": [ + "2", + "2" + ], + "retract_lift_above": [ + "0", + "0" + ], + "retract_lift_below": [ + "249", + "249" + ], + "retraction_length": [ + "0.8", + "0.8" + ], + "retraction_minimum_travel": [ + "1", + "1" + ], + "retraction_speed": [ + "30", + "30" + ], + "retract_restart_extra": [ + "0", + "0" + ], + "retract_restart_extra_toolchange": [ + "0", + "0" + ], + "retract_when_changing_layer": [ + "1", + "1" + ], + "retraction_distances_when_cut": [ + "18", + "18" + ], + "scan_first_layer": "1", + "wipe_distance": [ + "2", + "2" + ], + "wipe": [ + "1", + "1" + ], + "z_hop": [ + "0.4", + "0.4" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab H2C 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab A2L 0.4 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.6 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.6 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..1c3c940d86 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.6 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1 0.6 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: X1-0.6 ====================\n;===== date: 20251031 ==================\n;===== start printer sound ================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A46 B10 L100 C43 D10 M70 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A43 B10 L100 C0 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A41 B10 L100 C0 D10 M100 E41 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E44 F10 N100\nM1006 A49 B10 L100 C0 D10 M100 E49 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A48 B10 L100 C44 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M90 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A46 B10 L100 C43 D10 M60 E39 F10 N100\nM1006 W\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X231 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y12 Z0.2 E1.039\n G0 F1200.0 X226 Y12 Z0.2 E0.495\n G0 F1200.0 X226 Y1.5 Z0.2 E1.039\n G0 F1200.0 X220 Y1.5 Z0.2 E0.594\n G0 F1200.0 X220 Y8 Z0.2 E0.644\n G0 F1200.0 X210 Y8 Z0.2 E0.988\n G0 F1200.0 X210 Y1.5 Z0.2 E0.642\n\n G0 X48.0 E19.826 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E1.312 F1200.0\n G0 X45.0 E0.374 F1200.0\n G0 X35.0 Y6.0 E1.460 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E16.9 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.030\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.015\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E23.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.015 K0.030\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.015 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.015}\n M623\n\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.6 nozzle.json index d5a6eb8a2a..6f58baa060 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.6 nozzle.json @@ -1,44 +1,45 @@ { - "type": "machine", - "name": "Bambu Lab X1 0.6 nozzle", - "inherits": "Bambu Lab X1 0.4 nozzle", - "from": "system", - "setting_id": "GM006", - "instantiation": "true", - "nozzle_diameter": [ - "0.6" - ], - "printer_model": "Bambu Lab X1", - "printer_variant": "0.6", - "default_print_profile": "0.30mm Standard @BBL X1 0.6 nozzle", - "max_layer_height": [ - "0.42" - ], - "min_layer_height": [ - "0.12" - ], - "nozzle_type": [ - "hardened_steel", - "hardened_steel" - ], - "retraction_length": [ - "1.4", - "1.4" - ], - "retraction_minimum_travel": [ - "3", - "3" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle" - ], - "machine_start_gcode": ";===== machine: X1-0.6 ====================\n;===== date: 20250909 ==================\n;===== start printer sound ================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A46 B10 L100 C43 D10 M70 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A43 B10 L100 C0 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A41 B10 L100 C0 D10 M100 E41 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E44 F10 N100\nM1006 A49 B10 L100 C0 D10 M100 E49 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A48 B10 L100 C44 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M90 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A46 B10 L100 C43 D10 M60 E39 F10 N100\nM1006 W\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X231 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y12 Z0.2 E1.039\n G0 F1200.0 X226 Y12 Z0.2 E0.495\n G0 F1200.0 X226 Y1.5 Z0.2 E1.039\n G0 F1200.0 X220 Y1.5 Z0.2 E0.594\n G0 F1200.0 X220 Y8 Z0.2 E0.644\n G0 F1200.0 X210 Y8 Z0.2 E0.988\n G0 F1200.0 X210 Y1.5 Z0.2 E0.642\n\n G0 X48.0 E19.826 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E1.312 F1200.0\n G0 X45.0 E0.374 F1200.0\n G0 X35.0 Y6.0 E1.460 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E16.9 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.030\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.015\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E23.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.015 K0.030\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.015 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.015}\n M623\n\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n" + "type": "machine", + "name": "Bambu Lab X1 0.6 nozzle", + "inherits": "Bambu Lab X1 0.4 nozzle", + "from": "system", + "setting_id": "GM006", + "instantiation": "true", + "nozzle_diameter": [ + "0.6" + ], + "printer_model": "Bambu Lab X1", + "printer_variant": "0.6", + "default_print_profile": "0.30mm Standard @BBL X1 0.6 nozzle", + "include": [ + "Bambu Lab X1 0.6 nozzle template machine_start_gcode" + ], + "max_layer_height": [ + "0.42" + ], + "min_layer_height": [ + "0.12" + ], + "retraction_length": [ + "1.4", + "1.4" + ], + "retraction_minimum_travel": [ + "3", + "3" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab A2L 0.6 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.8 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.8 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..88f22deea6 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.8 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1 0.8 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: X1-0.8 ====================\n;===== date: 20251031 ==================\n;===== start printer sound ================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A46 B10 L100 C43 D10 M70 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A43 B10 L100 C0 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A41 B10 L100 C0 D10 M100 E41 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E44 F10 N100\nM1006 A49 B10 L100 C0 D10 M100 E49 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A48 B10 L100 C44 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M90 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A46 B10 L100 C43 D10 M60 E39 F10 N100\nM1006 W\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y11 E1.364 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.300\nG0 X231 E1.160 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y12 Z0.2 E1.154\n G0 F1200.0 X226 Y12 Z0.2 E0.550\n G0 F1200.0 X226 Y1.5 Z0.2 E1.154\n G0 F1200.0 X220 Y1.5 Z0.2 E0.660\n G0 F1200.0 X220 Y8 Z0.2 E0.716\n G0 F1200.0 X210 Y8 Z0.2 E1.098\n G0 F1200.0 X210 Y1.5 Z0.2 E0.714\n\n G0 X48.0 E24.107 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E1.420 F1200.0\n G0 X45.0 E0.404 F1200.0\n G0 X35.0 Y6.0 E1.580 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X110.000 E9.35441 F4800\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.020\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.010\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X129 E14 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.010 K0.020\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.01 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14) *0.01}\n M623\n\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X185.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X190.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X195.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X200.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X205.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X210.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X215.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X220.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X225.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 0.8 nozzle.json index 090a5665e0..35ec6c6d3f 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 0.8 nozzle.json @@ -1,44 +1,45 @@ { - "type": "machine", - "name": "Bambu Lab X1 0.8 nozzle", - "inherits": "Bambu Lab X1 0.4 nozzle", - "from": "system", - "setting_id": "GM007", - "instantiation": "true", - "nozzle_diameter": [ - "0.8" - ], - "printer_model": "Bambu Lab X1", - "printer_variant": "0.8", - "default_print_profile": "0.40mm Standard @BBL X1 0.8 nozzle", - "max_layer_height": [ - "0.56" - ], - "min_layer_height": [ - "0.16" - ], - "nozzle_type": [ - "hardened_steel", - "hardened_steel" - ], - "retract_length_toolchange": [ - "3", - "3" - ], - "retraction_length": [ - "3", - "3" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab P1P 0.8 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab X1E 0.8 nozzle", - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab H2D 0.8 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle", - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "machine_start_gcode": ";===== machine: X1-0.8 ====================\n;===== date: 20250909 ==================\n;===== start printer sound ================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A46 B10 L100 C43 D10 M70 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A43 B10 L100 C0 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A41 B10 L100 C0 D10 M100 E41 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E44 F10 N100\nM1006 A49 B10 L100 C0 D10 M100 E49 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A48 B10 L100 C44 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M90 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A46 B10 L100 C43 D10 M60 E39 F10 N100\nM1006 W\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y11 E1.364 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.300\nG0 X231 E1.160 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y12 Z0.2 E1.154\n G0 F1200.0 X226 Y12 Z0.2 E0.550\n G0 F1200.0 X226 Y1.5 Z0.2 E1.154\n G0 F1200.0 X220 Y1.5 Z0.2 E0.660\n G0 F1200.0 X220 Y8 Z0.2 E0.716\n G0 F1200.0 X210 Y8 Z0.2 E1.098\n G0 F1200.0 X210 Y1.5 Z0.2 E0.714\n\n G0 X48.0 E24.107 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E1.420 F1200.0\n G0 X45.0 E0.404 F1200.0\n G0 X35.0 Y6.0 E1.580 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X110.000 E9.35441 F4800\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.020\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.010\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X129 E14 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.010 K0.020\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.01 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14) *0.01}\n M623\n\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X185.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X190.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X195.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X200.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X205.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X210.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X215.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X220.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X225.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n" + "type": "machine", + "name": "Bambu Lab X1 0.8 nozzle", + "inherits": "Bambu Lab X1 0.4 nozzle", + "from": "system", + "setting_id": "GM007", + "instantiation": "true", + "nozzle_diameter": [ + "0.8" + ], + "printer_model": "Bambu Lab X1", + "printer_variant": "0.8", + "default_print_profile": "0.40mm Standard @BBL X1 0.8 nozzle", + "include": [ + "Bambu Lab X1 0.8 nozzle template machine_start_gcode" + ], + "max_layer_height": [ + "0.56" + ], + "min_layer_height": [ + "0.16" + ], + "retract_length_toolchange": [ + "3", + "3" + ], + "retraction_length": [ + "3", + "3" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab H2C 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.2 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.2 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..7e4812ce30 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.2 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1 Carbon 0.2 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: X1-0.2 ====================\n;===== date: 20251031 ==================\n;===== start printer sound ================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A46 B10 L100 C43 D10 M70 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A43 B10 L100 C0 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A41 B10 L100 C0 D10 M100 E41 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E44 F10 N100\nM1006 A49 B10 L100 C0 D10 M100 E49 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A48 B10 L100 C44 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M90 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A46 B10 L100 C43 D10 M60 E39 F10 N100\nM1006 W\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y12 Z0.2 E0.577\n G0 F1200.0 X226 Y12 Z0.2 E0.275\n G0 F1200.0 X226 Y1.5 Z0.2 E0.577\n G0 F1200.0 X220 Y1.5 Z0.2 E0.330\n G0 F1200.0 X220 Y8 Z0.2 E0.358\n G0 F1200.0 X210 Y8 Z0.2 E0.549\n G0 F1200.0 X210 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E11.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E0.772 F1200.0\n G0 X45.0 E0.22 F1200.0\n G0 X35.0 Y6.0 E0.86 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n\t{if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.160\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.080\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.080 K0.160\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.08 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.08}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.2 nozzle.json index 9ce0f9268f..33a370cc95 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.2 nozzle.json @@ -1,218 +1,44 @@ { - "type": "machine", - "name": "Bambu Lab X1 Carbon 0.2 nozzle", - "inherits": "Bambu Lab X1 Carbon 0.4 nozzle", - "from": "system", - "setting_id": "GM002", - "instantiation": "true", - "nozzle_diameter": [ - "0.2" - ], - "printer_model": "Bambu Lab X1 Carbon", - "printer_variant": "0.2", - "default_filament_profile": [ - "Bambu PLA Basic @BBL X1C 0.2 nozzle" - ], - "default_print_profile": "0.10mm Standard @BBL X1C 0.2 nozzle", - "deretraction_speed": [ - "30", - "30" - ], - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow" - ], - "long_retractions_when_cut": [ - "0", - "0" - ], - "max_layer_height": [ - "0.14" - ], - "min_layer_height": [ - "0.04" - ], - "machine_max_acceleration_e": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_extruding": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_retracting": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_travel": [ - "9000", - "9000", - "9000", - "9000" - ], - "machine_max_acceleration_x": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_y": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_z": [ - "500", - "200", - "200", - "200" - ], - "machine_max_jerk_e": [ - "2.5", - "2.5", - "2.5", - "2.5" - ], - "machine_max_jerk_x": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_y": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_z": [ - "3", - "3", - "3", - "3" - ], - "machine_max_speed_e": [ - "30", - "30", - "30", - "30" - ], - "machine_max_speed_x": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_y": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_z": [ - "20", - "20", - "20", - "20" - ], - "machine_min_extruding_rate": [ - "0" - ], - "machine_min_travel_rate": [ - "0" - ], - "nozzle_type": [ - "stainless_steel", - "stainless_steel" - ], - "nozzle_volume": [ - "107", - "107" - ], - "printer_extruder_id": [ - "1", - "1" - ], - "printer_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "retraction_length": [ - "0.4", - "0.4" - ], - "retract_before_wipe": [ - "0%", - "0%" - ], - "retract_length_toolchange": [ - "2", - "2" - ], - "retract_lift_above": [ - "0", - "0" - ], - "retract_lift_below": [ - "249", - "249" - ], - "retraction_minimum_travel": [ - "1", - "1" - ], - "retraction_speed": [ - "30", - "30" - ], - "retract_restart_extra": [ - "0", - "0" - ], - "retract_restart_extra_toolchange": [ - "0", - "0" - ], - "retract_when_changing_layer": [ - "1", - "1" - ], - "retraction_distances_when_cut": [ - "18", - "18" - ], - "wipe_distance": [ - "2", - "2" - ], - "wipe": [ - "1", - "1" - ], - "z_hop": [ - "0.4", - "0.4" - ], - "z_hop_types": [ - "Auto Lift", - "Auto Lift" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab P1P 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab X1E 0.2 nozzle", - "Bambu Lab A1 0.2 nozzle", - "Bambu Lab H2D 0.2 nozzle", - "Bambu Lab H2D Pro 0.2 nozzle", - "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle" - ], - "machine_start_gcode": ";===== machine: X1-0.2 ====================\n;===== date: 20250909 ==================\n;===== start printer sound ================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A46 B10 L100 C43 D10 M70 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A43 B10 L100 C0 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A41 B10 L100 C0 D10 M100 E41 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E44 F10 N100\nM1006 A49 B10 L100 C0 D10 M100 E49 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A48 B10 L100 C44 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M90 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A46 B10 L100 C43 D10 M60 E39 F10 N100\nM1006 W\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y12 Z0.2 E0.577\n G0 F1200.0 X226 Y12 Z0.2 E0.275\n G0 F1200.0 X226 Y1.5 Z0.2 E0.577\n G0 F1200.0 X220 Y1.5 Z0.2 E0.330\n G0 F1200.0 X220 Y8 Z0.2 E0.358\n G0 F1200.0 X210 Y8 Z0.2 E0.549\n G0 F1200.0 X210 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E11.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E0.772 F1200.0\n G0 X45.0 E0.22 F1200.0\n G0 X35.0 Y6.0 E0.86 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n\t{if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.160\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.080\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.080 K0.160\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.08 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.08}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n" + "type": "machine", + "name": "Bambu Lab X1 Carbon 0.2 nozzle", + "inherits": "Bambu Lab X1 Carbon 0.4 nozzle", + "from": "system", + "setting_id": "GM002", + "instantiation": "true", + "nozzle_diameter": [ + "0.2" + ], + "printer_model": "Bambu Lab X1 Carbon", + "printer_variant": "0.2", + "default_filament_profile": [ + "Bambu PLA Basic @BBL X1C 0.2 nozzle" + ], + "default_print_profile": "0.10mm Standard @BBL X1C 0.2 nozzle", + "include": [ + "Bambu Lab X1 Carbon 0.2 nozzle template machine_start_gcode" + ], + "max_layer_height": [ + "0.14" + ], + "min_layer_height": [ + "0.04" + ], + "retraction_length": [ + "0.4", + "0.4" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab P1P 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab X1E 0.2 nozzle", + "Bambu Lab A1 0.2 nozzle", + "Bambu Lab H2D 0.2 nozzle", + "Bambu Lab H2D Pro 0.2 nozzle", + "Bambu Lab H2S 0.2 nozzle", + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab H2C 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab A2L 0.2 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template change_filament_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template change_filament_gcode.json new file mode 100644 index 0000000000..1130465f85 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template change_filament_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1 Carbon 0.4 nozzle template change_filament_gcode", + "instantiation": "false", + "change_filament_gcode": ";=X1 20251031=\nM620 S[next_extruder]A\nM204 S9000\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if old_filament_temp > 142 && next_extruder < 255}\nM104 S[old_filament_temp]\n{endif}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{else}\nM620.11 S0\n{endif}\nM400\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F{flush_volumetric_speeds[previous_extruder]/2.4053*60} T{flush_temperatures[previous_extruder]}\nT[next_extruder]\nM620.1 E F{flush_volumetric_speeds[next_extruder]/2.4053*60} T{flush_temperatures[next_extruder]}\n\n{if next_extruder < 255}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S{flush_temperatures[next_extruder]}\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{flush_volumetric_speeds[previous_extruder]/2.4053*60} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\n{else}\nG1 E{flush_length_1} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S[new_filament_temp]\nG1 E2 F{flush_volumetric_speeds[next_extruder]/2.4053*60} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template layer_change_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template layer_change_gcode.json new file mode 100644 index 0000000000..e762dc0200 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template layer_change_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1 Carbon 0.4 nozzle template layer_change_gcode", + "instantiation": "false", + "layer_change_gcode": "; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template machine_end_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template machine_end_gcode.json new file mode 100644 index 0000000000..365adfe3de --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template machine_end_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1 Carbon 0.4 nozzle template machine_end_gcode", + "instantiation": "false", + "machine_end_gcode": ";===== date: 20240528 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos\nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A0 B20 L100 C37 D20 M40 E42 F20 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C46 D10 M80 E46 F10 N80\nM1006 A44 B20 L100 C39 D20 M60 E48 F20 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C39 D10 M60 E39 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C39 D10 M60 E39 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C48 D10 M60 E44 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A49 B20 L100 C44 D20 M100 E41 F20 N100\nM1006 A0 B20 L100 C0 D20 M60 E0 F20 N100\nM1006 A0 B20 L100 C37 D20 M30 E37 F20 N60\nM1006 W\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\nM960 S5 P0 ; turn off logo lamp\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..7c52887ce4 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1 Carbon 0.4 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: X1-0.4 ====================\n;===== date: 20251031 ==================\n;===== start printer sound ================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A46 B10 L100 C43 D10 M70 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A43 B10 L100 C0 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A41 B10 L100 C0 D10 M100 E41 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E44 F10 N100\nM1006 A49 B10 L100 C0 D10 M100 E49 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A48 B10 L100 C44 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M90 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A46 B10 L100 C43 D10 M60 E39 F10 N100\nM1006 W\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y12 Z0.2 E0.577\n G0 F1200.0 X226 Y12 Z0.2 E0.275\n G0 F1200.0 X226 Y1.5 Z0.2 E0.577\n G0 F1200.0 X220 Y1.5 Z0.2 E0.330\n G0 F1200.0 X220 Y8 Z0.2 E0.358\n G0 F1200.0 X210 Y8 Z0.2 E0.549\n G0 F1200.0 X210 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E11.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E0.772 F1200.0\n G0 X45.0 E0.22 F1200.0\n G0 X35.0 Y6.0 E0.86 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.040\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.020\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.020 K0.040\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.02 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.02}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template time_lapse_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template time_lapse_gcode.json new file mode 100644 index 0000000000..7af804b64f --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle template time_lapse_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1 Carbon 0.4 nozzle template time_lapse_gcode", + "instantiation": "false", + "time_lapse_gcode": ";========Date 20250206========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n{if timelapse_type == 0} ; timelapse without wipe tower\nM971 S11 C10 O0\nM1004 S5 P1 ; external shutter\n{elsif timelapse_type == 1} ; timelapse with wipe tower\nG92 E0\nG1 X65 Y245 F20000 ; move to safe pos\nG17\nG2 Z{layer_z} I0.86 J0.86 P1 F20000\nG1 Y265 F3000\nM400\nM1004 S5 P1 ; external shutter\nM400 P300\nM971 S11 C10 O0\nG92 E0\nG1 X100 F5000\nG1 Y255 F20000\n{endif}\nM623\n; SKIPPABLE_END\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle.json index 3303ece1b0..f208c2e5fd 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.4 nozzle.json @@ -1,227 +1,241 @@ { - "type": "machine", - "name": "Bambu Lab X1 Carbon 0.4 nozzle", - "inherits": "fdm_bbl_3dp_001_common", - "from": "system", - "setting_id": "GM001", - "instantiation": "true", - "nozzle_diameter": [ - "0.4" - ], - "printer_model": "Bambu Lab X1 Carbon", - "printer_variant": "0.4", - "bed_exclude_area": [ - "0x0", - "18x0", - "18x28", - "0x28" - ], - "default_print_profile": "0.20mm Standard @BBL X1C", - "deretraction_speed": [ - "30", - "30" - ], - "enable_long_retraction_when_cut": "2", - "extruder_offset": [ - "0x2" - ], - "fan_direction": "left", - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow" - ], - "long_retractions_when_cut": [ - "0", - "0" - ], - "machine_unload_filament_time": "28", - "machine_max_acceleration_e": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_extruding": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_retracting": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_travel": [ - "9000", - "9000", - "9000", - "9000" - ], - "machine_max_acceleration_x": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_y": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_z": [ - "500", - "200", - "200", - "200" - ], - "machine_max_jerk_e": [ - "2.5", - "2.5", - "2.5", - "2.5" - ], - "machine_max_jerk_x": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_y": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_z": [ - "3", - "3", - "3", - "3" - ], - "machine_max_speed_e": [ - "30", - "30", - "30", - "30" - ], - "machine_max_speed_x": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_y": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_z": [ - "20", - "20", - "20", - "20" - ], - "machine_min_extruding_rate": [ - "0" - ], - "machine_min_travel_rate": [ - "0" - ], - "nozzle_height": "4.2", - "nozzle_type": [ - "hardened_steel", - "hardened_steel" - ], - "nozzle_volume": [ - "107", - "107" - ], - "printer_extruder_id": [ - "1", - "1" - ], - "printer_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "retract_before_wipe": [ - "0%", - "0%" - ], - "retract_length_toolchange": [ - "2", - "2" - ], - "retract_lift_above": [ - "0", - "0" - ], - "retract_lift_below": [ - "249", - "249" - ], - "retraction_length": [ - "0.8", - "0.8" - ], - "retraction_minimum_travel": [ - "1", - "1" - ], - "retraction_speed": [ - "30", - "30" - ], - "retract_restart_extra": [ - "0", - "0" - ], - "retract_restart_extra_toolchange": [ - "0", - "0" - ], - "retract_when_changing_layer": [ - "1", - "1" - ], - "retraction_distances_when_cut": [ - "18", - "18" - ], - "scan_first_layer": "1", - "support_air_filtration": "1", - "wipe_distance": [ - "2", - "2" - ], - "wipe": [ - "1", - "1" - ], - "z_hop": [ - "0.4", - "0.4" - ], - "z_hop_types": [ - "Auto Lift", - "Auto Lift" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1E 0.4 nozzle", - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle" - ], - "machine_start_gcode": ";===== machine: X1-0.4 ====================\n;===== date: 20250909 ==================\n;===== start printer sound ================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A46 B10 L100 C43 D10 M70 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A43 B10 L100 C0 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A41 B10 L100 C0 D10 M100 E41 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E44 F10 N100\nM1006 A49 B10 L100 C0 D10 M100 E49 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A48 B10 L100 C44 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M90 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A46 B10 L100 C43 D10 M60 E39 F10 N100\nM1006 W\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y12 Z0.2 E0.577\n G0 F1200.0 X226 Y12 Z0.2 E0.275\n G0 F1200.0 X226 Y1.5 Z0.2 E0.577\n G0 F1200.0 X220 Y1.5 Z0.2 E0.330\n G0 F1200.0 X220 Y8 Z0.2 E0.358\n G0 F1200.0 X210 Y8 Z0.2 E0.549\n G0 F1200.0 X210 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E11.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E0.772 F1200.0\n G0 X45.0 E0.22 F1200.0\n G0 X35.0 Y6.0 E0.86 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.040\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.020\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.020 K0.040\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.02 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.02}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n", - "machine_end_gcode": ";===== date: 20240528 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos\nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A0 B20 L100 C37 D20 M40 E42 F20 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C46 D10 M80 E46 F10 N80\nM1006 A44 B20 L100 C39 D20 M60 E48 F20 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C39 D10 M60 E39 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C39 D10 M60 E39 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A0 B10 L100 C48 D10 M60 E44 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A49 B20 L100 C44 D20 M100 E41 F20 N100\nM1006 A0 B20 L100 C0 D20 M60 E0 F20 N100\nM1006 A0 B20 L100 C37 D20 M30 E37 F20 N60\nM1006 W\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\nM960 S5 P0 ; turn off logo lamp\n", - "time_lapse_gcode": ";========Date 20250206========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n{if timelapse_type == 0} ; timelapse without wipe tower\nM971 S11 C10 O0\nM1004 S5 P1 ; external shutter\n{elsif timelapse_type == 1} ; timelapse with wipe tower\nG92 E0\nG1 X65 Y245 F20000 ; move to safe pos\nG17\nG2 Z{layer_z} I0.86 J0.86 P1 F20000\nG1 Y265 F3000\nM400\nM1004 S5 P1 ; external shutter\nM400 P300\nM971 S11 C10 O0\nG92 E0\nG1 X100 F5000\nG1 Y255 F20000\n{endif}\nM623\n; SKIPPABLE_END\n", - "change_filament_gcode": ";=X1 20250822=\nM620 S[next_extruder]A\nM204 S9000\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if nozzle_temperature[previous_extruder] > 142 && next_extruder < 255}\nM104 S{nozzle_temperature[previous_extruder]}\n{endif}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E-{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{else}\nM620.11 S0\n{endif}\nM400\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F{flush_volumetric_speeds[previous_extruder]/2.4053*60} T{flush_temperatures[previous_extruder]}\nT[next_extruder]\nM620.1 E F{flush_volumetric_speeds[next_extruder]/2.4053*60} T{flush_temperatures[next_extruder]}\n\n{if next_extruder < 255}\n{if long_retractions_when_cut[previous_extruder]}\nM620.11 S1 I[previous_extruder] E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM628 S1\nG92 E0\nG1 E{retraction_distances_when_cut[previous_extruder]} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nM400\nM629 S1\n{else}\nM620.11 S0\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S{flush_temperatures[next_extruder]}\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{flush_volumetric_speeds[previous_extruder]/2.4053*60} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\n{else}\nG1 E{flush_length_1} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S{nozzle_temperature[next_extruder]}\nG1 E2 F{flush_volumetric_speeds[next_extruder]/2.4053*60} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" + "type": "machine", + "name": "Bambu Lab X1 Carbon 0.4 nozzle", + "inherits": "fdm_bbl_3dp_001_common", + "from": "system", + "setting_id": "GM001", + "instantiation": "true", + "nozzle_diameter": [ + "0.4" + ], + "printer_model": "Bambu Lab X1 Carbon", + "farthest_point_timelapse": "1", + "printer_variant": "0.4", + "bed_exclude_area": [ + "0x0", + "18x0", + "18x28", + "0x28" + ], + "default_print_profile": "0.20mm Standard @BBL X1C", + "deretraction_speed": [ + "30", + "30" + ], + "enable_long_retraction_when_cut": "2", + "extruder_offset": [ + "0x2" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow" + ], + "fan_direction": "left", + "hotend_cooling_rate": [ + "2", + "2" + ], + "hotend_heating_rate": [ + "2", + "2" + ], + "include": [ + "Bambu Lab X1 Carbon 0.4 nozzle template machine_start_gcode", + "Bambu Lab X1 Carbon 0.4 nozzle template machine_end_gcode", + "Bambu Lab X1 Carbon 0.4 nozzle template time_lapse_gcode", + "Bambu Lab X1 Carbon 0.4 nozzle template change_filament_gcode", + "Bambu Lab X1 Carbon 0.4 nozzle template layer_change_gcode" + ], + "long_retractions_when_cut": [ + "0", + "0" + ], + "machine_unload_filament_time": "28", + "machine_max_acceleration_e": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3" + ], + "machine_max_speed_e": [ + "30", + "30", + "30", + "30" + ], + "machine_max_speed_x": [ + "500", + "500", + "500", + "500" + ], + "machine_max_speed_y": [ + "500", + "500", + "500", + "500" + ], + "machine_max_speed_z": [ + "20", + "20", + "20", + "20" + ], + "machine_min_extruding_rate": [ + "0" + ], + "machine_min_travel_rate": [ + "0" + ], + "nozzle_height": "4.2", + "nozzle_volume": [ + "107", + "107" + ], + "nozzle_flush_dataset": [ + "0", + "0" + ], + "printer_extruder_id": [ + "1", + "1" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "retract_before_wipe": [ + "0%", + "0%" + ], + "retract_length_toolchange": [ + "2", + "2" + ], + "retract_lift_above": [ + "0", + "0" + ], + "retract_lift_below": [ + "249", + "249" + ], + "retraction_length": [ + "0.8", + "0.8" + ], + "retraction_minimum_travel": [ + "1", + "1" + ], + "retraction_speed": [ + "30", + "30" + ], + "retract_restart_extra": [ + "0", + "0" + ], + "retract_restart_extra_toolchange": [ + "0", + "0" + ], + "retract_when_changing_layer": [ + "1", + "1" + ], + "retraction_distances_when_cut": [ + "18", + "18" + ], + "scan_first_layer": "1", + "wipe_distance": [ + "2", + "2" + ], + "wipe": [ + "1", + "1" + ], + "z_hop": [ + "0.4", + "0.4" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab H2C 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab A2L 0.4 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.6 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.6 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..99900d3bdb --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.6 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1 Carbon 0.6 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: X1-0.6 ====================\n;===== date: 20251031 ==================\n;===== start printer sound ================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A46 B10 L100 C43 D10 M70 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A43 B10 L100 C0 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A41 B10 L100 C0 D10 M100 E41 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E44 F10 N100\nM1006 A49 B10 L100 C0 D10 M100 E49 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A48 B10 L100 C44 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M90 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A46 B10 L100 C43 D10 M60 E39 F10 N100\nM1006 W\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X231 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y12 Z0.2 E1.039\n G0 F1200.0 X226 Y12 Z0.2 E0.495\n G0 F1200.0 X226 Y1.5 Z0.2 E1.039\n G0 F1200.0 X220 Y1.5 Z0.2 E0.594\n G0 F1200.0 X220 Y8 Z0.2 E0.644\n G0 F1200.0 X210 Y8 Z0.2 E0.988\n G0 F1200.0 X210 Y1.5 Z0.2 E0.642\n\n G0 X48.0 E19.826 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E1.312 F1200.0\n G0 X45.0 E0.374 F1200.0\n G0 X35.0 Y6.0 E1.460 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E16.9 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.030\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.015\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E23.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.015 K0.030\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.015 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.015}\n M623\n\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.6 nozzle.json index 59e54fdc44..f8d2014482 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.6 nozzle.json @@ -1,40 +1,48 @@ { - "type": "machine", - "name": "Bambu Lab X1 Carbon 0.6 nozzle", - "inherits": "Bambu Lab X1 Carbon 0.4 nozzle", - "from": "system", - "setting_id": "GM005", - "instantiation": "true", - "nozzle_diameter": [ - "0.6" - ], - "printer_model": "Bambu Lab X1 Carbon", - "printer_variant": "0.6", - "default_print_profile": "0.30mm Standard @BBL X1C 0.6 nozzle", - "max_layer_height": [ - "0.42" - ], - "min_layer_height": [ - "0.12" - ], - "retraction_length": [ - "1.4", - "1.4" - ], - "retraction_minimum_travel": [ - "3", - "3" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1E 0.6 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle" - ], - "machine_start_gcode": ";===== machine: X1-0.6 ====================\n;===== date: 20250909 ==================\n;===== start printer sound ================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A46 B10 L100 C43 D10 M70 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A43 B10 L100 C0 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A41 B10 L100 C0 D10 M100 E41 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E44 F10 N100\nM1006 A49 B10 L100 C0 D10 M100 E49 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A48 B10 L100 C44 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M90 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A46 B10 L100 C43 D10 M60 E39 F10 N100\nM1006 W\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X231 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y12 Z0.2 E1.039\n G0 F1200.0 X226 Y12 Z0.2 E0.495\n G0 F1200.0 X226 Y1.5 Z0.2 E1.039\n G0 F1200.0 X220 Y1.5 Z0.2 E0.594\n G0 F1200.0 X220 Y8 Z0.2 E0.644\n G0 F1200.0 X210 Y8 Z0.2 E0.988\n G0 F1200.0 X210 Y1.5 Z0.2 E0.642\n\n G0 X48.0 E19.826 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E1.312 F1200.0\n G0 X45.0 E0.374 F1200.0\n G0 X35.0 Y6.0 E1.460 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E16.9 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.030\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.015\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E23.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.015 K0.030\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.015 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.015}\n M623\n\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n" + "type": "machine", + "name": "Bambu Lab X1 Carbon 0.6 nozzle", + "inherits": "Bambu Lab X1 Carbon 0.4 nozzle", + "from": "system", + "setting_id": "GM005", + "instantiation": "true", + "nozzle_diameter": [ + "0.6" + ], + "printer_model": "Bambu Lab X1 Carbon", + "printer_variant": "0.6", + "default_print_profile": "0.30mm Standard @BBL X1C 0.6 nozzle", + "default_filament_profile": [ + "Bambu PLA Basic @BBL X1C 0.6 nozzle" + ], + "include": [ + "Bambu Lab X1 Carbon 0.6 nozzle template machine_start_gcode" + ], + "max_layer_height": [ + "0.42" + ], + "min_layer_height": [ + "0.12" + ], + "retraction_length": [ + "1.4", + "1.4" + ], + "retraction_minimum_travel": [ + "3", + "3" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab A2L 0.6 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.8 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.8 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..b179c1ed00 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.8 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1 Carbon 0.8 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: X1-0.8 ====================\n;===== date: 20251031 ==================\n;===== start printer sound ================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A46 B10 L100 C43 D10 M70 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A43 B10 L100 C0 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A41 B10 L100 C0 D10 M100 E41 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E44 F10 N100\nM1006 A49 B10 L100 C0 D10 M100 E49 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A48 B10 L100 C44 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M90 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A46 B10 L100 C43 D10 M60 E39 F10 N100\nM1006 W\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y11 E1.364 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.300\nG0 X231 E1.160 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y12 Z0.2 E1.154\n G0 F1200.0 X226 Y12 Z0.2 E0.550\n G0 F1200.0 X226 Y1.5 Z0.2 E1.154\n G0 F1200.0 X220 Y1.5 Z0.2 E0.660\n G0 F1200.0 X220 Y8 Z0.2 E0.716\n G0 F1200.0 X210 Y8 Z0.2 E1.098\n G0 F1200.0 X210 Y1.5 Z0.2 E0.714\n\n G0 X48.0 E24.107 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E1.420 F1200.0\n G0 X45.0 E0.404 F1200.0\n G0 X35.0 Y6.0 E1.580 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X110.000 E9.35441 F4800\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.020\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.010\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X129 E14 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.010 K0.020\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.01 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14) *0.01}\n M623\n\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X185.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X190.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X195.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X200.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X205.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X210.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X215.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X220.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X225.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.8 nozzle.json index dd8bb88c52..5112f3979a 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon 0.8 nozzle.json @@ -1,43 +1,48 @@ { - "type": "machine", - "name": "Bambu Lab X1 Carbon 0.8 nozzle", - "inherits": "Bambu Lab X1 Carbon 0.4 nozzle", - "from": "system", - "setting_id": "GM004", - "instantiation": "true", - "nozzle_diameter": [ - "0.8" - ], - "printer_model": "Bambu Lab X1 Carbon", - "printer_variant": "0.8", - "default_filament_profile": [ - "Bambu PLA Basic @BBL X1C 0.8 nozzle" - ], - "default_print_profile": "0.40mm Standard @BBL X1C 0.8 nozzle", - "max_layer_height": [ - "0.56" - ], - "min_layer_height": [ - "0.16" - ], - "retract_length_toolchange": [ - "3", - "3" - ], - "retraction_length": [ - "3", - "3" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab P1P 0.8 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1E 0.8 nozzle", - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab H2D 0.8 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle", - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "machine_start_gcode": ";===== machine: X1-0.8 ====================\n;===== date: 20250909 ==================\n;===== start printer sound ================\nM17\nM400 S1\nM1006 S1\nM1006 A0 B10 L100 C37 D10 M60 E37 F10 N60\nM1006 A0 B10 L100 C41 D10 M60 E41 F10 N60\nM1006 A0 B10 L100 C44 D10 M60 E44 F10 N60\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N60\nM1006 A46 B10 L100 C43 D10 M70 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A43 B10 L100 C0 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A41 B10 L100 C0 D10 M100 E41 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E44 F10 N100\nM1006 A49 B10 L100 C0 D10 M100 E49 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A48 B10 L100 C44 D10 M60 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M90 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M60 E0 F10 N100\nM1006 A46 B10 L100 C43 D10 M60 E39 F10 N100\nM1006 W\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y11 E1.364 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.300\nG0 X231 E1.160 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y12 Z0.2 E1.154\n G0 F1200.0 X226 Y12 Z0.2 E0.550\n G0 F1200.0 X226 Y1.5 Z0.2 E1.154\n G0 F1200.0 X220 Y1.5 Z0.2 E0.660\n G0 F1200.0 X220 Y8 Z0.2 E0.716\n G0 F1200.0 X210 Y8 Z0.2 E1.098\n G0 F1200.0 X210 Y1.5 Z0.2 E0.714\n\n G0 X48.0 E24.107 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E1.420 F1200.0\n G0 X45.0 E0.404 F1200.0\n G0 X35.0 Y6.0 E1.580 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X110.000 E9.35441 F4800\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.020\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.010\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X129 E14 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.010 K0.020\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.01 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14) *0.01}\n M623\n\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X185.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X190.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X195.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X200.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X205.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X210.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X215.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X220.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X225.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n" + "type": "machine", + "name": "Bambu Lab X1 Carbon 0.8 nozzle", + "inherits": "Bambu Lab X1 Carbon 0.4 nozzle", + "from": "system", + "setting_id": "GM004", + "instantiation": "true", + "nozzle_diameter": [ + "0.8" + ], + "printer_model": "Bambu Lab X1 Carbon", + "printer_variant": "0.8", + "default_filament_profile": [ + "Bambu PLA Basic @BBL X1C 0.8 nozzle" + ], + "default_print_profile": "0.40mm Standard @BBL X1C 0.8 nozzle", + "include": [ + "Bambu Lab X1 Carbon 0.8 nozzle template machine_start_gcode" + ], + "max_layer_height": [ + "0.56" + ], + "min_layer_height": [ + "0.16" + ], + "retract_length_toolchange": [ + "3", + "3" + ], + "retraction_length": [ + "3", + "3" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab H2C 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon.json b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon.json index a3a89c14de..4fbc650872 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1 Carbon.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1 Carbon.json @@ -1,13 +1,13 @@ { - "type": "machine_model", - "name": "Bambu Lab X1 Carbon", - "nozzle_diameter": "0.4;0.2;0.6;0.8", - "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1 Carbon.json", - "bed_model": "bbl-3dp-X1.stl", - "bed_texture": "bbl-3dp-logo.svg", - "default_bed_type": "Textured PEI Plate", - "family": "BBL-3DP", - "machine_tech": "FFF", - "model_id": "BL-P001", - "default_materials": "Bambu PLA Matte @BBL X1C;Bambu PLA Basic @BBL X1C;Bambu PLA-CF @BBL X1C;Bambu PETG-CF @BBL X1C;Bambu ABS @BBL X1C;Bambu PC @BBL X1C;Bambu TPU 95A @BBL X1C;Bambu PAHT-CF @BBL X1C;Bambu Support For PLA @BBL X1C;Bambu Support For PA/PET @BBL X1C;Generic PLA;Generic PLA High Speed @BBL X1C;Bambu PETG HF @BBL X1C;Bambu PLA Basic @BBL X1C 0.2 nozzle" -} + "type": "machine_model", + "name": "Bambu Lab X1 Carbon", + "nozzle_diameter": "0.4;0.2;0.6;0.8", + "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1 Carbon.json", + "bed_model": "bbl-3dp-X1.stl", + "bed_texture": "bbl-3dp-logo.svg", + "default_bed_type": "Textured PEI Plate", + "family": "BBL-3DP", + "machine_tech": "FFF", + "model_id": "BL-P001", + "default_materials": "Bambu PLA Matte @BBL X1C;Bambu PLA Basic @BBL X1C;Bambu PLA-CF @BBL X1C;Bambu PETG-CF @BBL X1C;Bambu ABS @BBL X1C;Bambu PC @BBL X1C;Bambu TPU 95A @BBL X1C;Bambu PAHT-CF @BBL X1C;Bambu Support For PLA @BBL X1C;Bambu Support For PA/PET @BBL X1C;Generic PLA;Generic PLA High Speed @BBL X1C;Bambu PETG HF @BBL X1C;Bambu PLA Pure @BBL X1C;Bambu PLA Basic @BBL X1C 0.2 nozzle" +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1.json b/resources/profiles/BBL/machine/Bambu Lab X1.json index 23a90ded95..607302b5f8 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1.json @@ -1,13 +1,13 @@ { - "type": "machine_model", - "name": "Bambu Lab X1", - "nozzle_diameter": "0.4;0.2;0.6;0.8", - "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", - "bed_model": "bbl-3dp-X1.stl", - "bed_texture": "bbl-3dp-logo.svg", - "default_bed_type": "Textured PEI Plate", - "family": "BBL-3DP", - "machine_tech": "FFF", - "model_id": "BL-P002", - "default_materials": "Bambu PLA Matte @BBL X1;Bambu PLA Basic @BBL X1;Bambu PLA-CF @BBL X1C;Bambu PETG-CF @BBL X1C;Bambu ABS @BBL X1C;Bambu PLA Silk @BBL X1;Bambu PAHT-CF @BBL X1C;Bambu Support For PLA @BBL X1C;Bambu Support For PA/PET @BBL X1C;Generic PLA;Generic PLA High Speed @BBL X1C;Generic PETG;Bambu PETG HF @BBL X1C;Bambu PLA Basic @BBL X1C 0.2 nozzle" -} + "type": "machine_model", + "name": "Bambu Lab X1", + "nozzle_diameter": "0.4;0.2;0.6;0.8", + "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1.json", + "bed_model": "bbl-3dp-X1.stl", + "bed_texture": "bbl-3dp-logo.svg", + "default_bed_type": "Textured PEI Plate", + "family": "BBL-3DP", + "machine_tech": "FFF", + "model_id": "BL-P002", + "default_materials": "Bambu PLA Matte @BBL X1;Bambu PLA Basic @BBL X1;Bambu PLA-CF @BBL X1C;Bambu PETG-CF @BBL X1C;Bambu ABS @BBL X1C;Bambu PLA Silk @BBL X1;Bambu PAHT-CF @BBL X1C;Bambu Support For PLA @BBL X1C;Bambu Support For PA/PET @BBL X1C;Generic PLA;Generic PLA High Speed @BBL X1C;Generic PETG;Bambu PETG HF @BBL X1C;Bambu PLA Pure @BBL X1C;Bambu PLA Basic @BBL X1C 0.2 nozzle" +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X1E 0.2 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1E 0.2 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..c3a252568e --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1E 0.2 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1E 0.2 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: X1E-0.2 =========================\n;===== date: 20251031 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;==== if Chamber Cooling is necessary ==== \n\n{if (filament_type[initial_no_support_extruder]==\"PLA\") || (filament_type[initial_no_support_extruder]==\"PETG\") || (filament_type[initial_no_support_extruder]==\"TPU\") || (filament_type[initial_no_support_extruder]==\"PVA\") || (filament_type[initial_no_support_extruder]==\"PLA-CF\") || (filament_type[initial_no_support_extruder]==\"PETG-CF\")}\nM1002 gcode_claim_action : 29\nG28\nG90\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nG1 Z75\nM140 S0 ; stop heatbed from heating\nM106 P2 S255 ; open auxiliary fan for cooling\nM106 P3 S255 ; open chamber fan for cooling\nM191 S0 ; wait for chamber temp\nM106 P3 S0 ; reset chamber fan cmd\nM106 P2 S0; reset auxiliary fan cmd\n{endif}\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S290 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n\n;===== set chamber temperature ==========\n{if (overall_chamber_temperature >= 40)}\nM106 P2 S255 ; open big fan to help heating\nM141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n{endif}\n\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== noozle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y12 Z0.2 E0.577\n G0 F1200.0 X226 Y12 Z0.2 E0.275\n G0 F1200.0 X226 Y1.5 Z0.2 E0.577\n G0 F1200.0 X220 Y1.5 Z0.2 E0.330\n G0 F1200.0 X220 Y8 Z0.2 E0.358\n G0 F1200.0 X210 Y8 Z0.2 E0.549\n G0 F1200.0 X210 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E11.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E0.772 F1200.0\n G0 X45.0 E0.22 F1200.0\n G0 X35.0 Y6.0 E0.86 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n\t{if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.160\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.080\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.080 K0.160\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.08 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.08}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;===== wait chamber temperature reaching the reference value =======\n{if (overall_chamber_temperature >= 40)}\nM104 S140\nM191 S[overall_chamber_temperature] ; wait for chamber temp\nM106 P2 S0 ; reset chamber fan cmd\nM109 S{nozzle_temperature[initial_no_support_extruder]}\n{endif}\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1E 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1E 0.2 nozzle.json index b892dc36e3..5dfc7925b9 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1E 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1E 0.2 nozzle.json @@ -1,218 +1,44 @@ { - "type": "machine", - "name": "Bambu Lab X1E 0.2 nozzle", - "inherits": "Bambu Lab X1E 0.4 nozzle", - "from": "system", - "setting_id": "GM025", - "instantiation": "true", - "nozzle_diameter": [ - "0.2" - ], - "printer_model": "Bambu Lab X1E", - "printer_variant": "0.2", - "default_filament_profile": [ - "Bambu PLA Basic @BBL X1C 0.2 nozzle" - ], - "default_print_profile": "0.10mm Standard @BBL X1C 0.2 nozzle", - "deretraction_speed": [ - "30", - "30" - ], - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow" - ], - "long_retractions_when_cut": [ - "0", - "0" - ], - "max_layer_height": [ - "0.14" - ], - "min_layer_height": [ - "0.04" - ], - "machine_max_acceleration_e": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_extruding": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_retracting": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_travel": [ - "9000", - "9000", - "9000", - "9000" - ], - "machine_max_acceleration_x": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_y": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_z": [ - "500", - "200", - "200", - "200" - ], - "machine_max_jerk_e": [ - "2.5", - "2.5", - "2.5", - "2.5" - ], - "machine_max_jerk_x": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_y": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_z": [ - "3", - "3", - "3", - "3" - ], - "machine_max_speed_e": [ - "30", - "30", - "30", - "30" - ], - "machine_max_speed_x": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_y": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_z": [ - "20", - "20", - "20", - "20" - ], - "machine_min_extruding_rate": [ - "0" - ], - "machine_min_travel_rate": [ - "0" - ], - "nozzle_type": [ - "stainless_steel", - "stainless_steel" - ], - "nozzle_volume": [ - "107", - "107" - ], - "printer_extruder_id": [ - "1", - "1" - ], - "printer_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "retraction_length": [ - "0.4", - "0.4" - ], - "retract_before_wipe": [ - "0%", - "0%" - ], - "retract_length_toolchange": [ - "2", - "2" - ], - "retract_lift_above": [ - "0", - "0" - ], - "retract_lift_below": [ - "249", - "249" - ], - "retraction_minimum_travel": [ - "1", - "1" - ], - "retraction_speed": [ - "30", - "30" - ], - "retract_restart_extra": [ - "0", - "0" - ], - "retract_restart_extra_toolchange": [ - "0", - "0" - ], - "retract_when_changing_layer": [ - "1", - "1" - ], - "retraction_distances_when_cut": [ - "18", - "18" - ], - "wipe_distance": [ - "2", - "2" - ], - "wipe": [ - "1", - "1" - ], - "z_hop": [ - "0.4", - "0.4" - ], - "z_hop_types": [ - "Auto Lift", - "Auto Lift" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.2 nozzle", - "Bambu Lab P1P 0.2 nozzle", - "Bambu Lab X1 0.2 nozzle", - "Bambu Lab X1 Carbon 0.2 nozzle", - "Bambu Lab A1 0.2 nozzle", - "Bambu Lab H2D 0.2 nozzle", - "Bambu Lab H2D Pro 0.2 nozzle", - "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle" - ], - "machine_start_gcode": ";===== machine: X1E-0.2 =========================\n;===== date: 20250909 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;==== if Chamber Cooling is necessary ==== \n\n{if (filament_type[initial_no_support_extruder]==\"PLA\") || (filament_type[initial_no_support_extruder]==\"PETG\") || (filament_type[initial_no_support_extruder]==\"TPU\") || (filament_type[initial_no_support_extruder]==\"PVA\") || (filament_type[initial_no_support_extruder]==\"PLA-CF\") || (filament_type[initial_no_support_extruder]==\"PETG-CF\")}\nM1002 gcode_claim_action : 29\nG28\nG90\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nG1 Z75\nM140 S0 ; stop heatbed from heating\nM106 P2 S255 ; open auxiliary fan for cooling\nM106 P3 S255 ; open chamber fan for cooling\nM191 S0 ; wait for chamber temp\nM106 P3 S0 ; reset chamber fan cmd\nM106 P2 S0; reset auxiliary fan cmd\n{endif}\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S290 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n\n;===== set chamber temperature ==========\n{if (overall_chamber_temperature >= 40)}\nM106 P2 S255 ; open big fan to help heating\nM141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n{endif}\n\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== noozle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y12 Z0.2 E0.577\n G0 F1200.0 X226 Y12 Z0.2 E0.275\n G0 F1200.0 X226 Y1.5 Z0.2 E0.577\n G0 F1200.0 X220 Y1.5 Z0.2 E0.330\n G0 F1200.0 X220 Y8 Z0.2 E0.358\n G0 F1200.0 X210 Y8 Z0.2 E0.549\n G0 F1200.0 X210 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E11.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E0.772 F1200.0\n G0 X45.0 E0.22 F1200.0\n G0 X35.0 Y6.0 E0.86 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n\t{if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.160\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.080\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.080 K0.160\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.08 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.08}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;===== wait chamber temperature reaching the reference value =======\n{if (overall_chamber_temperature >= 40)}\nM104 S140\nM191 S[overall_chamber_temperature] ; wait for chamber temp\nM106 P2 S0 ; reset chamber fan cmd\nM109 S{nozzle_temperature[initial_no_support_extruder]}\n{endif}\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4\n" + "type": "machine", + "name": "Bambu Lab X1E 0.2 nozzle", + "inherits": "Bambu Lab X1E 0.4 nozzle", + "from": "system", + "setting_id": "GM025", + "instantiation": "true", + "nozzle_diameter": [ + "0.2" + ], + "printer_model": "Bambu Lab X1E", + "printer_variant": "0.2", + "default_filament_profile": [ + "Bambu PLA Basic @BBL X1C 0.2 nozzle" + ], + "default_print_profile": "0.10mm Standard @BBL X1C 0.2 nozzle", + "include": [ + "Bambu Lab X1E 0.2 nozzle template machine_start_gcode" + ], + "max_layer_height": [ + "0.14" + ], + "min_layer_height": [ + "0.04" + ], + "retraction_length": [ + "0.4", + "0.4" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.2 nozzle", + "Bambu Lab P1P 0.2 nozzle", + "Bambu Lab X1 0.2 nozzle", + "Bambu Lab X1 Carbon 0.2 nozzle", + "Bambu Lab A1 0.2 nozzle", + "Bambu Lab H2D 0.2 nozzle", + "Bambu Lab H2D Pro 0.2 nozzle", + "Bambu Lab H2S 0.2 nozzle", + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab H2C 0.2 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab A2L 0.2 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template change_filament_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template change_filament_gcode.json new file mode 100644 index 0000000000..e91ec6e911 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template change_filament_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1E 0.4 nozzle template change_filament_gcode", + "instantiation": "false", + "change_filament_gcode": ";=X1E 20251031=\nM620 S[next_extruder]A\nM204 S9000\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if old_filament_temp > 142 && next_extruder < 255}\nM104 S[old_filament_temp]\n{endif}\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\n{if long_retraction_when_cut && retraction_distance_when_cut > 2}\nG1 E-[retraction_distance_when_cut] F200\nM400\n{endif}\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F{flush_volumetric_speeds[previous_extruder]/2.4053*60} T{flush_temperatures[previous_extruder]}\nT[next_extruder]\nM620.1 E F{flush_volumetric_speeds[next_extruder]/2.4053*60} T{flush_temperatures[next_extruder]}\n\n{if next_extruder < 255}\nM400\n{if long_retraction_when_cut && retraction_distance_when_cut > 2}\nG1 E{retraction_distance_when_cut - 2} F200\nG1 E2 F20\nM400\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S{flush_temperatures[next_extruder]}\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{flush_volumetric_speeds[previous_extruder]/2.4053*60} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\n{else}\nG1 E{flush_length_1} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S[new_filament_temp]\nG1 E2 F{flush_volumetric_speeds[next_extruder]/2.4053*60} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template layer_change_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template layer_change_gcode.json new file mode 100644 index 0000000000..5626f5737c --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template layer_change_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1E 0.4 nozzle template layer_change_gcode", + "instantiation": "false", + "layer_change_gcode": "; layer num/total_layer_count: {layer_num+1}/[total_layer_count]\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template machine_end_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template machine_end_gcode.json new file mode 100644 index 0000000000..fd577a55f6 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template machine_end_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1E 0.4 nozzle template machine_end_gcode", + "instantiation": "false", + "machine_end_gcode": ";===== date: 20240402 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos \nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM141 S0 ; turn off chamber \nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\nM960 S5 P0 ; turn off logo lamp\n\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..e38e9ff110 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1E 0.4 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: X1E-0.4 =========================\n;===== date: 20251031 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;==== if Chamber Cooling is necessary ====\n\n{if (filament_type[initial_no_support_extruder]==\"PLA\") || (filament_type[initial_no_support_extruder]==\"PETG\") || (filament_type[initial_no_support_extruder]==\"TPU\") || (filament_type[initial_no_support_extruder]==\"PVA\") || (filament_type[initial_no_support_extruder]==\"PLA-CF\") || (filament_type[initial_no_support_extruder]==\"PETG-CF\")}\nM1002 gcode_claim_action : 29\nG28\nG90\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nG1 Z75\nM140 S0 ; stop heatbed from heating\nM106 P2 S255 ; open auxiliary fan for cooling\nM106 P3 S255 ; open chamber fan for cooling\nM191 S0 ; wait for chamber temp\nM106 P3 S0 ; reset chamber fan cmd\nM106 P2 S0; reset auxiliary fan cmd\n{endif}\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S290 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n\n;===== set chamber temperature ==========\n{if (overall_chamber_temperature >= 40)}\nM106 P2 S255 ; open big fan to help heating\nM141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n{endif}\n\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== noozle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y12 Z0.2 E0.577\n G0 F1200.0 X226 Y12 Z0.2 E0.275\n G0 F1200.0 X226 Y1.5 Z0.2 E0.577\n G0 F1200.0 X220 Y1.5 Z0.2 E0.330\n G0 F1200.0 X220 Y8 Z0.2 E0.358\n G0 F1200.0 X210 Y8 Z0.2 E0.549\n G0 F1200.0 X210 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E11.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E0.772 F1200.0\n G0 X45.0 E0.22 F1200.0\n G0 X35.0 Y6.0 E0.86 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.040\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.020\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.020 K0.040\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.02 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.02}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;===== wait chamber temperature reaching the reference value =======\n{if (overall_chamber_temperature >= 40)}\nM104 S140\nM191 S[overall_chamber_temperature] ; wait for chamber temp\nM106 P2 S0 ; reset chamber fan cmd\nM109 S{nozzle_temperature[initial_no_support_extruder]}\n{endif}\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template time_lapse_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template time_lapse_gcode.json new file mode 100644 index 0000000000..7bd08b5cae --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle template time_lapse_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1E 0.4 nozzle template time_lapse_gcode", + "instantiation": "false", + "time_lapse_gcode": ";========Date 20250206========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n{if timelapse_type == 0} ; timelapse without wipe tower\nM971 S11 C10 O0\nM1004 S5 P1 ; external shutter\n{elsif timelapse_type == 1} ; timelapse with wipe tower\nG92 E0\nG1 X65 Y245 F20000 ; move to safe pos\nG17\nG2 Z{layer_z} I0.86 J0.86 P1 F20000\nG1 Y265 F3000\nM400\nM1004 S5 P1 ; external shutter\nM400 P300\nM971 S11 C10 O0\nG92 E0\nG1 X100 F5000\nG1 Y255 F20000\n{endif}\nM623\n; SKIPPABLE_END" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle.json index 4b2fe3c755..5171880c21 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1E 0.4 nozzle.json @@ -1,228 +1,243 @@ { - "type": "machine", - "name": "Bambu Lab X1E 0.4 nozzle", - "inherits": "fdm_bbl_3dp_001_common", - "from": "system", - "setting_id": "GM026", - "instantiation": "true", - "nozzle_diameter": [ - "0.4" - ], - "printer_model": "Bambu Lab X1E", - "printer_variant": "0.4", - "bed_exclude_area": [ - "0x0", - "18x0", - "18x28", - "0x28" - ], - "default_print_profile": "0.20mm Standard @BBL X1C", - "deretraction_speed": [ - "30", - "30" - ], - "enable_long_retraction_when_cut": "1", - "extruder_offset": [ - "0x2" - ], - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow" - ], - "fan_direction": "left", - "long_retractions_when_cut": [ - "0", - "0" - ], - "machine_unload_filament_time": "28", - "machine_max_acceleration_e": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_extruding": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_retracting": [ - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_travel": [ - "9000", - "9000", - "9000", - "9000" - ], - "machine_max_acceleration_x": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_y": [ - "20000", - "20000", - "20000", - "20000" - ], - "machine_max_acceleration_z": [ - "500", - "200", - "200", - "200" - ], - "machine_max_jerk_e": [ - "2.5", - "2.5", - "2.5", - "2.5" - ], - "machine_max_jerk_x": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_y": [ - "9", - "9", - "9", - "9" - ], - "machine_max_jerk_z": [ - "3", - "3", - "3", - "3" - ], - "machine_max_speed_e": [ - "30", - "30", - "30", - "30" - ], - "machine_max_speed_x": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_y": [ - "500", - "200", - "200", - "200" - ], - "machine_max_speed_z": [ - "20", - "20", - "20", - "20" - ], - "machine_min_extruding_rate": [ - "0" - ], - "machine_min_travel_rate": [ - "0" - ], - "nozzle_height": "4.2", - "nozzle_type": [ - "hardened_steel", - "hardened_steel" - ], - "nozzle_volume": [ - "107", - "107" - ], - "printer_extruder_id": [ - "1", - "1" - ], - "printer_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], - "retract_before_wipe": [ - "0%", - "0%" - ], - "retract_length_toolchange": [ - "2", - "2" - ], - "retract_lift_above": [ - "0", - "0" - ], - "retract_lift_below": [ - "249", - "249" - ], - "retraction_length": [ - "0.8", - "0.8" - ], - "retraction_minimum_travel": [ - "1", - "1" - ], - "retraction_speed": [ - "30", - "30" - ], - "retract_restart_extra": [ - "0", - "0" - ], - "retract_restart_extra_toolchange": [ - "0", - "0" - ], - "retract_when_changing_layer": [ - "1", - "1" - ], - "retraction_distances_when_cut": [ - "18", - "18" - ], - "scan_first_layer": "1", - "support_air_filtration": "1", - "support_chamber_temp_control": "1", - "wipe_distance": [ - "2", - "2" - ], - "wipe": [ - "1", - "1" - ], - "z_hop": [ - "0.4", - "0.4" - ], - "z_hop_types": [ - "Auto Lift", - "Auto Lift" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.4 nozzle", - "Bambu Lab P1P 0.4 nozzle", - "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle" - ], - "machine_start_gcode": ";===== machine: X1E-0.4 =========================\n;===== date: 20250909 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;==== if Chamber Cooling is necessary ====\n\n{if (filament_type[initial_no_support_extruder]==\"PLA\") || (filament_type[initial_no_support_extruder]==\"PETG\") || (filament_type[initial_no_support_extruder]==\"TPU\") || (filament_type[initial_no_support_extruder]==\"PVA\") || (filament_type[initial_no_support_extruder]==\"PLA-CF\") || (filament_type[initial_no_support_extruder]==\"PETG-CF\")}\nM1002 gcode_claim_action : 29\nG28\nG90\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nG1 Z75\nM140 S0 ; stop heatbed from heating\nM106 P2 S255 ; open auxiliary fan for cooling\nM106 P3 S255 ; open chamber fan for cooling\nM191 S0 ; wait for chamber temp\nM106 P3 S0 ; reset chamber fan cmd\nM106 P2 S0; reset auxiliary fan cmd\n{endif}\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S290 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n\n;===== set chamber temperature ==========\n{if (overall_chamber_temperature >= 40)}\nM106 P2 S255 ; open big fan to help heating\nM141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n{endif}\n\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== noozle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y11 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y12 Z0.2 E0.577\n G0 F1200.0 X226 Y12 Z0.2 E0.275\n G0 F1200.0 X226 Y1.5 Z0.2 E0.577\n G0 F1200.0 X220 Y1.5 Z0.2 E0.330\n G0 F1200.0 X220 Y8 Z0.2 E0.358\n G0 F1200.0 X210 Y8 Z0.2 E0.549\n G0 F1200.0 X210 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E11.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E0.772 F1200.0\n G0 X45.0 E0.22 F1200.0\n G0 X35.0 Y6.0 E0.86 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.040\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.020\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.020 K0.040\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.02 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.02}\n M623\n\n G1 X140.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.31181 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;===== wait chamber temperature reaching the reference value =======\n{if (overall_chamber_temperature >= 40)}\nM104 S140\nM191 S[overall_chamber_temperature] ; wait for chamber temp\nM106 P2 S0 ; reset chamber fan cmd\nM109 S{nozzle_temperature[initial_no_support_extruder]}\n{endif}\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG1 Z0.2\nG0 X239 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y12 E0.7 F{outer_wall_volumetric_speed/(0.3*0.5)/4* 60}\n", - "machine_end_gcode": ";===== date: 20240402 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{max_layer_z + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos \nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\nM141 S0 ; turn off chamber \nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of \"timelapse_record_flag\"\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (max_layer_z + 100.0) < 250}\n G1 Z{max_layer_z + 100.0} F600\n G1 Z{max_layer_z +98.0}\n{else}\n G1 Z250 F600\n G1 Z248\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\nM960 S5 P0 ; turn off logo lamp\n\n", - "time_lapse_gcode": ";========Date 20250206========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firmware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n{if timelapse_type == 0} ; timelapse without wipe tower\nM971 S11 C10 O0\nM1004 S5 P1 ; external shutter\n{elsif timelapse_type == 1} ; timelapse with wipe tower\nG92 E0\nG1 X65 Y245 F20000 ; move to safe pos\nG17\nG2 Z{layer_z} I0.86 J0.86 P1 F20000\nG1 Y265 F3000\nM400\nM1004 S5 P1 ; external shutter\nM400 P300\nM971 S11 C10 O0\nG92 E0\nG1 X100 F5000\nG1 Y255 F20000\n{endif}\nM623\n; SKIPPABLE_END", - "change_filament_gcode": ";=X1E 20250822=\nM620 S[next_extruder]A\nM204 S9000\nG1 Z{max_layer_z + 3.0} F1200\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n{if nozzle_temperature[previous_extruder] > 142 && next_extruder < 255}\nM104 S{nozzle_temperature[previous_extruder]}\n{endif}\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\n{if long_retraction_when_cut && retraction_distance_when_cut > 2}\nG1 E-[retraction_distance_when_cut] F200\nM400\n{endif}\nG1 X20 Y50 F21000\nG1 Y-3\n{if toolchange_count == 2}\n; get travel path for change filament\nM620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\nM620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\nM620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\nM620.1 E F{flush_volumetric_speeds[previous_extruder]/2.4053*60} T{flush_temperatures[previous_extruder]}\nT[next_extruder]\nM620.1 E F{flush_volumetric_speeds[next_extruder]/2.4053*60} T{flush_temperatures[next_extruder]}\n\n{if next_extruder < 255}\nM400\n{if long_retraction_when_cut && retraction_distance_when_cut > 2}\nG1 E{retraction_distance_when_cut - 2} F200\nG1 E2 F20\nM400\n{endif}\nG92 E0\n{if flush_length_1 > 1}\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\n{if filament_type[next_extruder] == \"PETG\"}\nM109 S260\n{elsif filament_type[next_extruder] == \"PVA\"}\nM109 S210\n{else}\nM109 S{flush_temperatures[next_extruder]}\n{endif}\n{if flush_length_1 > 23.7}\nG1 E23.7 F{flush_volumetric_speeds[previous_extruder]/2.4053*60} ; do not need pulsatile flushing for start part\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{(flush_length_1 - 23.7) * 0.02} F50\nG1 E{(flush_length_1 - 23.7) * 0.23} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\n{else}\nG1 E{flush_length_1} F{flush_volumetric_speeds[previous_extruder]/2.4053*60}\n{endif}\n; FLUSH_END\nG1 E-[old_retract_length_toolchange] F1800\nG1 E[old_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_2 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\nG1 E{flush_length_2 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_2 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_3 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\nG1 E{flush_length_3 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_3 * 0.02} F50\n; FLUSH_END\nG1 E-[new_retract_length_toolchange] F1800\nG1 E[new_retract_length_toolchange] F300\n{endif}\n\n{if flush_length_4 > 1}\n\nG91\nG1 X3 F12000; move aside to extrude\nG90\nM83\n\n; FLUSH_START\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\nG1 E{flush_length_4 * 0.18} F{flush_volumetric_speeds[next_extruder]/2.4053*60}\nG1 E{flush_length_4 * 0.02} F50\n; FLUSH_END\n{endif}\n; FLUSH_START\nM400\nM109 S{nozzle_temperature[next_extruder]}\nG1 E2 F{flush_volumetric_speeds[next_extruder]/2.4053*60} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\nM400\nG92 E0\nG1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\nG1 Z{max_layer_z + 3.0} F3000\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[default_acceleration]\n{endif}\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\nM621 S[next_extruder]A\n" + "type": "machine", + "name": "Bambu Lab X1E 0.4 nozzle", + "inherits": "fdm_bbl_3dp_001_common", + "from": "system", + "setting_id": "GM026", + "instantiation": "true", + "nozzle_diameter": [ + "0.4" + ], + "printer_model": "Bambu Lab X1E", + "farthest_point_timelapse": "1", + "printer_variant": "0.4", + "bed_exclude_area": [ + "0x0", + "18x0", + "18x28", + "0x28" + ], + "default_print_profile": "0.20mm Standard @BBL X1C", + "deretraction_speed": [ + "30", + "30" + ], + "enable_long_retraction_when_cut": "1", + "extruder_offset": [ + "0x2" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow" + ], + "fan_direction": "left", + "hotend_cooling_rate": [ + "2", + "2" + ], + "hotend_heating_rate": [ + "2", + "2" + ], + "include": [ + "Bambu Lab X1E 0.4 nozzle template machine_start_gcode", + "Bambu Lab X1E 0.4 nozzle template machine_end_gcode", + "Bambu Lab X1E 0.4 nozzle template time_lapse_gcode", + "Bambu Lab X1E 0.4 nozzle template change_filament_gcode", + "Bambu Lab X1E 0.4 nozzle template layer_change_gcode" + ], + "long_retractions_when_cut": [ + "0", + "0" + ], + "machine_unload_filament_time": "28", + "machine_max_acceleration_e": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3" + ], + "machine_max_speed_e": [ + "30", + "30", + "30", + "30" + ], + "machine_max_speed_x": [ + "500", + "500", + "500", + "500" + ], + "machine_max_speed_y": [ + "500", + "500", + "500", + "500" + ], + "machine_max_speed_z": [ + "20", + "20", + "20", + "20" + ], + "machine_min_extruding_rate": [ + "0" + ], + "machine_min_travel_rate": [ + "0" + ], + "nozzle_height": "4.2", + "nozzle_volume": [ + "107", + "107" + ], + "nozzle_flush_dataset": [ + "0", + "0" + ], + "printer_extruder_id": [ + "1", + "1" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "retract_before_wipe": [ + "0%", + "0%" + ], + "retract_length_toolchange": [ + "2", + "2" + ], + "retract_lift_above": [ + "0", + "0" + ], + "retract_lift_below": [ + "249", + "249" + ], + "retraction_length": [ + "0.8", + "0.8" + ], + "retraction_minimum_travel": [ + "1", + "1" + ], + "retraction_speed": [ + "30", + "30" + ], + "retract_restart_extra": [ + "0", + "0" + ], + "retract_restart_extra_toolchange": [ + "0", + "0" + ], + "retract_when_changing_layer": [ + "1", + "1" + ], + "retraction_distances_when_cut": [ + "18", + "18" + ], + "scan_first_layer": "1", + "support_air_filtration": "1", + "support_chamber_temp_control": "1", + "wipe_distance": [ + "2", + "2" + ], + "wipe": [ + "1", + "1" + ], + "z_hop": [ + "0.4", + "0.4" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab H2C 0.4 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab A2L 0.4 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab X1E 0.6 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1E 0.6 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..e1d67f8cb8 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1E 0.6 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1E 0.6 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: X1E-0.6 =========================\n;===== date: 20251031 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;==== if Chamber Cooling is necessary ==== \n\n{if (filament_type[initial_no_support_extruder]==\"PLA\") || (filament_type[initial_no_support_extruder]==\"PETG\") || (filament_type[initial_no_support_extruder]==\"TPU\") || (filament_type[initial_no_support_extruder]==\"PVA\") || (filament_type[initial_no_support_extruder]==\"PLA-CF\") || (filament_type[initial_no_support_extruder]==\"PETG-CF\")}\nM1002 gcode_claim_action : 29\nG28\nG90\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nG1 Z75\nM140 S0 ; stop heatbed from heating\nM106 P2 S255 ; open auxiliary fan for cooling\nM106 P3 S255 ; open chamber fan for cooling\nM191 S0 ; wait for chamber temp\nM106 P3 S0 ; reset chamber fan cmd\nM106 P2 S0; reset auxiliary fan cmd\n{endif}\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S290 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n\n;===== set chamber temperature ==========\n{if (overall_chamber_temperature >= 40)}\nM106 P2 S255 ; open big fan to help heating\nM141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n{endif}\n\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== noozle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X231 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y12 Z0.2 E1.039\n G0 F1200.0 X226 Y12 Z0.2 E0.495\n G0 F1200.0 X226 Y1.5 Z0.2 E1.039\n G0 F1200.0 X220 Y1.5 Z0.2 E0.594\n G0 F1200.0 X220 Y8 Z0.2 E0.644\n G0 F1200.0 X210 Y8 Z0.2 E0.988\n G0 F1200.0 X210 Y1.5 Z0.2 E0.642\n\n G0 X48.0 E19.826 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E1.312 F1200.0\n G0 X45.0 E0.374 F1200.0\n G0 X35.0 Y6.0 E1.460 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E16.9 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.030\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.015\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E23.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.015 K0.030\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.015 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.015}\n M623\n\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;===== wait chamber temperature reaching the reference value =======\n{if (overall_chamber_temperature >= 40)}\nM104 S140\nM191 S[overall_chamber_temperature] ; wait for chamber temp\nM106 P2 S0 ; reset chamber fan cmd\nM109 S{nozzle_temperature[initial_no_support_extruder]}\n{endif}\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1E 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1E 0.6 nozzle.json index 267ab51466..2f45cee711 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1E 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1E 0.6 nozzle.json @@ -1,40 +1,45 @@ { - "type": "machine", - "name": "Bambu Lab X1E 0.6 nozzle", - "inherits": "Bambu Lab X1E 0.4 nozzle", - "from": "system", - "setting_id": "GM027", - "instantiation": "true", - "nozzle_diameter": [ - "0.6" - ], - "printer_model": "Bambu Lab X1E", - "printer_variant": "0.6", - "default_print_profile": "0.30mm Standard @BBL X1C 0.6 nozzle", - "max_layer_height": [ - "0.42" - ], - "min_layer_height": [ - "0.12" - ], - "retraction_length": [ - "1.4", - "1.4" - ], - "retraction_minimum_travel": [ - "3", - "3" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.6 nozzle", - "Bambu Lab P1P 0.6 nozzle", - "Bambu Lab X1 0.6 nozzle", - "Bambu Lab X1 Carbon 0.6 nozzle", - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle" - ], - "machine_start_gcode": ";===== machine: X1E-0.6 =========================\n;===== date: 20250909 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;==== if Chamber Cooling is necessary ==== \n\n{if (filament_type[initial_no_support_extruder]==\"PLA\") || (filament_type[initial_no_support_extruder]==\"PETG\") || (filament_type[initial_no_support_extruder]==\"TPU\") || (filament_type[initial_no_support_extruder]==\"PVA\") || (filament_type[initial_no_support_extruder]==\"PLA-CF\") || (filament_type[initial_no_support_extruder]==\"PETG-CF\")}\nM1002 gcode_claim_action : 29\nG28\nG90\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nG1 Z75\nM140 S0 ; stop heatbed from heating\nM106 P2 S255 ; open auxiliary fan for cooling\nM106 P3 S255 ; open chamber fan for cooling\nM191 S0 ; wait for chamber temp\nM106 P3 S0 ; reset chamber fan cmd\nM106 P2 S0; reset auxiliary fan cmd\n{endif}\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S290 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n\n;===== set chamber temperature ==========\n{if (overall_chamber_temperature >= 40)}\nM106 P2 S255 ; open big fan to help heating\nM141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n{endif}\n\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== noozle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E25 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nG0 Y15 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E1.166\nG0 X231 E1.166 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y12 Z0.2 E1.039\n G0 F1200.0 X226 Y12 Z0.2 E0.495\n G0 F1200.0 X226 Y1.5 Z0.2 E1.039\n G0 F1200.0 X220 Y1.5 Z0.2 E0.594\n G0 F1200.0 X220 Y8 Z0.2 E0.644\n G0 F1200.0 X210 Y8 Z0.2 E0.988\n G0 F1200.0 X210 Y1.5 Z0.2 E0.642\n\n G0 X48.0 E19.826 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E1.312 F1200.0\n G0 X45.0 E0.374 F1200.0\n G0 X35.0 Y6.0 E1.460 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E16.9 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.030\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.015\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.9) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E23.9 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.015 K0.030\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.25000 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X70.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X75.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X80.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X85.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X90.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X95.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X100.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X105.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X110.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X115.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X120.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X125.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X130.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X135.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.015 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*0.015}\n M623\n\n G1 X140.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X145.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X150.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X155.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X160.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X165.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X170.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X175.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X180.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X185.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X190.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X195.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X200.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X205.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X210.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X215.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G1 X220.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5)/ 4 * 60}\n G1 X225.000 E0.56250 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n M973 S4\n\nM623\n\n;===== wait chamber temperature reaching the reference value =======\n{if (overall_chamber_temperature >= 40)}\nM104 S140\nM191 S[overall_chamber_temperature] ; wait for chamber temp\nM106 P2 S0 ; reset chamber fan cmd\nM109 S{nozzle_temperature[initial_no_support_extruder]}\n{endif}\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4\n" + "type": "machine", + "name": "Bambu Lab X1E 0.6 nozzle", + "inherits": "Bambu Lab X1E 0.4 nozzle", + "from": "system", + "setting_id": "GM027", + "instantiation": "true", + "nozzle_diameter": [ + "0.6" + ], + "printer_model": "Bambu Lab X1E", + "printer_variant": "0.6", + "default_print_profile": "0.30mm Standard @BBL X1C 0.6 nozzle", + "include": [ + "Bambu Lab X1E 0.6 nozzle template machine_start_gcode" + ], + "max_layer_height": [ + "0.42" + ], + "min_layer_height": [ + "0.12" + ], + "retraction_length": [ + "1.4", + "1.4" + ], + "retraction_minimum_travel": [ + "3", + "3" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab A2L 0.6 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab X1E 0.8 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X1E 0.8 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..ce489cd506 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X1E 0.8 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X1E 0.8 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";===== machine: X1E-0.8 =========================\n;===== date: 20251031 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;==== if Chamber Cooling is necessary ==== \n\n{if (filament_type[initial_no_support_extruder]==\"PLA\") || (filament_type[initial_no_support_extruder]==\"PETG\") || (filament_type[initial_no_support_extruder]==\"TPU\") || (filament_type[initial_no_support_extruder]==\"PVA\") || (filament_type[initial_no_support_extruder]==\"PLA-CF\") || (filament_type[initial_no_support_extruder]==\"PETG-CF\")}\nM1002 gcode_claim_action : 29\nG28\nG90\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nG1 Z75\nM140 S0 ; stop heatbed from heating\nM106 P2 S255 ; open auxiliary fan for cooling\nM106 P3 S255 ; open chamber fan for cooling\nM191 S0 ; wait for chamber temp\nM106 P3 S0 ; reset chamber fan cmd\nM106 P2 S0; reset auxiliary fan cmd\n{endif}\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action:54\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S290 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n\n;===== set chamber temperature ==========\n{if (overall_chamber_temperature >= 40)}\nM106 P2 S255 ; open big fan to help heating\nM141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n{endif}\n\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== noozle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y11 E1.364 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.300\nG0 X231 E1.160 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y12 Z0.2 E1.154\n G0 F1200.0 X226 Y12 Z0.2 E0.550\n G0 F1200.0 X226 Y1.5 Z0.2 E1.154\n G0 F1200.0 X220 Y1.5 Z0.2 E0.660\n G0 F1200.0 X220 Y8 Z0.2 E0.716\n G0 F1200.0 X210 Y8 Z0.2 E1.098\n G0 F1200.0 X210 Y1.5 Z0.2 E0.714\n\n G0 X48.0 E24.107 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E1.420 F1200.0\n G0 X45.0 E0.404 F1200.0\n G0 X35.0 Y6.0 E1.580 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X110.000 E9.35441 F4800\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.020\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.010\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X129 E14 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.010 K0.020\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.01 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14) *0.01}\n M623\n\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X185.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X190.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X195.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X200.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X205.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X210.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X215.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X220.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X225.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n M973 S4\n\nM623\n\n;===== wait chamber temperature reaching the reference value =======\n{if (overall_chamber_temperature >= 40)}\nM104 S140\nM191 S[overall_chamber_temperature] ; wait for chamber temp\nM106 P2 S0 ; reset chamber fan cmd\nM109 S{nozzle_temperature[initial_no_support_extruder]}\n{endif}\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X1E 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X1E 0.8 nozzle.json index 4d8a9c9bd0..d2adeb9845 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1E 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1E 0.8 nozzle.json @@ -1,43 +1,48 @@ { - "type": "machine", - "name": "Bambu Lab X1E 0.8 nozzle", - "inherits": "Bambu Lab X1E 0.4 nozzle", - "from": "system", - "setting_id": "GM028", - "instantiation": "true", - "nozzle_diameter": [ - "0.8" - ], - "printer_model": "Bambu Lab X1E", - "printer_variant": "0.8", - "default_filament_profile": [ - "Bambu PLA Basic @BBL X1C 0.8 nozzle" - ], - "default_print_profile": "0.40mm Standard @BBL X1C 0.8 nozzle", - "max_layer_height": [ - "0.56" - ], - "min_layer_height": [ - "0.16" - ], - "retract_length_toolchange": [ - "3", - "3" - ], - "retraction_length": [ - "3", - "3" - ], - "upward_compatible_machine": [ - "Bambu Lab P1S 0.8 nozzle", - "Bambu Lab P1P 0.8 nozzle", - "Bambu Lab X1 0.8 nozzle", - "Bambu Lab X1 Carbon 0.8 nozzle", - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab H2D 0.8 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle", - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle" - ], - "machine_start_gcode": ";===== machine: X1E-0.8 =========================\n;===== date: 20250909 =====================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z{+0.0} ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;==== if Chamber Cooling is necessary ==== \n\n{if (filament_type[initial_no_support_extruder]==\"PLA\") || (filament_type[initial_no_support_extruder]==\"PETG\") || (filament_type[initial_no_support_extruder]==\"TPU\") || (filament_type[initial_no_support_extruder]==\"PVA\") || (filament_type[initial_no_support_extruder]==\"PLA-CF\") || (filament_type[initial_no_support_extruder]==\"PETG-CF\")}\nM1002 gcode_claim_action : 29\nG28\nG90\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nG1 Z75\nM140 S0 ; stop heatbed from heating\nM106 P2 S255 ; open auxiliary fan for cooling\nM106 P3 S255 ; open chamber fan for cooling\nM191 S0 ; wait for chamber temp\nM106 P3 S0 ; reset chamber fan cmd\nM106 P2 S0; reset auxiliary fan cmd\n{endif}\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\n\n{if scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S[initial_no_support_extruder]A ; switch material if AMS exist\n M109 S[nozzle_temperature_initial_layer]\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T[initial_no_support_extruder]\n G1 X54 F12000\n G1 Y265\n M400\nM621 S[initial_no_support_extruder]A\nM620.1 E F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} T{flush_temperatures[initial_no_support_extruder]}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S290 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S[nozzle_temperature_initial_layer]\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n\n;===== set chamber temperature ==========\n{if (overall_chamber_temperature >= 40)}\nM106 P2 S255 ; open big fan to help heating\nM141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n{endif}\n\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-20}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== noozle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y0.5 Z0.8 F18000;Move to start position\nM109 S{nozzle_temperature[initial_no_support_extruder]}\nG1 Z0.2\nG0 E2 F300\nG0 X129 E15 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\nG0 X240 E15\nG0 Y11 E1.364 F{outer_wall_volumetric_speed/(0.3*1.0)/ 4 * 60}\nG0 X239.5\nG0 E0.3\nG0 Y1.5 E1.300\nG0 X231 E1.160 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if curr_bed_type==\"Textured PEI Plate\"}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n G0 F1200.0 X231 Y12 Z0.2 E1.154\n G0 F1200.0 X226 Y12 Z0.2 E0.550\n G0 F1200.0 X226 Y1.5 Z0.2 E1.154\n G0 F1200.0 X220 Y1.5 Z0.2 E0.660\n G0 F1200.0 X220 Y8 Z0.2 E0.716\n G0 F1200.0 X210 Y8 Z0.2 E1.098\n G0 F1200.0 X210 Y1.5 Z0.2 E0.714\n\n G0 X48.0 E24.107 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\n G0 X48.0 Y12 E1.420 F1200.0\n G0 X45.0 E0.404 F1200.0\n G0 X35.0 Y6.0 E1.580 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if default_acceleration > 0}\n {if outer_wall_acceleration > 0}\n M204 S[outer_wall_acceleration]\n {else}\n M204 S[default_acceleration]\n {endif}\n {endif}\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X110.000 E9.35441 F4800\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.020\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.010\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of \"draw extrinsic para cali paint\"\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X129 E14 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G0 X18 E15 F{outer_wall_volumetric_speed/(0.3*0.5) * 60}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.750 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y6.75\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X215.00 Y4.750\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60/4} C5.000 D{outer_wall_volumetric_speed/(1.75*1.75/4*3.14)*60} E5.000 F175.000 H1.000 I0.000 J0.010 K0.020\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E2.4945 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X70.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X75.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X80.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X85.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X90.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X95.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X100.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X105.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X110.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X115.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X120.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X125.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X130.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X135.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.01 M{outer_wall_volumetric_speed/(1.75*1.75/4*3.14) *0.01}\n M623\n\n G1 X140.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X145.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X150.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X155.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X160.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X165.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X170.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X175.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X180.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X185.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X190.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X195.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X200.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X205.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X210.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X215.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n G1 X220.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) / 4 * 60}\n G1 X225.000 E0.6236 F{outer_wall_volumetric_speed/(0.3*1.0) * 60}\n M973 S4\n\nM623\n\n;===== wait chamber temperature reaching the reference value =======\n{if (overall_chamber_temperature >= 40)}\nM104 S140\nM191 S[overall_chamber_temperature] ; wait for chamber temp\nM106 P2 S0 ; reset chamber fan cmd\nM109 S{nozzle_temperature[initial_no_support_extruder]}\n{endif}\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S[nozzle_temperature_initial_layer]\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\nG1 E{-retraction_length[initial_no_support_extruder]} F1800\nG1 X128.0 Y253.0 Z0.2 F24000.0;Move to start position\nG1 E{retraction_length[initial_no_support_extruder]} F1800\nM109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\nG0 X253 E6.4 F{outer_wall_volumetric_speed/(0.3*0.6) * 60}\nG0 Y128 E6.4\nG0 X252.5\nG0 Y252.5 E6.4\nG0 X128 E6.4\n" + "type": "machine", + "name": "Bambu Lab X1E 0.8 nozzle", + "inherits": "Bambu Lab X1E 0.4 nozzle", + "from": "system", + "setting_id": "GM028", + "instantiation": "true", + "nozzle_diameter": [ + "0.8" + ], + "printer_model": "Bambu Lab X1E", + "printer_variant": "0.8", + "default_filament_profile": [ + "Bambu PLA Basic @BBL X1C 0.8 nozzle" + ], + "default_print_profile": "0.40mm Standard @BBL X1C 0.8 nozzle", + "include": [ + "Bambu Lab X1E 0.8 nozzle template machine_start_gcode" + ], + "max_layer_height": [ + "0.56" + ], + "min_layer_height": [ + "0.16" + ], + "retract_length_toolchange": [ + "3", + "3" + ], + "retraction_length": [ + "3", + "3" + ], + "upward_compatible_machine": [ + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab H2C 0.8 nozzle", + "Bambu Lab X2D 0.8 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab X1E.json b/resources/profiles/BBL/machine/Bambu Lab X1E.json index 0c4d6faf76..0880fc4f6e 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X1E.json +++ b/resources/profiles/BBL/machine/Bambu Lab X1E.json @@ -1,13 +1,13 @@ { - "type": "machine_model", - "name": "Bambu Lab X1E", - "nozzle_diameter": "0.4;0.2;0.6;0.8", - "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1 Carbon.json", - "bed_model": "bbl-3dp-X1.stl", - "bed_texture": "bbl-3dp-logo.svg", - "default_bed_type": "Textured PEI Plate", - "family": "BBL-3DP", - "machine_tech": "FFF", - "model_id": "C13", - "default_materials": "Bambu PLA Matte @BBL X1C;Bambu PLA Basic @BBL X1C;Bambu PLA-CF @BBL X1C;Bambu PETG-CF @BBL X1C;Bambu ABS @BBL X1E;Bambu ASA @BBL X1E;Bambu PC @BBL X1E;Bambu PAHT-CF @BBL X1C;Bambu Support For PLA @BBL X1C;Bambu Support For PA/PET @BBL X1C;Generic PPA-CF @BBL X1E;Generic PPS @BBL X1E;Generic PPS-CF @BBL X1E;Bambu PETG HF @BBL X1C;Bambu PLA Basic @BBL X1C 0.2 nozzle" -} + "type": "machine_model", + "name": "Bambu Lab X1E", + "nozzle_diameter": "0.4;0.2;0.6;0.8", + "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1 Carbon.json", + "bed_model": "bbl-3dp-X1.stl", + "bed_texture": "bbl-3dp-logo.svg", + "default_bed_type": "Textured PEI Plate", + "family": "BBL-3DP", + "machine_tech": "FFF", + "model_id": "C13", + "default_materials": "Bambu PLA Matte @BBL X1C;Bambu PLA Basic @BBL X1C;Bambu PLA-CF @BBL X1C;Bambu PETG-CF @BBL X1C;Bambu ABS @BBL X1E;Bambu ASA @BBL X1E;Bambu PC @BBL X1E;Bambu PAHT-CF @BBL X1C;Bambu Support For PLA @BBL X1C;Bambu Support For PA/PET @BBL X1C;Generic PPA-CF @BBL X1E;Generic PPS @BBL X1E;Generic PPS-CF @BBL X1E;Bambu PETG HF @BBL X1C;Bambu PLA Pure @BBL X1C;Bambu PLA Basic @BBL X1C 0.2 nozzle" +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X2D 0.2 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X2D 0.2 nozzle.json index ebb6a2f83c..1a4f6d9c3d 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X2D 0.2 nozzle.json @@ -1,34 +1,333 @@ { - "type": "machine", - "name": "Bambu Lab X2D 0.2 nozzle", - "inherits": "Bambu Lab X2D 0.4 nozzle", - "from": "system", - "setting_id": "GM046", - "instantiation": "true", - "nozzle_diameter": [ - "0.2", - "0.2" - ], - "printer_model": "Bambu Lab X2D", - "printer_variant": "0.2", - "default_filament_profile": [ - "Bambu PLA Basic @BBL X2D 0.2 nozzle" - ], - "default_print_profile": "0.10mm Standard @BBL X2D 0.2 nozzle", - "max_layer_height": [ - "0.14", - "0.14" - ], - "min_layer_height": [ - "0.04", - "0.04" - ], - "upward_compatible_machine": [ - "Bambu Lab A1 0.2 nozzle", - "Bambu Lab P2S 0.2 nozzle", - "Bambu Lab H2S 0.2 nozzle", - "Bambu Lab H2D 0.2 nozzle", - "Bambu Lab H2D Pro 0.2 nozzle", - "Bambu Lab H2C 0.2 nozzle" - ] -} + "type": "machine", + "name": "Bambu Lab X2D 0.2 nozzle", + "inherits": "Bambu Lab X2D 0.4 nozzle", + "from": "system", + "setting_id": "GM046", + "instantiation": "true", + "nozzle_diameter": [ + "0.2", + "0.2" + ], + "printer_model": "Bambu Lab X2D", + "printer_variant": "0.2", + "default_filament_profile": [ + "Bambu PLA Basic @BBL X2D 0.2 nozzle" + ], + "default_print_profile": "0.10mm Standard @BBL X2D 0.2 nozzle", + "max_layer_height": [ + "0.14", + "0.14" + ], + "min_layer_height": [ + "0.04", + "0.04" + ], + "upward_compatible_machine": [ + "Bambu Lab A1 0.2 nozzle", + "Bambu Lab P2S 0.2 nozzle", + "Bambu Lab H2S 0.2 nozzle", + "Bambu Lab H2D 0.2 nozzle", + "Bambu Lab H2D Pro 0.2 nozzle", + "Bambu Lab H2C 0.2 nozzle", + "Bambu Lab A2L 0.2 nozzle" + ], + "deretraction_speed": [ + "30", + "30", + "20", + "20" + ], + "hotend_heating_rate": [ + "1.5", + "1.5", + "1.5", + "1.5" + ], + "retraction_length": [ + "0.8", + "0.8", + "2", + "2" + ], + "retraction_speed": [ + "30", + "30", + "20", + "20" + ], + "deretract_speed_extruder_change": [ + "30", + "30", + "90", + "90" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow", + "Bowden Standard,Bowden High Flow" + ], + "printer_extruder_id": [ + "1", + "1", + "2", + "2" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "retract_lift_below": [ + "254", + "254", + "254", + "254" + ], + "machine_max_acceleration_e": [ + "30000", + "5000", + "30000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "30000", + "5000", + "30000", + "5000", + "30000", + "5000", + "30000", + "5000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500", + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3", + "3", + "3", + "3", + "3" + ], + "machine_max_speed_z": [ + "20", + "20", + "20", + "20", + "20", + "20", + "20", + "20" + ], + "machine_max_speed_y": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_x": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_e": [ + "30", + "30", + "30", + "30", + "120", + "120", + "120", + "120" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift", + "Auto Lift", + "Auto Lift" + ], + "z_hop": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "wipe_distance": [ + "2", + "2", + "2", + "2" + ], + "wipe": [ + "1", + "1", + "1", + "1" + ], + "retraction_minimum_travel": [ + "1", + "1", + "1", + "1" + ], + "retraction_distances_when_cut": [ + "18", + "18", + "18", + "18" + ], + "retract_when_changing_layer": [ + "1", + "1", + "1", + "1" + ], + "retract_restart_extra_toolchange": [ + "0", + "0", + "0", + "0" + ], + "retract_restart_extra": [ + "0", + "0", + "0", + "0" + ], + "retract_lift_above": [ + "0", + "0", + "0", + "0" + ], + "retract_length_toolchange": [ + "2", + "2", + "2", + "2" + ], + "retract_before_wipe": [ + "0%", + "0%", + "0%", + "0%" + ], + "nozzle_volume": [ + "92", + "92", + "92", + "92" + ], + "nozzle_flush_dataset": [ + "1", + "2", + "1", + "2" + ], + "long_retractions_when_cut": [ + "0", + "0", + "0", + "0" + ], + "hotend_cooling_rate": [ + "2", + "2", + "2", + "2" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template change_filament_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template change_filament_gcode.json new file mode 100644 index 0000000000..77b94e6368 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template change_filament_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X2D 0.4 nozzle template change_filament_gcode", + "instantiation": "false", + "change_filament_gcode": ";======== X2D filament_change gcode ==========\n;===== 2026/07/01 =====\n\nM620 S[next_filament_id]A B H[next_hotend]\n;M204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_filament_id] == 0 || z_hop_types[current_filament_id] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\n\n;nozzle_change_gcode\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\n{if ((filament_type[current_filament_id] == \"PLA\") || (filament_type[current_filament_id] == \"PLA-CF\") || (filament_type[current_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[current_filament_id]/2.4053*60} L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{endif}\n\n{if ((filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[next_nozzle_id] == 0.2)}\nM620.10 A1 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{else}\nM620.10 A1 F{flush_volumetric_speeds[next_filament_id]/2.4053*60} L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{endif}\n\nM620.15 C{new_filament_temp - filament_cooling_before_tower[next_filament_id]}\n\n{if long_retraction_when_cut}\nM620.11 P1 L0 I[current_filament_id] B[current_hotend] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 P0 L0 I[current_filament_id] B[current_hotend] E0\n{endif}\n\n{if long_retraction_when_ec}\nM620.11 K1 I[current_filament_id] B[current_hotend] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[current_filament_id] B[current_hotend] R0\n{endif}\n\nM620.22 I[next_filament_id] P1 ; enable remote extruder runout auto purge.\n\nT[next_filament_id] H[next_hotend]\n\n;deretract\n{if filament_type[next_filament_id] == \"TPU\"}\n{else}\n{if filament_type[next_filament_id] == \"PA\"}\n;VG1 E1 F{max(new_filament_e_feedrate, 200)}\n;VG1 E1 F{max(new_filament_e_feedrate/2, 100)}\n{else}\n;VG1 E4 F{max(new_filament_e_feedrate, 200)}\n;VG1 E4 F{max(new_filament_e_feedrate/2, 100)}\n{endif}\n{endif}\n\n; VFLUSH_START\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\nSYNC T{ceil(flush_length / 125) * 5}\n; VFLUSH_END\n\nM1002 set_filament_type:{filament_type[next_filament_id]}\n\nM400\nM83\n{if next_filament_id < 255}\nM620.10 R{retract_length_toolchange[filament_map[next_filament_id]-1]}\nM628 S0\n;VM109 S[new_filament_temp]\nM629\nM400\n\n;prime_tower_interface\n{if is_prime_tower_interface && filament_tower_interface_purge_volume !=0}\nG150.1\nM620.13 W0 L{filament_tower_interface_purge_volume} T{filament_tower_interface_print_temp} R0.0\n{endif}\n;prime_tower_interface\n\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_filament_id]-1]}\n\nM400\n\nG1 Z{max_layer_z + 3.0} F3000\n\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\n\n\nM621 S[next_filament_id]A B\n\nM622.1 S0 ;for prev version, default skip\nM1002 judge_flag powerloss_resume_flag\nM622 J1\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_filament_id]-1]}\nM400\nG1 Z{max_layer_z + 3.0} F3000\nM1002 set_flag powerloss_resume_flag=0\nM623\n\nM620.6 I[next_filament_id] H[next_hotend] W1 ;enable ams air printing detect\n\n{if (filament_type[next_filament_id] == \"TPU\")}\nM1015.3 S1 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]};enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PETG\")\n || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} ;disable E air printing detect\n{endif}\n\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[travel_acceleration]\n{endif}\n\nG1 Y256 F18000\n\n\n{if (overall_chamber_temperature < 40)}\n{if (layer_num + 1 <= close_additional_fan_first_x_layers[next_filament_id])}\n M106 P2 S{first_x_layer_fan_speed[next_filament_id]*255.0/100.0 };set first x_layer fan\n\tM106 P10 S{first_x_layer_fan_speed[next_filament_id]*255.0/100.0 };set first x_layer fan\n{elsif (layer_num + 1 < additional_fan_full_speed_layer[next_filament_id] && additional_fan_full_speed_layer[next_filament_id] > close_additional_fan_first_x_layers[next_filament_id])}\n M106 P2 S{(first_x_layer_fan_speed[next_filament_id] + (additional_cooling_fan_speed[next_filament_id] - first_x_layer_fan_speed[next_filament_id]) * (layer_num + 1 - close_additional_fan_first_x_layers[next_filament_id]) / max(additional_fan_full_speed_layer[next_filament_id] - close_additional_fan_first_x_layers[next_filament_id], 1)) * 255.0/100.0}\n\tM106 P10 S{(first_x_layer_fan_speed[next_filament_id] + (additional_cooling_fan_speed[next_filament_id] - first_x_layer_fan_speed[next_filament_id]) * (layer_num + 1 - close_additional_fan_first_x_layers[next_filament_id]) / max(additional_fan_full_speed_layer[next_filament_id] - close_additional_fan_first_x_layers[next_filament_id], 1)) * 255.0/100.0}\n{else}\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n {if (!is_all_bbl_filament)}\n M142 P1 R40 S45 U{max_additional_fan/100.0} V0.5 O50; set third-party PETG chamber \n {else}\n {if (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\n M142 P1 R45 S50 U{max_additional_fan/100.0} V0.5 O50; set PETG ND0.2 chamber autocooling\n {else}\n M142 P1 R50 S55 U{max_additional_fan/100.0} V0.5 O55; set PETG ND0.4 chamber autocooling\n {endif}\n {endif}\n {endif}\n{endif}\n{endif}\n;not set fan changing filament" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template layer_change_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template layer_change_gcode.json new file mode 100644 index 0000000000..7ce70c4556 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template layer_change_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X2D 0.4 nozzle template layer_change_gcode", + "instantiation": "false", + "layer_change_gcode": ";======== X2D layer_change gcode ==========\n;===== 2026/07/01 =====\n\n{if (layer_num + 1 == 1)}\n{if (overall_chamber_temperature >= 40)}\n ;not reset filter fan in first layer\n ;not reset fan\n{endif}\n{endif}\n\n{if (layer_num + 1 <= close_additional_fan_first_x_layers[current_filament_id])}\n{if (overall_chamber_temperature < 40)}\n M106 P2 S{first_x_layer_fan_speed[current_filament_id]*255.0/100.0}\n\tM106 P10 S{first_x_layer_fan_speed[current_filament_id]*255.0/100.0}\n{endif}\n;not reset fan\n{elsif (layer_num + 1 < additional_fan_full_speed_layer[current_filament_id] && additional_fan_full_speed_layer[current_filament_id] > close_additional_fan_first_x_layers[current_filament_id])}\n{if (overall_chamber_temperature < 40)}\n M106 P2 S{(first_x_layer_fan_speed[current_filament_id] + (additional_cooling_fan_speed[current_filament_id] - first_x_layer_fan_speed[current_filament_id]) * (layer_num + 1 - close_additional_fan_first_x_layers[current_filament_id]) / max(additional_fan_full_speed_layer[current_filament_id] - close_additional_fan_first_x_layers[current_filament_id], 1)) * 255.0/100.0}\n\tM106 P10 S{(first_x_layer_fan_speed[current_filament_id] + (additional_cooling_fan_speed[current_filament_id] - first_x_layer_fan_speed[current_filament_id]) * (layer_num + 1 - close_additional_fan_first_x_layers[current_filament_id]) / max(additional_fan_full_speed_layer[current_filament_id] - close_additional_fan_first_x_layers[current_filament_id], 1)) * 255.0/100.0}\n{endif}\n;not reset fan\n{elsif (layer_num + 1 == max(close_additional_fan_first_x_layers[current_filament_id] + 1, additional_fan_full_speed_layer[current_filament_id]))}\n{if (overall_chamber_temperature < 40)}\n ;updata chamber autocooling in Xth layer\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n {if (!is_all_bbl_filament)}\n M142 P1 R40 S45 U{max_additional_fan/100.0} V0.5 O50; set third-party PETG chamber \n {else}\n {if (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\n M142 P1 R45 S50 U{max_additional_fan/100.0} V0.5 O50; set PETG ND0.2 chamber autocooling\n {else}\n M142 P1 R50 S55 U{max_additional_fan/100.0} V0.5 O55; set PETG ND0.4 chamber autocooling\n {endif}\n {endif}\n {endif}\n{else}\n ;not reset filter fan in Xth layer\n{endif}\n;not reset fan\n{endif}\n\n\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template machine_end_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template machine_end_gcode.json new file mode 100644 index 0000000000..de16a36421 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template machine_end_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X2D 0.4 nozzle template machine_end_gcode", + "instantiation": "false", + "machine_end_gcode": ";======== X2D end gcode ==========\n;===== 2026/05/18 =====\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nM211 Z1\n\nG90\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\nM1002 judge_flag timelapse_record_flag\nM622 J1\n G150.3\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S5 ;wait for last picture to be taken\nM623 ;end of \"timelapse_record_flag\"\n\nG90\nG1 Z{max_layer_z + 10} F900 ; lower z a little\n\nM140 S0 ; turn off bed\nM141 S0 ; turn off chamber heating\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM106 P10 S0 ; turn off remote part1 cooling fan\n\n; pull back filament to AMS\nM620 S65279 B\n; M620.11 P1 L0 I65279 E-3\nT65279\nG150.1 F8000\nM621 S65279 B\n\nM620 S65535 B\n; M620.11 P1 L0 I65535 E-4\nT65535\nG150.1 F8000\nM621 S65535 B\n\nG150.3\n\nM104 S0 T0; turn off hotend\nM104 S0 T1; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (80.0 - max_layer_z/2) > 0}\n {if (max_layer_z + 80.0 - max_layer_z/2) < 256}\n G1 Z{max_layer_z + 80.0 - max_layer_z/2} F600\n G1 Z{max_layer_z + 78.0 - max_layer_z/2}\n {else}\n G1 Z256 F600\n G1 Z256\n {endif}\n{else}\n {if (max_layer_z + 4.0) < 256}\n G1 Z{max_layer_z + 4.0} F600\n G1 Z{max_layer_z + 2.0}\n {else}\n G1 Z256 F600\n G1 Z256\n {endif}\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM1015.3 S0 ;disable clog detect\nM1015.4 S0 K0 ;disable air printing detect\n\n;=====printer finish air purification=========\nM622.1 S0\nM1002 judge_flag print_finish_air_filt_flag\n\nM622 J1\nM1002 gcode_claim_action : 66\nM145 P1\nM106 P10 S255\nM400 S180\nM106 P10 S0\nM623\n\nM622 J2\nM1002 gcode_claim_action : 66\nM145 P0\nM106 P3 S255\nM400 S180\nM106 P3 S0\nM623\n;=====printer finish air purification=========\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L50 C53 D10 M50 E53 F10 N50 \nM1006 A57 B10 L50 C57 D10 M50 E57 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A53 B10 L50 C53 D10 M50 E53 F10 N50 \nM1006 A57 B10 L50 C57 D10 M50 E57 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A48 B10 L50 C48 D10 M50 E48 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A60 B10 L50 C60 D10 M50 E60 F10 N50 \nM1006 W\n;=====printer finish sound=========\nM400\nM18\n\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template machine_start_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template machine_start_gcode.json new file mode 100644 index 0000000000..bc81e16c86 --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template machine_start_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X2D 0.4 nozzle template machine_start_gcode", + "instantiation": "false", + "machine_start_gcode": ";M1002 set_flag extrude_cali_flag=1\n;M1002 set_flag g29_before_print_flag=1\n;M1002 set_flag auto_cali_toolhead_offset_flag=1\n;M1002 set_flag build_plate_detect_flag=1\n\n;======== X2D start gcode==========\n;===== 2026/06/05 =====\n\n M140 S[bed_temperature_initial_layer_single] ; heat heatbed first\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n M400\n ;M73 P99\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50\nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50\nM1006 A61 B9 L50 C61 D9 M50 E61 F9 N50\nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50\nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50\nM1006 A61 B18 L50 C61 D18 M50 E61 F18 N50\nM1006 W\n;=====printer start sound ===================\n\n M1012.1 T1100\n M620 M ;enable remap\n M622.1 S0\n G383.4\n\n;===== avoid end stop =================\n G91\n G380 S2 Z22 F1200\n G380 S2 Z-12 F1200\n G90\n;===== avoid end stop =================\n\n;===== reset machine status =================\n M204 S10000\n M630 S0 P1\n G90\n M17 D ; reset motor current to default\n M960 S5 P1 ; turn on logo lamp\n M220 S100 ;Reset Feedrate\n M1002 set_gcode_claim_speed_level: 5\n M221 S100 ;Reset Flowrate\n M73.2 R1.0 ;Reset left time magnitude\n G29.1 Z{+0.0} ; clear z-trim value first\n M983.1 M1\n M982.2 S1 ; turn on cog noise reduction\n;===== reset machine status =================\n\n;==== set airduct mode ====\n{if (overall_chamber_temperature >= 40)}\nM145 P1 ; set airduct mode to heating mode for heating\nM106 P2 S0 ; turn off auxiliary fan\nM106 P10 S255 ; turn on filter fan\n{else}\nM145 P0 ; set airduct mode to cooling mode for cooling\nM106 P2 S255 ; turn on auxiliary fan for cooling\nM106 P10 S255 ; turn on auxiliary fan for cooling\nM106 P3 S127 ; turn on chamber fan for cooling\n;M140 S0 ; stop heatbed from heating\nM1002 gcode_claim_action : 29\nM191 S0 ; wait for chamber temp\nM106 P2 S102 ; turn on auxiliary fan\nM106 P10 S102 ; turn on chamber fan\nM142 P6 R30 S40 U0.6 V0.8 ; set PLA/TPU/PETG exhaust chamber autocooling\n{endif}\n;==== set airduct mode ====\n\n;===== start to heat heatbed & hotend==========\n M1002 gcode_claim_action : 2\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n\n ;===== set chamber temperature ==========\n {if (overall_chamber_temperature >= 40)}\n M145 P1 ; set airduct mode to heating mode\n M141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n {endif}\n;===== set chamber temperature ==========\n\n G29.2 S0 ; avoid invalid abl data\n\n;===== first homing start =====\n M1002 gcode_claim_action : 13\n G28 X T300 R\n G150.1 F8000 ; wipe mouth to avoid filament stick to heatbed\n G150.3\n M972 S24 P0\n M1002 gcode_claim_action : 74 ; Heatbed surface foreign object detection\n M972 S26 P0 C0\n G90\n M83\n G1 Y128 F30000\n G1 X128\n G28 Z P0 T400\n M400\n;===== first homign end =====\n\n;===== detection start =====\n M1002 gcode_claim_action : 11\n\n M104 S0 T0\n M104 S0 T1\n M562 P1 E0 B1\n M562 P2 E0 B1\n M18 E\n M400 P200\n M1028 S1\n M972 S19 P0 ;heatbed detection\n M972 S31 P0 ;toolhead camera dirt detection\n M1002 gcode_claim_action : 73 ; Build plate alignment detection\n M972 S34 P0 ;print plate deviation detection\n M1028 S0\n M562 P1 E1 B1\n M562 P2 E1 B1\n M17 D\n\n ;M400\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]} T{filament_map[initial_no_support_filament_id] % 2} ; rise temp in advance\n\n {if max_print_z >= 145}\n G151 P{filament_map[initial_no_support_filament_id] % 2} M ; plug the heat nozzle\n M1002 gcode_claim_action : 75 ; Detect obstacles at the botton of the heated bed\n G3811 Z{max_print_z} ; Detect obstacles at the bottom of the heated bed\n {endif}\n;===== detection end =====\n\n;===== prepare print temperature and material ==========\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]-40} A ; rise temp in advance\n M400\n M211 X0 Y0 Z0 ;turn off soft endstop\n M975 S1 ; turn on input shaping\n\n G29.2 S0 ; avoid invalid abl data\n G150.3\n{if ((filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{endif}\n\n M620.11 P0 L0 I[initial_no_support_filament_id] B[initial_no_support_hotend] E0\n M620.11 K0 I[initial_no_support_filament_id] B[initial_no_support_hotend] R0\n\n M620 S[initial_no_support_filament_id]A H[initial_no_support_hotend] B ; switch material if AMS exist\n M620.22 I[initial_no_support_filament_id] P1 ; enable remote extruder runout auto purge.\n M1002 gcode_claim_action : 4\n M1002 set_filament_type:UNKNOWN\n M400\n T[initial_no_support_filament_id] H[initial_no_support_hotend]\n M400\n M628 S0\n M629\n M400\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M621 S[initial_no_support_filament_id]A B\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n M400\n M106 P1 S0\n M400\n G29.2 S1\n;===== prepare print temperature and material ==========\n\n;===== auto extrude cali start =========================\n M975 S1\n M1002 judge_flag extrude_cali_flag\n M622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n M623\n\n M622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n\n M622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n;===== auto extrude cali end =========================\n\n {if hold_chamber_temp_for_flat_print}\n G150.3\n M1002 gcode_claim_action : 58\n M104 S{first_layer_temperature[initial_no_support_filament_id]}\n {if bed_temperature_initial_layer_single > 89}\n {if overall_chamber_temperature < 40}\n M1030 S1200\n SYNC R0 T1200\n {else}\n M1030 S600\n SYNC R0 T600\n {endif}\n {else}\n M1030 S300\n SYNC R0 T300\n {endif}\n M1030 C\n {endif}\n\n {if filament_type[initial_filament_id] == \"TPU\" || filament_type[initial_filament_id] == \"PVA\"}\n {else}\n M83\n G1 E-3 F1800\n M400 P500\n {endif}\n G150.2\n G150.1 F8000\n G150.2\n G150.1 F8000\n\n G91\n G1 Y-16 F12000 ; move away from the trash bin\n G90\n M400\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]-80} A\n\n;===== wipe right nozzle start =====\n M1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n M400\n;===== wipe left nozzle end =====\n\n{if filament_type[initial_filament_id] == \"PC\"}\n M109 S170 A\n{else}\n M109 S140 A\n{endif}\n M106 S0 ; turn off fan , too noisy\n G91\n G1 Z5 F1200\n G90\n M400\n G150.1\n\n{if (overall_chamber_temperature >= 40)}\nM1002 gcode_claim_action : 49\nM191 S[overall_chamber_temperature] ; wait for chamber temp\n{endif}\n\n;===== z ofst cali start =====\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n G383 O0 M1 T140\n M400\n;===== z ofst cali end =====\nG90\nM83\nG0 Y200 F18000\n\n;===== bed leveling ==================================\n M1002 gcode_claim_action : 54\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n M109 S140 A\n M106 S0 ; turn off fan , too noisy\n M1002 judge_flag g29_before_print_flag\n M622 J1\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H R\n {else}\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {endif}\n M400\n M623\n\n M622 J2\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H R\n {else}\n G29 A2 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {endif}\n M400\n M623\n\n M622 J0\n G28 R\n M623\n G29.2 S1\n;===== bed leveling end ================================\n\n; cali eddy z pos\n;G383.13 T1 C1\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]} A\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n G90\n G1 X128 Y128 F20000\n G1 Z5 F1200\n M400 P200\n M970.3 Q1 A5 K0 O1\n M974 Q1 S2 P0\n M970.3 Q0 A7 K0 O1\n M970.2 Q0 W73 K1 Z0.01\n M974 Q0 S2 P0\n M975 S1\n M400\n;===== mech mode sweep end =====\n\nM104 S{nozzle_temperature_initial_layer[initial_filament_id]} A\nG150.3\n\n;===== xy ofst cali start =====\nM1002 judge_flag auto_cali_toolhead_offset_flag\n\nM622 J0\n M1012.5 N1 R1\nM623\n\nM622 J1\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : (first_filaments[0] != -1 ? first_filaments[0] : 0))]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : (first_filaments[0] != -1 ? first_filaments[0] : 0))}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : (first_filaments[1] != -1 ? first_filaments[1] : 0))]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : (first_filaments[1] != -1 ? first_filaments[1] : 0))}\n M620 D[initial_no_support_hotend]\n G383 O1 T{nozzle_temperature_initial_layer[initial_no_support_filament_id]} L{initial_no_support_filament_id}\n M141 S[overall_chamber_temperature]\nM623\n\nM622 J2\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : (first_filaments[0] != -1 ? first_filaments[0] : 0))]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : (first_filaments[0] != -1 ? first_filaments[0] : 0))}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : (first_filaments[1] != -1 ? first_filaments[1] : 0))]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : (first_filaments[1] != -1 ? first_filaments[1] : 0))}\n M620 D[initial_no_support_hotend]\n G383.3 T{nozzle_temperature_initial_layer[initial_no_support_filament_id]} L{initial_no_support_filament_id}\n M141 S[overall_chamber_temperature]\nM623\n;===== xy ofst cali end =====\n\n M104 S{nozzle_temperature_initial_layer[initial_filament_id]} A\n\n G150.3 ; move to garbage can to wait for temp\n\n;===== wait temperature reaching the reference value =======\n M140 S[bed_temperature_initial_layer_single]\n M190 S[bed_temperature_initial_layer_single]\n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off cooling fan\n\n;===== wait temperature reaching the reference value =======\n\n M1002 gcode_claim_action : 255\n M400\n M975 S1 ; turn on mech mode supression\n M983.4 S0 ; turn off deformation compensation\n\n;============switch again==================\n M211 X0 Y0 Z0 ;turn off soft endstop\n G91\n G1 Z6 F1200\n G90\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M620 S[initial_no_support_filament_id]A H[initial_no_support_hotend] B\n M620.22 I[initial_no_support_filament_id] P1 ; enable remote extruder runout auto purge.\n M400\n T[initial_no_support_filament_id] H[initial_no_support_hotend]\n M400\n M628 S0\n M629\n M400\n M621 S[initial_no_support_filament_id]A B\n;============switch again==================\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if bed_temperature_initial_layer_single > 70}\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{-0.003} ; for Textured PEI Plate\n {else}\n G29.1 Z{0.017}\n {endif}\n {else}\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{0.002} ; for Textured PEI Plate\n {else}\n G29.1 Z{0.022}\n {endif}\n {endif}\n\n;===== nozzle load line ===============================\nM1002 gcode_claim_action : 51\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n M400 P50\n M500 D1\n M400 S3\n M109 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n G0 X100 Y0 F24000\n M400\n ;G130 O0 X100 Y-0.4 Z0.6 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2/2.4053} L40 E20 D5\n G130 O0 X100 Y-0.2 Z0.6 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2/2.4053} L40 E12 D4\nG90\n G90\n M83\n G1 Z1\n M400\n;===== noozle load line end ===========================\nM1002 gcode_claim_action : 0\n G29.99\n\n;M993 A1 B1 C1 ; nozzle cam detection allowed.\n\nM620.6 I[initial_no_support_filament_id] H[initial_no_support_hotend] W1 ;enable ams air printing detect\n\n\n{if (filament_type[initial_no_support_filament_id] == \"TPU\")}\nM1015.3 S1 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]};enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PETG\")\n || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;disable E air printing detect\n{endif}\n\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template time_lapse_gcode.json b/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template time_lapse_gcode.json new file mode 100644 index 0000000000..6597ef120c --- /dev/null +++ b/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle template time_lapse_gcode.json @@ -0,0 +1,6 @@ +{ + "type": "machine", + "name": "Bambu Lab X2D 0.4 nozzle template time_lapse_gcode", + "instantiation": "false", + "time_lapse_gcode": ";======== X2D timelapse gcode ========\n;======== 2026/06/03 ========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firware, default turned on\n\nM1002 judge_flag timelapse_record_flag\n\nM622 J1\n {if !spiral_mode && !(has_timelapse_safe_pos) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n M83\n G1 Z{max_layer_z + 0.4} F1200\n M400\n {endif}\n {endif}\n\n {if timelapse_inline_photo}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {elsif has_timelapse_safe_pos && !spiral_mode}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} U{timelapse_pos_x} V{timelapse_pos_y} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {else}\n {if spiral_mode}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {else}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {endif}\n {endif}\n\n {if !spiral_mode && !(has_timelapse_safe_pos) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n G90\n G1 Z{max_layer_z + 3.0} F1200\n G91\n G0 Y-20 F18000\n G90\n M83\n {endif}\n {endif}\nM623\n; SKIPPABLE_END\n" +} diff --git a/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle.json index 0c79b7fed0..e381fbdbee 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle.json @@ -1,157 +1,470 @@ { - "type": "machine", - "name": "Bambu Lab X2D 0.4 nozzle", - "inherits": "fdm_bbl_3dp_002_common", - "from": "system", - "setting_id": "GM045", - "instantiation": "true", - "change_filament_gcode": "======== X2D filament_change gcode ==========\n;===== 2026/07/01 =====\n\nM620 S[next_filament_id]A B H[next_hotend]\n;M204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_filament_id] == 0 || z_hop_types[current_filament_id] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\n\n;nozzle_change_gcode\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\n{if ((filament_type[current_filament_id] == \"PLA\") || (filament_type[current_filament_id] == \"PLA-CF\") || (filament_type[current_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[current_filament_id]/2.4053*60} L[flush_length] H{nozzle_diameter_at_nozzle_id[current_nozzle_id]} T{flush_temperatures[current_filament_id]} P[old_filament_temp] S1\n{endif}\n\n{if ((filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[next_nozzle_id] == 0.2)}\nM620.10 A1 F74.8347 L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{else}\nM620.10 A1 F{flush_volumetric_speeds[next_filament_id]/2.4053*60} L[flush_length] H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} T{flush_temperatures[next_filament_id]} P[new_filament_temp] S1\n{endif}\n\nM620.15 C{new_filament_temp - filament_cooling_before_tower[next_filament_id]}\n\n{if long_retraction_when_cut}\nM620.11 P1 L0 I[current_filament_id] B[current_hotend] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 P0 L0 I[current_filament_id] B[current_hotend] E0\n{endif}\n\n{if long_retraction_when_ec}\nM620.11 K1 I[current_filament_id] B[current_hotend] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[current_filament_id]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[current_filament_id] B[current_hotend] R0\n{endif}\n\nM620.22 I[next_filament_id] P1 ; enable remote extruder runout auto purge.\n\nT[next_filament_id] H[next_hotend]\n\n;deretract\n{if filament_type[next_filament_id] == \"TPU\"}\n{else}\n{if filament_type[next_filament_id] == \"PA\"}\n;VG1 E1 F{max(new_filament_e_feedrate, 200)}\n;VG1 E1 F{max(new_filament_e_feedrate/2, 100)}\n{else}\n;VG1 E4 F{max(new_filament_e_feedrate, 200)}\n;VG1 E4 F{max(new_filament_e_feedrate/2, 100)}\n{endif}\n{endif}\n\n; VFLUSH_START\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\nSYNC T{ceil(flush_length / 125) * 5}\n; VFLUSH_END\n\nM1002 set_filament_type:{filament_type[next_filament_id]}\n\nM400\nM83\n{if next_filament_id < 255}\nM620.10 R{retract_length_toolchange[filament_map[next_filament_id]-1]}\nM628 S0\n;VM109 S[new_filament_temp]\nM629\nM400\n\n;prime_tower_interface\n{if is_prime_tower_interface && filament_tower_interface_purge_volume !=0}\nG150.1\nM620.13 W0 L{filament_tower_interface_purge_volume} T{filament_tower_interface_print_temp} R0.0\n{endif}\n;prime_tower_interface\n\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_filament_id]-1]}\n\nM400\n\nG1 Z{max_layer_z + 3.0} F3000\n\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\n\n\nM621 S[next_filament_id]A B\n\nM622.1 S0 ;for prev version, default skip\nM1002 judge_flag powerloss_resume_flag\nM622 J1\nM983.3 F{filament_max_volumetric_speed[next_filament_id]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_filament_id]-1]}\nM400\nG1 Z{max_layer_z + 3.0} F3000\nM1002 set_flag powerloss_resume_flag=0\nM623\n\nM620.6 I[next_filament_id] H[next_hotend] W1 ;enable ams air printing detect\n\n{if (filament_type[next_filament_id] == \"TPU\")}\nM1015.3 S1 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]};enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[next_filament_id] == \"PLA\") || (filament_type[next_filament_id] == \"PETG\")\n || (filament_type[next_filament_id] == \"PLA-CF\") || (filament_type[next_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H{nozzle_diameter_at_nozzle_id[next_nozzle_id]} ;disable E air printing detect\n{endif}\n\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[travel_acceleration]\n{endif}\n\nG1 Y256 F18000\n\n\n{if (overall_chamber_temperature < 40)}\n{if (layer_num + 1 <= close_additional_fan_first_x_layers[next_filament_id])}\n M106 P2 S{first_x_layer_fan_speed[next_filament_id]*255.0/100.0 };set first x_layer fan\n\tM106 P10 S{first_x_layer_fan_speed[next_filament_id]*255.0/100.0 };set first x_layer fan\n{elsif (layer_num + 1 < additional_fan_full_speed_layer[next_filament_id] && additional_fan_full_speed_layer[next_filament_id] > close_additional_fan_first_x_layers[next_filament_id])}\n M106 P2 S{(first_x_layer_fan_speed[next_filament_id] + (additional_cooling_fan_speed[next_filament_id] - first_x_layer_fan_speed[next_filament_id]) * (layer_num + 1 - close_additional_fan_first_x_layers[next_filament_id]) / max(additional_fan_full_speed_layer[next_filament_id] - close_additional_fan_first_x_layers[next_filament_id], 1)) * 255.0/100.0}\n\tM106 P10 S{(first_x_layer_fan_speed[next_filament_id] + (additional_cooling_fan_speed[next_filament_id] - first_x_layer_fan_speed[next_filament_id]) * (layer_num + 1 - close_additional_fan_first_x_layers[next_filament_id]) / max(additional_fan_full_speed_layer[next_filament_id] - close_additional_fan_first_x_layers[next_filament_id], 1)) * 255.0/100.0}\n{else}\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n {if (!is_all_bbl_filament)}\n M142 P1 R40 S45 U{max_additional_fan/100.0} V0.5 O50; set third-party PETG chamber \n {else}\n {if (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\n M142 P1 R45 S50 U{max_additional_fan/100.0} V0.5 O50; set PETG ND0.2 chamber autocooling\n {else}\n M142 P1 R50 S55 U{max_additional_fan/100.0} V0.5 O55; set PETG ND0.4 chamber autocooling\n {endif}\n {endif}\n {endif}\n{endif}\n{endif}\n;not set fan changing filament", - "layer_change_gcode": ";======== X2D layer_change gcode ==========\n;===== 2026/07/01 =====\n\n{if (layer_num + 1 == 1)}\n{if (overall_chamber_temperature >= 40)}\n ;not reset filter fan in first layer\n ;not reset fan\n{endif}\n{endif}\n\n{if (layer_num + 1 <= close_additional_fan_first_x_layers[current_filament_id])}\n{if (overall_chamber_temperature < 40)}\n M106 P2 S{first_x_layer_fan_speed[current_filament_id]*255.0/100.0}\n\tM106 P10 S{first_x_layer_fan_speed[current_filament_id]*255.0/100.0}\n{endif}\n;not reset fan\n{elsif (layer_num + 1 < additional_fan_full_speed_layer[current_filament_id] && additional_fan_full_speed_layer[current_filament_id] > close_additional_fan_first_x_layers[current_filament_id])}\n{if (overall_chamber_temperature < 40)}\n M106 P2 S{(first_x_layer_fan_speed[current_filament_id] + (additional_cooling_fan_speed[current_filament_id] - first_x_layer_fan_speed[current_filament_id]) * (layer_num + 1 - close_additional_fan_first_x_layers[current_filament_id]) / max(additional_fan_full_speed_layer[current_filament_id] - close_additional_fan_first_x_layers[current_filament_id], 1)) * 255.0/100.0}\n\tM106 P10 S{(first_x_layer_fan_speed[current_filament_id] + (additional_cooling_fan_speed[current_filament_id] - first_x_layer_fan_speed[current_filament_id]) * (layer_num + 1 - close_additional_fan_first_x_layers[current_filament_id]) / max(additional_fan_full_speed_layer[current_filament_id] - close_additional_fan_first_x_layers[current_filament_id], 1)) * 255.0/100.0}\n{endif}\n;not reset fan\n{elsif (layer_num + 1 == max(close_additional_fan_first_x_layers[current_filament_id] + 1, additional_fan_full_speed_layer[current_filament_id]))}\n{if (overall_chamber_temperature < 40)}\n ;updata chamber autocooling in Xth layer\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n {if (!is_all_bbl_filament)}\n M142 P1 R40 S45 U{max_additional_fan/100.0} V0.5 O50; set third-party PETG chamber \n {else}\n {if (nozzle_diameter_at_nozzle_id[current_nozzle_id] == 0.2)}\n M142 P1 R45 S50 U{max_additional_fan/100.0} V0.5 O50; set PETG ND0.2 chamber autocooling\n {else}\n M142 P1 R50 S55 U{max_additional_fan/100.0} V0.5 O55; set PETG ND0.4 chamber autocooling\n {endif}\n {endif}\n {endif}\n{else}\n ;not reset filter fan in Xth layer\n{endif}\n;not reset fan\n{endif}\n\n\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change\n", - "machine_end_gcode": ";======== X2D end gcode ==========\n;===== 2026/05/18 =====\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nM211 Z1\n\nG90\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\nM1002 judge_flag timelapse_record_flag\nM622 J1\n G150.3\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S5 ;wait for last picture to be taken\nM623 ;end of \"timelapse_record_flag\"\n\nG90\nG1 Z{max_layer_z + 10} F900 ; lower z a little\n\nM140 S0 ; turn off bed\nM141 S0 ; turn off chamber heating\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM106 P10 S0 ; turn off remote part1 cooling fan\n\n; pull back filament to AMS\nM620 S65279 B\n; M620.11 P1 L0 I65279 E-3\nT65279\nG150.1 F8000\nM621 S65279 B\n\nM620 S65535 B\n; M620.11 P1 L0 I65535 E-4\nT65535\nG150.1 F8000\nM621 S65535 B\n\nG150.3\n\nM104 S0 T0; turn off hotend\nM104 S0 T1; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (80.0 - max_layer_z/2) > 0}\n {if (max_layer_z + 80.0 - max_layer_z/2) < 256}\n G1 Z{max_layer_z + 80.0 - max_layer_z/2} F600\n G1 Z{max_layer_z + 78.0 - max_layer_z/2}\n {else}\n G1 Z256 F600\n G1 Z256\n {endif}\n{else}\n {if (max_layer_z + 4.0) < 256}\n G1 Z{max_layer_z + 4.0} F600\n G1 Z{max_layer_z + 2.0}\n {else}\n G1 Z256 F600\n G1 Z256\n {endif}\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM1015.3 S0 ;disable clog detect\nM1015.4 S0 K0 ;disable air printing detect\n\n;=====printer finish air purification=========\nM622.1 S0\nM1002 judge_flag print_finish_air_filt_flag\n\nM622 J1\nM1002 gcode_claim_action : 66\nM145 P1\nM106 P10 S255\nM400 S180\nM106 P10 S0\nM623\n\nM622 J2\nM1002 gcode_claim_action : 66\nM145 P0\nM106 P3 S255\nM400 S180\nM106 P3 S0\nM623\n;=====printer finish air purification=========\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L50 C53 D10 M50 E53 F10 N50 \nM1006 A57 B10 L50 C57 D10 M50 E57 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A53 B10 L50 C53 D10 M50 E53 F10 N50 \nM1006 A57 B10 L50 C57 D10 M50 E57 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A48 B10 L50 C48 D10 M50 E48 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A60 B10 L50 C60 D10 M50 E60 F10 N50 \nM1006 W\n;=====printer finish sound=========\nM400\nM18\n\n", - "machine_start_gcode": ";M1002 set_flag extrude_cali_flag=1\n;M1002 set_flag g29_before_print_flag=1\n;M1002 set_flag auto_cali_toolhead_offset_flag=1\n;M1002 set_flag build_plate_detect_flag=1\n\n;======== X2D start gcode==========\n;===== 2026/06/05 =====\n\n M140 S[bed_temperature_initial_layer_single] ; heat heatbed first\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n M400\n ;M73 P99\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50\nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50\nM1006 A61 B9 L50 C61 D9 M50 E61 F9 N50\nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50\nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50\nM1006 A61 B18 L50 C61 D18 M50 E61 F18 N50\nM1006 W\n;=====printer start sound ===================\n\n M1012.1 T1100\n M620 M ;enable remap\n M622.1 S0\n G383.4\n\n;===== avoid end stop =================\n G91\n G380 S2 Z22 F1200\n G380 S2 Z-12 F1200\n G90\n;===== avoid end stop =================\n\n;===== reset machine status =================\n M204 S10000\n M630 S0 P1\n G90\n M17 D ; reset motor current to default\n M960 S5 P1 ; turn on logo lamp\n M220 S100 ;Reset Feedrate\n M1002 set_gcode_claim_speed_level: 5\n M221 S100 ;Reset Flowrate\n M73.2 R1.0 ;Reset left time magnitude\n G29.1 Z{+0.0} ; clear z-trim value first\n M983.1 M1\n M982.2 S1 ; turn on cog noise reduction\n;===== reset machine status =================\n\n;==== set airduct mode ====\n{if (overall_chamber_temperature >= 40)}\nM145 P1 ; set airduct mode to heating mode for heating\nM106 P2 S0 ; turn off auxiliary fan\nM106 P10 S255 ; turn on filter fan\n{else}\nM145 P0 ; set airduct mode to cooling mode for cooling\nM106 P2 S255 ; turn on auxiliary fan for cooling\nM106 P10 S255 ; turn on auxiliary fan for cooling\nM106 P3 S127 ; turn on chamber fan for cooling\n;M140 S0 ; stop heatbed from heating\nM1002 gcode_claim_action : 29\nM191 S0 ; wait for chamber temp\nM106 P2 S102 ; turn on auxiliary fan\nM106 P10 S102 ; turn on chamber fan\nM142 P6 R30 S40 U0.6 V0.8 ; set PLA/TPU/PETG exhaust chamber autocooling\n{endif}\n;==== set airduct mode ====\n\n;===== start to heat heatbed & hotend==========\n M1002 gcode_claim_action : 2\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n\n ;===== set chamber temperature ==========\n {if (overall_chamber_temperature >= 40)}\n M145 P1 ; set airduct mode to heating mode\n M141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n {endif}\n;===== set chamber temperature ==========\n\n G29.2 S0 ; avoid invalid abl data\n\n;===== first homing start =====\n M1002 gcode_claim_action : 13\n G28 X T300 R\n G150.1 F8000 ; wipe mouth to avoid filament stick to heatbed\n G150.3\n M972 S24 P0\n M1002 gcode_claim_action : 74 ; Heatbed surface foreign object detection\n M972 S26 P0 C0\n G90\n M83\n G1 Y128 F30000\n G1 X128\n G28 Z P0 T400\n M400\n;===== first homign end =====\n\n;===== detection start =====\n M1002 gcode_claim_action : 11\n\n M104 S0 T0\n M104 S0 T1\n M562 P1 E0 B1\n M562 P2 E0 B1\n M18 E\n M400 P200\n M1028 S1\n M972 S19 P0 ;heatbed detection\n M972 S31 P0 ;toolhead camera dirt detection\n M1002 gcode_claim_action : 73 ; Build plate alignment detection\n M972 S34 P0 ;print plate deviation detection\n M1028 S0\n M562 P1 E1 B1\n M562 P2 E1 B1\n M17 D\n\n ;M400\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]} T{filament_map[initial_no_support_filament_id] % 2} ; rise temp in advance\n\n {if max_print_z >= 145}\n G151 P{filament_map[initial_no_support_filament_id] % 2} M ; plug the heat nozzle\n M1002 gcode_claim_action : 75 ; Detect obstacles at the botton of the heated bed\n G3811 Z{max_print_z} ; Detect obstacles at the bottom of the heated bed\n {endif}\n;===== detection end =====\n\n;===== prepare print temperature and material ==========\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]-40} A ; rise temp in advance\n M400\n M211 X0 Y0 Z0 ;turn off soft endstop\n M975 S1 ; turn on input shaping\n\n G29.2 S0 ; avoid invalid abl data\n G150.3\n{if ((filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG\")) && (nozzle_diameter_at_nozzle_id[initial_nozzle_id] == 0.2)}\nM620.10 A0 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F74.8347 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_filament_id]/2.4053*60} H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} T{flush_temperatures[initial_no_support_filament_id]} P{nozzle_temperature_initial_layer[initial_no_support_filament_id]} S1\n{endif}\n\n M620.11 P0 L0 I[initial_no_support_filament_id] B[initial_no_support_hotend] E0\n M620.11 K0 I[initial_no_support_filament_id] B[initial_no_support_hotend] R0\n\n M620 S[initial_no_support_filament_id]A H[initial_no_support_hotend] B ; switch material if AMS exist\n M620.22 I[initial_no_support_filament_id] P1 ; enable remote extruder runout auto purge.\n M1002 gcode_claim_action : 4\n M1002 set_filament_type:UNKNOWN\n M400\n T[initial_no_support_filament_id] H[initial_no_support_hotend]\n M400\n M628 S0\n M629\n M400\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M621 S[initial_no_support_filament_id]A B\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n M400\n M106 P1 S0\n M400\n G29.2 S1\n;===== prepare print temperature and material ==========\n\n;===== auto extrude cali start =========================\n M975 S1\n M1002 judge_flag extrude_cali_flag\n M622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n M623\n\n M622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n\n M622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_filament_id]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n;===== auto extrude cali end =========================\n\n {if hold_chamber_temp_for_flat_print}\n G150.3\n M1002 gcode_claim_action : 58\n M104 S{first_layer_temperature[initial_no_support_filament_id]}\n {if bed_temperature_initial_layer_single > 89}\n {if overall_chamber_temperature < 40}\n M1030 S1200\n SYNC R0 T1200\n {else}\n M1030 S600\n SYNC R0 T600\n {endif}\n {else}\n M1030 S300\n SYNC R0 T300\n {endif}\n M1030 C\n {endif}\n\n {if filament_type[initial_filament_id] == \"TPU\" || filament_type[initial_filament_id] == \"PVA\"}\n {else}\n M83\n G1 E-3 F1800\n M400 P500\n {endif}\n G150.2\n G150.1 F8000\n G150.2\n G150.1 F8000\n\n G91\n G1 Y-16 F12000 ; move away from the trash bin\n G90\n M400\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]-80} A\n\n;===== wipe right nozzle start =====\n M1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n M400\n;===== wipe left nozzle end =====\n\n{if filament_type[initial_filament_id] == \"PC\"}\n M109 S170 A\n{else}\n M109 S140 A\n{endif}\n M106 S0 ; turn off fan , too noisy\n G91\n G1 Z5 F1200\n G90\n M400\n G150.1\n\n{if (overall_chamber_temperature >= 40)}\nM1002 gcode_claim_action : 49\nM191 S[overall_chamber_temperature] ; wait for chamber temp\n{endif}\n\n;===== z ofst cali start =====\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n G383 O0 M1 T140\n M400\n;===== z ofst cali end =====\nG90\nM83\nG0 Y200 F18000\n\n;===== bed leveling ==================================\n M1002 gcode_claim_action : 54\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n M109 S140 A\n M106 S0 ; turn off fan , too noisy\n M1002 judge_flag g29_before_print_flag\n M622 J1\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H R\n {else}\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {endif}\n M400\n M623\n\n M622 J2\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H R\n {else}\n G29 A2 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {endif}\n M400\n M623\n\n M622 J0\n G28 R\n M623\n G29.2 S1\n;===== bed leveling end ================================\n\n; cali eddy z pos\n;G383.13 T1 C1\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]} A\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n G90\n G1 X128 Y128 F20000\n G1 Z5 F1200\n M400 P200\n M970.3 Q1 A5 K0 O1\n M974 Q1 S2 P0\n M970.3 Q0 A7 K0 O1\n M970.2 Q0 W73 K1 Z0.01\n M974 Q0 S2 P0\n M975 S1\n M400\n;===== mech mode sweep end =====\n\nM104 S{nozzle_temperature_initial_layer[initial_filament_id]} A\nG150.3\n\n;===== xy ofst cali start =====\nM1002 judge_flag auto_cali_toolhead_offset_flag\n\nM622 J0\n M1012.5 N1 R1\nM623\n\nM622 J1\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : (first_filaments[0] != -1 ? first_filaments[0] : 0))]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : (first_filaments[0] != -1 ? first_filaments[0] : 0))}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : (first_filaments[1] != -1 ? first_filaments[1] : 0))]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : (first_filaments[1] != -1 ? first_filaments[1] : 0))}\n M620 D[initial_no_support_hotend]\n G383 O1 T{nozzle_temperature_initial_layer[initial_no_support_filament_id]} L{initial_no_support_filament_id}\n M141 S[overall_chamber_temperature]\nM623\n\nM622 J2\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : (first_filaments[0] != -1 ? first_filaments[0] : 0))]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : (first_filaments[0] != -1 ? first_filaments[0] : 0))}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : (first_filaments[1] != -1 ? first_filaments[1] : 0))]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : (first_filaments[1] != -1 ? first_filaments[1] : 0))}\n M620 D[initial_no_support_hotend]\n G383.3 T{nozzle_temperature_initial_layer[initial_no_support_filament_id]} L{initial_no_support_filament_id}\n M141 S[overall_chamber_temperature]\nM623\n;===== xy ofst cali end =====\n\n M104 S{nozzle_temperature_initial_layer[initial_filament_id]} A\n\n G150.3 ; move to garbage can to wait for temp\n\n;===== wait temperature reaching the reference value =======\n M140 S[bed_temperature_initial_layer_single]\n M190 S[bed_temperature_initial_layer_single]\n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off cooling fan\n\n;===== wait temperature reaching the reference value =======\n\n M1002 gcode_claim_action : 255\n M400\n M975 S1 ; turn on mech mode supression\n M983.4 S0 ; turn off deformation compensation\n\n;============switch again==================\n M211 X0 Y0 Z0 ;turn off soft endstop\n G91\n G1 Z6 F1200\n G90\n M1002 set_filament_type:{filament_type[initial_no_support_filament_id]}\n M620 S[initial_no_support_filament_id]A H[initial_no_support_hotend] B\n M620.22 I[initial_no_support_filament_id] P1 ; enable remote extruder runout auto purge.\n M400\n T[initial_no_support_filament_id] H[initial_no_support_hotend]\n M400\n M628 S0\n M629\n M400\n M621 S[initial_no_support_filament_id]A B\n;============switch again==================\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if bed_temperature_initial_layer_single > 70}\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{-0.003} ; for Textured PEI Plate\n {else}\n G29.1 Z{0.017}\n {endif}\n {else}\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{0.002} ; for Textured PEI Plate\n {else}\n G29.1 Z{0.022}\n {endif}\n {endif}\n\n;===== nozzle load line ===============================\nM1002 gcode_claim_action : 51\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n M400 P50\n M500 D1\n M400 S3\n M109 S{nozzle_temperature_initial_layer[initial_no_support_filament_id]}\n G0 X100 Y0 F24000\n M400\n ;G130 O0 X100 Y-0.4 Z0.6 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2/2.4053} L40 E20 D5\n G130 O0 X100 Y-0.2 Z0.6 F{filament_max_volumetric_speed[initial_no_support_filament_id]/2/2.4053} L40 E12 D4\nG90\n G90\n M83\n G1 Z1\n M400\n;===== noozle load line end ===========================\nM1002 gcode_claim_action : 0\n G29.99\n\n;M993 A1 B1 C1 ; nozzle cam detection allowed.\n\nM620.6 I[initial_no_support_filament_id] H[initial_no_support_hotend] W1 ;enable ams air printing detect\n\n\n{if (filament_type[initial_no_support_filament_id] == \"TPU\")}\nM1015.3 S1 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]};enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[initial_no_support_filament_id] == \"PLA\") || (filament_type[initial_no_support_filament_id] == \"PETG\")\n || (filament_type[initial_no_support_filament_id] == \"PLA-CF\") || (filament_type[initial_no_support_filament_id] == \"PETG-CF\")}\nM1015.4 S1 K1 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H{nozzle_diameter_at_nozzle_id[initial_nozzle_id]} ;disable E air printing detect\n{endif}\n\n", - "time_lapse_gcode": ";======== X2D timelapse gcode ========\n;======== 2026/06/03 ========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firware, default turned on\n\nM1002 judge_flag timelapse_record_flag\n\nM622 J1\n {if !spiral_mode && !(has_timelapse_safe_pos) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n M83\n G1 Z{max_layer_z + 0.4} F1200\n M400\n {endif}\n {endif}\n\n {if timelapse_inline_photo}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {elsif has_timelapse_safe_pos && !spiral_mode}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} U{timelapse_pos_x} V{timelapse_pos_y} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {else}\n {if spiral_mode}\n M971 S11 C10 O0\n M1004 S5 P1 ; external shutter\n {else}\n M9711 M{timelapse_type} E{most_used_physical_extruder_id} Z{layer_z + (farthest_point_timelapse_enabled ? 0.0 : 0.4)} S11 C10 O0 T3000\n {endif}\n {endif}\n\n {if !spiral_mode && !(has_timelapse_safe_pos) }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n G90\n G1 Z{max_layer_z + 3.0} F1200\n G91\n G0 Y-20 F18000\n G90\n M83\n {endif}\n {endif}\nM623\n; SKIPPABLE_END\n", - "nozzle_diameter": [ - "0.4", - "0.4" - ], - "printer_model": "Bambu Lab X2D", - "printer_variant": "0.4", - "default_filament_profile": [ - "Bambu PLA Basic @BBL X2D 0.4 nozzle" - ], - "default_print_profile": "0.20mm Standard @BBL X2D", - "deretract_speed_extruder_change": [ - "30", - "30", - "90", - "90" - ], - "deretraction_speed": [ - "30", - "30", - "20", - "20" - ], - "enable_long_retraction_when_cut": "2", - "enable_pre_heating": "1", - "extruder_clearance_height_to_lid": "133", - "extruder_clearance_height_to_rod": "32.8", - "extruder_clearance_max_radius": "60", - "extruder_height_gap": "7", - "extruder_printable_area": [ - "0x0,256x0,256x256,0x256", - "20.5x0,256x0,256x256,20.5x256" - ], - "extruder_printable_height": [ - "261", - "256" - ], - "extruder_type": [ - "Direct Drive", - "Bowden" - ], - "extruder_variant_list": [ - "Direct Drive Standard,Direct Drive High Flow", - "Bowden Standard,Bowden High Flow" - ], - "fan_direction": "both", - "group_algo_with_time": "1", - "hotend_heating_rate": [ - "1.5", - "1.5", - "1.5", - "1.5" - ], - "machine_max_acceleration_e": [ - "30000", - "5000", - "30000", - "5000", - "5000", - "5000", - "5000", - "5000" - ], - "machine_max_acceleration_retracting": [ - "30000", - "5000", - "30000", - "5000", - "30000", - "5000", - "30000", - "5000" - ], - "machine_max_speed_e": [ - "30", - "30", - "30", - "30", - "120", - "120", - "120", - "120" - ], - "machine_max_speed_x": [ - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "machine_max_speed_y": [ - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "printable_area": [ - "0x0", - "256x0", - "256x256", - "0x256 " - ], - "print_in_clockwise": "1", - "printable_height": "261", - "printer_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "retract_lift_below": [ - "254", - "254", - "254", - "254" - ], - "retraction_length": [ - "0.8", - "0.8", - "2", - "2" - ], - "retraction_speed": [ - "30", - "30", - "20", - "20" - ], - "support_chamber_temp_control": "1", - "support_air_filtration": "1", - "upward_compatible_machine": [ - "Bambu Lab A1 0.4 nozzle", - "Bambu Lab P2S 0.4 nozzle", - "Bambu Lab H2S 0.4 nozzle", - "Bambu Lab H2D 0.4 nozzle", - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab H2C 0.4 nozzle" - ] + "type": "machine", + "name": "Bambu Lab X2D 0.4 nozzle", + "inherits": "fdm_bbl_3dp_002_common", + "from": "system", + "setting_id": "GM045", + "instantiation": "true", + "nozzle_diameter": [ + "0.4", + "0.4" + ], + "printer_model": "Bambu Lab X2D", + "farthest_point_timelapse": "1", + "printer_variant": "0.4", + "default_filament_profile": [ + "Bambu PLA Basic @BBL X2D 0.4 nozzle" + ], + "default_print_profile": "0.20mm Standard @BBL X2D", + "deretract_speed_extruder_change": [ + "30", + "30", + "30", + "90", + "90", + "90" + ], + "deretraction_speed": [ + "30", + "30", + "30", + "20", + "20", + "20" + ], + "enable_long_retraction_when_cut": "2", + "enable_pre_heating": "1", + "extruder_clearance_height_to_lid": "133", + "extruder_clearance_height_to_rod": "32.8", + "extruder_clearance_max_radius": "60", + "extruder_height_gap": "7", + "extruder_printable_area": [ + "0x0,256x0,256x256,0x256", + "20.5x0,256x0,256x256,20.5x256" + ], + "extruder_printable_height": [ + "261", + "256" + ], + "extruder_type": [ + "Direct Drive", + "Bowden" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow,Direct Drive E3D High Flow", + "Bowden Standard,Bowden High Flow,Bowden E3D High Flow" + ], + "fan_direction": "both", + "group_algo_with_time": "1", + "hotend_heating_rate": [ + "1.5", + "1.5", + "1.5", + "1.5", + "1.5", + "1.5" + ], + "include": [ + "Bambu Lab X2D 0.4 nozzle template machine_start_gcode", + "Bambu Lab X2D 0.4 nozzle template machine_end_gcode", + "Bambu Lab X2D 0.4 nozzle template layer_change_gcode", + "Bambu Lab X2D 0.4 nozzle template time_lapse_gcode", + "Bambu Lab X2D 0.4 nozzle template change_filament_gcode" + ], + "machine_max_acceleration_e": [ + "30000", + "5000", + "5000", + "30000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_retracting": [ + "30000", + "5000", + "5000", + "30000", + "5000", + "5000", + "30000", + "5000", + "5000", + "30000", + "5000", + "5000" + ], + "machine_max_speed_e": [ + "30", + "30", + "30", + "30", + "30", + "30", + "120", + "120", + "120", + "120", + "120", + "120" + ], + "machine_max_speed_x": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_y": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "printable_area": [ + "0x0", + "256x0", + "256x256", + "0x256 " + ], + "print_in_clockwise": "1", + "printable_height": "261", + "printer_extruder_id": [ + "1", + "1", + "1", + "2", + "2", + "2" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive E3D High Flow", + "Bowden Standard", + "Bowden High Flow", + "Bowden E3D High Flow" + ], + "retract_lift_below": [ + "254", + "254", + "254", + "254", + "254", + "254" + ], + "retraction_length": [ + "0.8", + "0.8", + "0.8", + "2", + "2", + "2" + ], + "retraction_speed": [ + "30", + "30", + "30", + "20", + "20", + "20" + ], + "support_chamber_temp_control": "1", + "upward_compatible_machine": [ + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2C 0.4 nozzle", + "Bambu Lab A2L 0.4 nozzle" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500", + "500", + "500", + "500", + "500", + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3", + "3", + "3", + "3", + "3", + "3", + "3", + "3", + "3" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift", + "Auto Lift", + "Auto Lift", + "Auto Lift", + "Auto Lift" + ], + "z_hop": [ + "0.4", + "0.4", + "0.4", + "0.4", + "0.4", + "0.4" + ], + "wipe_distance": [ + "2", + "2", + "2", + "2", + "2", + "2" + ], + "wipe": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "retraction_minimum_travel": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "retraction_distances_when_cut": [ + "18", + "18", + "18", + "18", + "18", + "18" + ], + "retract_when_changing_layer": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "retract_restart_extra_toolchange": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "retract_restart_extra": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "retract_lift_above": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "retract_length_toolchange": [ + "2", + "2", + "2", + "2", + "2", + "2" + ], + "retract_before_wipe": [ + "0%", + "0%", + "0%", + "0%", + "0%", + "0%" + ], + "nozzle_volume": [ + "92", + "92", + "92", + "92", + "92", + "92" + ], + "nozzle_flush_dataset": [ + "1", + "2", + "2", + "1", + "2", + "2" + ], + "long_retractions_when_cut": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "machine_max_speed_z": [ + "20", + "20", + "20", + "20", + "20", + "20", + "20", + "20", + "20", + "20", + "20", + "20" + ], + "hotend_cooling_rate": [ + "2", + "2", + "2", + "2", + "2", + "2" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab X2D 0.6 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X2D 0.6 nozzle.json index dc85dedc23..932559e5a2 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X2D 0.6 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X2D 0.6 nozzle.json @@ -1,34 +1,35 @@ { - "type": "machine", - "name": "Bambu Lab X2D 0.6 nozzle", - "inherits": "Bambu Lab X2D 0.4 nozzle", - "from": "system", - "setting_id": "GM047", - "instantiation": "true", - "nozzle_diameter": [ - "0.6", - "0.6" - ], - "printer_model": "Bambu Lab X2D", - "printer_variant": "0.6", - "default_filament_profile": [ - "Bambu PLA Basic @BBL X2D" - ], - "default_print_profile": "0.30mm Standard @BBL X2D 0.6 nozzle", - "max_layer_height": [ - "0.42", - "0.42" - ], - "min_layer_height": [ - "0.12", - "0.12" - ], - "upward_compatible_machine": [ - "Bambu Lab A1 0.6 nozzle", - "Bambu Lab P2S 0.6 nozzle", - "Bambu Lab H2S 0.6 nozzle", - "Bambu Lab H2D 0.6 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2C 0.6 nozzle" - ] + "type": "machine", + "name": "Bambu Lab X2D 0.6 nozzle", + "inherits": "Bambu Lab X2D 0.4 nozzle", + "from": "system", + "setting_id": "GM047", + "instantiation": "true", + "nozzle_diameter": [ + "0.6", + "0.6" + ], + "printer_model": "Bambu Lab X2D", + "printer_variant": "0.6", + "default_filament_profile": [ + "Bambu PLA Basic @BBL X2D 0.6 nozzle" + ], + "default_print_profile": "0.30mm Standard @BBL X2D 0.6 nozzle", + "max_layer_height": [ + "0.42", + "0.42" + ], + "min_layer_height": [ + "0.12", + "0.12" + ], + "upward_compatible_machine": [ + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2C 0.6 nozzle", + "Bambu Lab A2L 0.6 nozzle" + ] } diff --git a/resources/profiles/BBL/machine/Bambu Lab X2D 0.8 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X2D 0.8 nozzle.json index c6ddef3ac8..ffe98bd85e 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X2D 0.8 nozzle.json +++ b/resources/profiles/BBL/machine/Bambu Lab X2D 0.8 nozzle.json @@ -1,34 +1,333 @@ { - "type": "machine", - "name": "Bambu Lab X2D 0.8 nozzle", - "inherits": "Bambu Lab X2D 0.4 nozzle", - "from": "system", - "setting_id": "GM048", - "instantiation": "true", - "nozzle_diameter": [ - "0.8", - "0.8" - ], - "printer_model": "Bambu Lab X2D", - "printer_variant": "0.8", - "default_filament_profile": [ - "Bambu PLA Basic @BBL X2D" - ], - "default_print_profile": "0.40mm Standard @BBL X2D 0.8 nozzle", - "max_layer_height": [ - "0.56", - "0.56" - ], - "min_layer_height": [ - "0.16", - "0.16" - ], - "upward_compatible_machine": [ - "Bambu Lab A1 0.8 nozzle", - "Bambu Lab P2S 0.8 nozzle", - "Bambu Lab H2S 0.8 nozzle", - "Bambu Lab H2D 0.8 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle", - "Bambu Lab H2C 0.8 nozzle" - ] -} + "type": "machine", + "name": "Bambu Lab X2D 0.8 nozzle", + "inherits": "Bambu Lab X2D 0.4 nozzle", + "from": "system", + "setting_id": "GM048", + "instantiation": "true", + "nozzle_diameter": [ + "0.8", + "0.8" + ], + "printer_model": "Bambu Lab X2D", + "printer_variant": "0.8", + "default_filament_profile": [ + "Bambu PLA Basic @BBL X2D 0.8 nozzle" + ], + "default_print_profile": "0.40mm Standard @BBL X2D 0.8 nozzle", + "max_layer_height": [ + "0.56", + "0.56" + ], + "min_layer_height": [ + "0.16", + "0.16" + ], + "upward_compatible_machine": [ + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2C 0.8 nozzle", + "Bambu Lab A2L 0.8 nozzle" + ], + "deretraction_speed": [ + "30", + "30", + "20", + "20" + ], + "hotend_heating_rate": [ + "1.5", + "1.5", + "1.5", + "1.5" + ], + "retraction_length": [ + "0.8", + "0.8", + "2", + "2" + ], + "retraction_speed": [ + "30", + "30", + "20", + "20" + ], + "deretract_speed_extruder_change": [ + "30", + "30", + "90", + "90" + ], + "extruder_variant_list": [ + "Direct Drive Standard,Direct Drive High Flow", + "Bowden Standard,Bowden High Flow" + ], + "printer_extruder_id": [ + "1", + "1", + "2", + "2" + ], + "printer_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "retract_lift_below": [ + "254", + "254", + "254", + "254" + ], + "machine_max_acceleration_e": [ + "30000", + "5000", + "30000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "machine_max_acceleration_extruding": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_retracting": [ + "30000", + "5000", + "30000", + "5000", + "30000", + "5000", + "30000", + "5000" + ], + "machine_max_acceleration_travel": [ + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000", + "9000" + ], + "machine_max_acceleration_x": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_y": [ + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500", + "500", + "500", + "500", + "500", + "500", + "500" + ], + "machine_max_jerk_e": [ + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5", + "2.5" + ], + "machine_max_jerk_x": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9", + "9", + "9", + "9", + "9", + "9", + "9" + ], + "machine_max_jerk_z": [ + "3", + "3", + "3", + "3", + "3", + "3", + "3", + "3" + ], + "machine_max_speed_z": [ + "20", + "20", + "20", + "20", + "20", + "20", + "20", + "20" + ], + "machine_max_speed_y": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_x": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "machine_max_speed_e": [ + "30", + "30", + "30", + "30", + "120", + "120", + "120", + "120" + ], + "z_hop_types": [ + "Auto Lift", + "Auto Lift", + "Auto Lift", + "Auto Lift" + ], + "z_hop": [ + "0.4", + "0.4", + "0.4", + "0.4" + ], + "wipe_distance": [ + "2", + "2", + "2", + "2" + ], + "wipe": [ + "1", + "1", + "1", + "1" + ], + "retraction_minimum_travel": [ + "1", + "1", + "1", + "1" + ], + "retraction_distances_when_cut": [ + "18", + "18", + "18", + "18" + ], + "retract_when_changing_layer": [ + "1", + "1", + "1", + "1" + ], + "retract_restart_extra_toolchange": [ + "0", + "0", + "0", + "0" + ], + "retract_restart_extra": [ + "0", + "0", + "0", + "0" + ], + "retract_lift_above": [ + "0", + "0", + "0", + "0" + ], + "retract_length_toolchange": [ + "2", + "2", + "2", + "2" + ], + "retract_before_wipe": [ + "0%", + "0%", + "0%", + "0%" + ], + "nozzle_volume": [ + "92", + "92", + "92", + "92" + ], + "nozzle_flush_dataset": [ + "1", + "2", + "1", + "2" + ], + "long_retractions_when_cut": [ + "0", + "0", + "0", + "0" + ], + "hotend_cooling_rate": [ + "2", + "2", + "2", + "2" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/Bambu Lab X2D.json b/resources/profiles/BBL/machine/Bambu Lab X2D.json index 95e65f3b1e..ed32f5c7c9 100644 --- a/resources/profiles/BBL/machine/Bambu Lab X2D.json +++ b/resources/profiles/BBL/machine/Bambu Lab X2D.json @@ -1,18 +1,18 @@ { - "type": "machine_model", - "name": "Bambu Lab X2D", - "nozzle_diameter": "0.4;0.2;0.6;0.8", - "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1 Carbon.json", - "bed_model": "bbl-3dp-X1.stl", - "bed_texture": "bbl-3dp-logo.svg", - "image_bed_type": "n", - "bottom_texture_end_name": "n", - "bottom_texture_rect": "74,-10,148,12", - "default_bed_type": "Textured PEI Plate", - "family": "BBL-3DP", - "middle_texture_rect": "13,240,236.12,10", - "machine_tech": "FFF", - "model_id": "N6", - "not_support_bed_type": "Cool Plate", - "default_materials": "Bambu PLA Matte @BBL X2D;Bambu PLA Matte @BBL X2D 0.4 nozzle;Bambu PLA Basic @BBL X2D;Bambu PLA Basic @BBL X2D 0.4 nozzle;Bambu TPU 95A @BBL X2D;Bambu TPU 95A @BBL X2D 0.4 nozzle;Generic TPU @BBL X2D;Generic TPU @BBL X2D 0.4 nozzle;Bambu PETG Basic @BBL X2D;Bambu PETG Basic @BBL X2D 0.4 nozzle;Bambu PETG HF @BBL X2D;Bambu PETG HF @BBL X2D 0.4 nozzle;Bambu ABS @BBL X2D;Bambu ABS @BBL X2D 0.4 nozzle;Bambu PC @BBL X2D;Bambu PC @BBL X2D 0.4 nozzle;Bambu PLA Basic @BBL X2D 0.2 nozzle" -} + "type": "machine_model", + "name": "Bambu Lab X2D", + "nozzle_diameter": "0.4;0.2;0.6;0.8", + "url": "http://www.bambulab.com/Parameters/printer_model/Bambu Lab X1 Carbon.json", + "bed_model": "bbl-3dp-X1.stl", + "bed_texture": "bbl-3dp-logo.svg", + "image_bed_type": "n", + "bottom_texture_end_name": "n", + "bottom_texture_rect": "74,-10,148,12", + "default_bed_type": "Textured PEI Plate", + "family": "BBL-3DP", + "middle_texture_rect": "13,240,236.12,10", + "machine_tech": "FFF", + "model_id": "N6", + "not_support_bed_type": "Cool Plate", + "default_materials": "Bambu PLA Matte @BBL X2D;Bambu PLA Basic @BBL X2D 0.4 nozzle;Bambu TPU 95A @BBL X2D;Generic TPU @BBL X2D;Bambu PETG Basic @BBL X2D;Bambu PETG HF @BBL X2D;Bambu ABS @BBL X2D;Bambu PC @BBL X2D;Bambu PLA Pure @BBL X2D 0.4 nozzle;Bambu PLA Basic @BBL X2D 0.2 nozzle;Bambu PLA Matte @BBL X2D 0.4 nozzle;Bambu TPU 95A @BBL X2D 0.4 nozzle;Generic TPU @BBL X2D 0.4 nozzle;Bambu PETG Basic @BBL X2D 0.4 nozzle;Bambu PETG HF @BBL X2D 0.4 nozzle;Bambu ABS @BBL X2D 0.4 nozzle;Bambu PC @BBL X2D 0.4 nozzle" +} \ No newline at end of file diff --git a/resources/profiles/BBL/machine/fdm_bbl_3dp_001_common.json b/resources/profiles/BBL/machine/fdm_bbl_3dp_001_common.json index e3670c57fd..c0ac9a1843 100644 --- a/resources/profiles/BBL/machine/fdm_bbl_3dp_001_common.json +++ b/resources/profiles/BBL/machine/fdm_bbl_3dp_001_common.json @@ -113,9 +113,6 @@ "0", "0" ], - "nozzle_type": [ - "hardened_steel" - ], "nozzle_volume": [ "107" ], diff --git a/resources/profiles/BBL/machine/fdm_bbl_3dp_002_common.json b/resources/profiles/BBL/machine/fdm_bbl_3dp_002_common.json index 841d56533c..a5eaf8c6f5 100644 --- a/resources/profiles/BBL/machine/fdm_bbl_3dp_002_common.json +++ b/resources/profiles/BBL/machine/fdm_bbl_3dp_002_common.json @@ -60,6 +60,10 @@ "0", "0" ], + "extruder_max_nozzle_count": [ + "1", + "1" + ], "head_wrap_detect_zone": [], "hotend_cooling_rate": [ "2", @@ -252,12 +256,6 @@ "1", "2" ], - "nozzle_type": [ - "hardened_steel", - "hardened_steel", - "hardened_steel", - "hardened_steel" - ], "nozzle_volume": [ "92", "92", diff --git a/resources/profiles/BBL/machine/fdm_machine_common.json b/resources/profiles/BBL/machine/fdm_machine_common.json index b10072a284..1016397166 100644 --- a/resources/profiles/BBL/machine/fdm_machine_common.json +++ b/resources/profiles/BBL/machine/fdm_machine_common.json @@ -8,7 +8,6 @@ ], "printer_variant": "0.4", "auxiliary_fan": "1", - "apply_top_surface_compensation": "0", "best_object_pos": "0.5x0.5", "default_filament_profile": [], "default_print_profile": "0.16mm Optimal @BBL X1C", @@ -24,20 +23,25 @@ ], "enable_long_retraction_when_cut": "0", "enable_pre_heating": "0", - "bed_temperature_formula": "by_first_filament", + "extruder_height_gap": "0", + "extruder_offset": [ + "0x0" + ], + "fan_direction": "undefine", + "gcode_flavor": "marlin", + "grab_length": [ + "0" + ], + "group_algo_with_time": "0", + "extruder_max_nozzle_count": [ + "1" + ], "hotend_cooling_rate": [ "2" ], "hotend_heating_rate": [ "2" ], - "extruder_offset": [ - "0x0" - ], - "gcode_flavor": "marlin", - "grab_length": [ - "0" - ], "long_retractions_when_cut": [ "0" ], @@ -60,6 +64,9 @@ "machine_max_acceleration_z": [ "100" ], + "machine_max_force_Y": "0", + "machine_bed_mass_Y": "0", + "machine_max_printed_mass": "0", "machine_max_jerk_e": [ "5" ], @@ -93,6 +100,7 @@ "machine_prepare_compensation_time": "260", "machine_switch_extruder_time": "0", "machine_unload_filament_time": "29", + "machine_hotend_change_time": "0", "master_extruder_id": "1", "max_layer_height": [ "0.28" @@ -104,6 +112,7 @@ "nozzle_flush_dataset": [ "0" ], + "print_in_clockwise": "0", "printable_height": "250", "printer_settings_id": "", "printer_structure": "corexy", @@ -136,13 +145,12 @@ "60" ], "scan_first_layer": "0", - "enable_power_loss_recovery": "printer_configuration", "single_extruder_multi_material": "1", "support_air_filtration": "0", "support_cooling_filter": "0", + "support_fast_purge_mode": "0", "cooling_filter_enabled": "0", "support_chamber_temp_control": "0", - "support_fast_purge_mode": "0", "support_object_skip_flush": "0", "wipe": [ "1" @@ -156,7 +164,5 @@ "machine_end_gcode": "M400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-4.0 F3600; retract \nG91\nG1 Z3;\nM104 S0 ; turn off hotend\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nG90 \nG0 X110 Y200 F3600 \nprint_end", "time_lapse_gcode": "", "wrapping_detection_gcode": "", - "change_filament_gcode": "", - "purge_in_prime_tower": "0", - "enable_filament_ramming": "0" + "change_filament_gcode": "" } diff --git a/resources/profiles/BBL/process/0.06mm Fine @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/process/0.06mm Fine @BBL A1 0.2 nozzle.json index 0cc680e2d1..225f9366ca 100644 --- a/resources/profiles/BBL/process/0.06mm Fine @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.06mm Fine @BBL A1 0.2 nozzle.json @@ -1,25 +1,25 @@ { - "type": "process", - "name": "0.06mm Fine @BBL A1 0.2 nozzle", - "inherits": "fdm_process_single_0.06_nozzle_0.2", - "from": "system", - "setting_id": "GP084", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "initial_layer_infill_speed": [ - "28" - ], - "initial_layer_speed": [ - "16" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "process", + "name": "0.06mm Fine @BBL A1 0.2 nozzle", + "inherits": "fdm_process_single_0.06_nozzle_0.2", + "from": "system", + "setting_id": "GP084", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "initial_layer_infill_speed": [ + "28" + ], + "initial_layer_speed": [ + "16" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.06mm Fine @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/process/0.06mm Fine @BBL A1M 0.2 nozzle.json index 68c6ffe660..2782eaafee 100644 --- a/resources/profiles/BBL/process/0.06mm Fine @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.06mm Fine @BBL A1M 0.2 nozzle.json @@ -1,24 +1,24 @@ { - "type": "process", - "name": "0.06mm Fine @BBL A1M 0.2 nozzle", - "inherits": "fdm_process_single_0.06_nozzle_0.2", - "from": "system", - "setting_id": "GP050", - "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.", - "default_acceleration": [ - "6000" - ], - "initial_layer_speed": [ - "16" - ], - "initial_layer_infill_speed": [ - "28" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "process", + "name": "0.06mm Fine @BBL A1M 0.2 nozzle", + "inherits": "fdm_process_single_0.06_nozzle_0.2", + "from": "system", + "setting_id": "GP050", + "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.", + "default_acceleration": [ + "6000" + ], + "initial_layer_speed": [ + "16" + ], + "initial_layer_infill_speed": [ + "28" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.06mm Fine @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/process/0.06mm Fine @BBL P1P 0.2 nozzle.json index 7eae54fd49..9ae841723a 100644 --- a/resources/profiles/BBL/process/0.06mm Fine @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.06mm Fine @BBL P1P 0.2 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,6 +43,22 @@ "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" + ], "outer_wall_acceleration": [ "2500", "2500" @@ -75,10 +79,6 @@ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.06mm High Quality @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/process/0.06mm High Quality @BBL A1 0.2 nozzle.json index cb31da1441..15f6fbb663 100644 --- a/resources/profiles/BBL/process/0.06mm High Quality @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.06mm High Quality @BBL A1 0.2 nozzle.json @@ -1,32 +1,32 @@ { - "type": "process", - "name": "0.06mm High Quality @BBL A1 0.2 nozzle", - "inherits": "fdm_process_single_0.06_nozzle_0.2", - "from": "system", - "setting_id": "GP118", - "instantiation": "true", - "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.075", - "initial_layer_infill_speed": [ - "28" - ], - "initial_layer_speed": [ - "16" - ], - "outer_wall_acceleration": [ - "2000" - ], - "outer_wall_speed": [ - "60" - ], - "sparse_infill_pattern": "gyroid", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "process", + "name": "0.06mm High Quality @BBL A1 0.2 nozzle", + "inherits": "fdm_process_single_0.06_nozzle_0.2", + "from": "system", + "setting_id": "GP118", + "instantiation": "true", + "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.075", + "initial_layer_infill_speed": [ + "28" + ], + "initial_layer_speed": [ + "16" + ], + "outer_wall_acceleration": [ + "2000" + ], + "outer_wall_speed": [ + "60" + ], + "sparse_infill_pattern": "gyroid", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.06mm High Quality @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/process/0.06mm High Quality @BBL A1M 0.2 nozzle.json index d4f8971af4..8f1f3ee9fe 100644 --- a/resources/profiles/BBL/process/0.06mm High Quality @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.06mm High Quality @BBL A1M 0.2 nozzle.json @@ -1,31 +1,31 @@ { - "type": "process", - "name": "0.06mm High Quality @BBL A1M 0.2 nozzle", - "inherits": "fdm_process_single_0.06_nozzle_0.2", - "from": "system", - "setting_id": "GP117", - "instantiation": "true", - "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": [ - "3000" - ], - "initial_layer_speed": [ - "16" - ], - "initial_layer_infill_speed": [ - "28" - ], - "outer_wall_speed": [ - "60" - ], - "outer_wall_acceleration": [ - "2000" - ], - "sparse_infill_pattern": "gyroid", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "process", + "name": "0.06mm High Quality @BBL A1M 0.2 nozzle", + "inherits": "fdm_process_single_0.06_nozzle_0.2", + "from": "system", + "setting_id": "GP117", + "instantiation": "true", + "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": [ + "3000" + ], + "initial_layer_speed": [ + "16" + ], + "initial_layer_infill_speed": [ + "28" + ], + "outer_wall_speed": [ + "60" + ], + "outer_wall_acceleration": [ + "2000" + ], + "sparse_infill_pattern": "gyroid", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.06mm High Quality @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/process/0.06mm High Quality @BBL P1P 0.2 nozzle.json index 9ccca5434e..517fe80a9b 100644 --- a/resources/profiles/BBL/process/0.06mm High Quality @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.06mm High Quality @BBL P1P 0.2 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,14 +43,26 @@ "6000", "6000" ], - "outer_wall_acceleration": [ - "2000", - "2000" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" ], "outer_wall_speed": [ "60", "60" ], + "outer_wall_acceleration": [ + "2000", + "2000" + ], "overhang_1_4_speed": [ "0", "0" @@ -92,6 +92,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -128,34 +136,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.06mm High Quality @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/process/0.06mm High Quality @BBL X1C 0.2 nozzle.json index 80edd032c6..8323ef79d2 100644 --- a/resources/profiles/BBL/process/0.06mm High Quality @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.06mm High Quality @BBL X1C 0.2 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,14 +43,26 @@ "6000", "6000" ], - "outer_wall_acceleration": [ - "2000", - "2000" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" ], "outer_wall_speed": [ "60", "60" ], + "outer_wall_acceleration": [ + "2000", + "2000" + ], "overhang_1_4_speed": [ "0", "0" @@ -92,6 +92,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -128,34 +136,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.06mm Standard @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/process/0.06mm Standard @BBL X1C 0.2 nozzle.json index b1bfc9052a..cbd74e9244 100644 --- a/resources/profiles/BBL/process/0.06mm Standard @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.06mm Standard @BBL X1C 0.2 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,6 +43,22 @@ "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" + ], "outer_wall_acceleration": [ "5000", "5000" @@ -75,10 +79,6 @@ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.08mm Extra Fine @BBL A1.json b/resources/profiles/BBL/process/0.08mm Extra Fine @BBL A1.json index eb39d07cbb..c60006d3d7 100644 --- a/resources/profiles/BBL/process/0.08mm Extra Fine @BBL A1.json +++ b/resources/profiles/BBL/process/0.08mm Extra Fine @BBL A1.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.08mm Extra Fine @BBL A1", - "inherits": "fdm_process_single_0.08", - "from": "system", - "setting_id": "GP076", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "process", + "name": "0.08mm Extra Fine @BBL A1", + "inherits": "fdm_process_single_0.08", + "from": "system", + "setting_id": "GP076", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.08mm Extra Fine @BBL A1M.json b/resources/profiles/BBL/process/0.08mm Extra Fine @BBL A1M.json index f663382bc1..8e31867e15 100644 --- a/resources/profiles/BBL/process/0.08mm Extra Fine @BBL A1M.json +++ b/resources/profiles/BBL/process/0.08mm Extra Fine @BBL A1M.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.08mm Extra Fine @BBL A1M", - "inherits": "fdm_process_single_0.08", - "from": "system", - "setting_id": "GP049", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "process", + "name": "0.08mm Extra Fine @BBL A1M", + "inherits": "fdm_process_single_0.08", + "from": "system", + "setting_id": "GP049", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.08mm Extra Fine @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/process/0.08mm Extra Fine @BBL H2D 0.2 nozzle.json index 028660c893..9178ef5c0c 100644 --- a/resources/profiles/BBL/process/0.08mm Extra Fine @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.08mm Extra Fine @BBL H2D 0.2 nozzle.json @@ -1,38 +1,39 @@ { - "type": "process", - "name": "0.08mm Extra Fine @BBL H2D 0.2 nozzle", - "inherits": "fdm_process_dual_0.08_nozzle_0.2", - "from": "system", - "setting_id": "GP139", - "instantiation": "true", - "description": "High quality profile for 0.2mm nozzle, prioritizing print quality.", - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "initial_layer_speed": [ - "40", - "40", - "40", - "40" - ], - "overhang_1_4_speed": [ - "60", - "60", - "60", - "60" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ] -} + "type": "process", + "name": "0.08mm Extra Fine @BBL H2D 0.2 nozzle", + "inherits": "fdm_process_dual_0.08_nozzle_0.2", + "from": "system", + "setting_id": "GP139", + "instantiation": "true", + "description": "High quality profile for 0.2mm nozzle, prioritizing print quality.", + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "40", + "40", + "40", + "40" + ], + "overhang_1_4_speed": [ + "60", + "60", + "60", + "60" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.08mm Extra Fine @BBL H2D.json b/resources/profiles/BBL/process/0.08mm Extra Fine @BBL H2D.json index 64624b0bec..185c792b7e 100644 --- a/resources/profiles/BBL/process/0.08mm Extra Fine @BBL H2D.json +++ b/resources/profiles/BBL/process/0.08mm Extra Fine @BBL H2D.json @@ -5,32 +5,59 @@ "from": "system", "setting_id": "GP136", "instantiation": "true", - "default_acceleration": [ - "4000", - "4000", - "4000", - "4000", - "4000" - ], - "gap_infill_speed": [ + "bridge_speed": [ + "50", + "50", "50", "50", "50", "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70", - "70", - "70", - "70" + "default_acceleration": [ + "4000", + "4000", + "4000", + "4000", + "4000", + "4000", + "4000" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "enable_tower_interface_features": "1", + "gap_infill_speed": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50" ], "initial_layer_speed": [ "40", "40", "40", "40", + "40", + "40", "40" ], "inner_wall_speed": [ @@ -38,6 +65,8 @@ "120", "120", "120", + "120", + "120", "120" ], "internal_solid_infill_speed": [ @@ -45,27 +74,71 @@ "120", "120", "120", + "120", + "120", "120" ], - "outer_wall_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70", + "70", + "70", + "70", + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" ], "outer_wall_speed": [ "60", "60", "60", "60", + "60", + "60", "60" ], + "outer_wall_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], "overhang_1_4_speed": [ "60", "60", "60", "60", + "60", + "60", "60" ], "overhang_2_4_speed": [ @@ -73,6 +146,8 @@ "30", "30", "30", + "30", + "30", "30" ], "overhang_3_4_speed": [ @@ -80,73 +155,26 @@ "10", "10", "10", + "10", + "10", "10" ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_pattern": "gyroid", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100", - "100" - ], - "top_surface_speed": [ - "120", - "120", - "120", - "120", - "120" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "bridge_speed": [ - "50", - "50", - "50", - "50", - "50" - ], - "enable_overhang_speed": [ - "1", - "1", - "1", - "1", - "1" - ], - "initial_layer_acceleration": [ - "500", - "500", - "500", - "500", - "500" - ], - "initial_layer_travel_acceleration": [ - "6000", - "6000", - "6000", - "6000", - "6000" - ], - "inner_wall_acceleration": [ - "0", - "0", - "0", - "0", - "0" - ], "overhang_4_4_speed": [ "10", "10", "10", "10", + "10", + "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", + "1", + "2", "2", "2", "2" @@ -154,36 +182,29 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Direct Drive Standard", "Direct Drive High Flow", - "Direct Drive TPU High Flow" + "Direct Drive TPU High Flow", + "Direct Drive E3D High Flow" ], - "small_perimeter_speed": [ - "50%", - "50%", - "50%", - "50%", - "50%" - ], - "small_perimeter_threshold": [ - "0", - "0", - "0", - "0", - "0" - ], - "sparse_infill_acceleration": [ - "100%", - "100%", - "100%", - "100%", - "100%" + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100", + "100", + "100", + "100" ], "support_interface_speed": [ "80", "80", "80", "80", + "80", + "80", "80" ], "support_speed": [ @@ -191,34 +212,164 @@ "150", "150", "150", + "150", + "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "top_surface_speed": [ + "120", + "120", + "120", + "120", + "120", + "120", + "120" ], "travel_acceleration": [ "10000", "10000", "10000", "10000", + "10000", + "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250", + "250" + ], "travel_speed": [ "500", "500", "500", "500", + "500", + "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1", + "1" + ], "travel_speed_z": [ "0", "0", "0", "0", + "0", + "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.08mm Extra Fine @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/process/0.08mm Extra Fine @BBL H2DP 0.2 nozzle.json index 9b3e95027b..64b7278bdd 100644 --- a/resources/profiles/BBL/process/0.08mm Extra Fine @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.08mm Extra Fine @BBL H2DP 0.2 nozzle.json @@ -1,38 +1,38 @@ { - "type": "process", - "name": "0.08mm Extra Fine @BBL H2DP 0.2 nozzle", - "inherits": "fdm_process_dual_0.08_nozzle_0.2", - "from": "system", - "setting_id": "GP040", - "instantiation": "true", - "description": "High quality profile for 0.2mm nozzle, prioritizing print quality.", - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "initial_layer_speed": [ - "40", - "40", - "40", - "40" - ], - "overhang_1_4_speed": [ - "60", - "60", - "60", - "60" - ], - "prime_tower_width": "60", - "prime_tower_brim_width": "-1", - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ] -} + "type": "process", + "name": "0.08mm Extra Fine @BBL H2DP 0.2 nozzle", + "inherits": "fdm_process_dual_0.08_nozzle_0.2", + "from": "system", + "setting_id": "GP040", + "instantiation": "true", + "description": "High quality profile for 0.2mm nozzle, prioritizing print quality.", + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "initial_layer_speed": [ + "40", + "40", + "40", + "40" + ], + "overhang_1_4_speed": [ + "60", + "60", + "60", + "60" + ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.08mm Extra Fine @BBL H2DP.json b/resources/profiles/BBL/process/0.08mm Extra Fine @BBL H2DP.json index 122190afd4..08bcd98c31 100644 --- a/resources/profiles/BBL/process/0.08mm Extra Fine @BBL H2DP.json +++ b/resources/profiles/BBL/process/0.08mm Extra Fine @BBL H2DP.json @@ -5,6 +5,13 @@ "from": "system", "setting_id": "GP043", "instantiation": "true", + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50" + ], "default_acceleration": [ "4000", "4000", @@ -12,6 +19,20 @@ "4000", "4000" ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], "gap_infill_speed": [ "50", "50", @@ -40,6 +61,20 @@ "120", "120" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500" + ], "initial_layer_infill_speed": [ "70", "70", @@ -47,6 +82,13 @@ "70", "70" ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0" + ], "outer_wall_speed": [ "60", "60", @@ -82,61 +124,6 @@ "10", "10" ], - "prime_tower_width": "60", - "prime_tower_brim_width": "-1", - "sparse_infill_pattern": "gyroid", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100", - "100" - ], - "top_surface_speed": [ - "120", - "120", - "120", - "120", - "120" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "bridge_speed": [ - "50", - "50", - "50", - "50", - "50" - ], - "enable_overhang_speed": [ - "1", - "1", - "1", - "1", - "1" - ], - "initial_layer_acceleration": [ - "500", - "500", - "500", - "500", - "500" - ], - "initial_layer_travel_acceleration": [ - "6000", - "6000", - "6000", - "6000", - "6000" - ], - "inner_wall_acceleration": [ - "0", - "0", - "0", - "0", - "0" - ], "overhang_4_4_speed": [ "10", "10", @@ -144,6 +131,8 @@ "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", @@ -158,6 +147,70 @@ "Direct Drive High Flow", "Direct Drive TPU High Flow" ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100", + "100" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], "small_perimeter_speed": [ "50%", "50%", @@ -179,26 +232,12 @@ "100%", "100%" ], - "support_interface_speed": [ - "80", - "80", - "80", - "80", - "80" - ], - "support_speed": [ - "150", - "150", - "150", - "150", - "150" - ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" + "top_surface_speed": [ + "120", + "120", + "120", + "120", + "120" ], "travel_acceleration": [ "10000", @@ -207,6 +246,13 @@ "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], "travel_speed": [ "500", "500", @@ -214,11 +260,35 @@ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" + ], "travel_speed_z": [ "0", "0", "0", "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.08mm Extra Fine @BBL P1P.json b/resources/profiles/BBL/process/0.08mm Extra Fine @BBL P1P.json index 0c9ed0c2d3..423b16e0df 100644 --- a/resources/profiles/BBL/process/0.08mm Extra Fine @BBL P1P.json +++ b/resources/profiles/BBL/process/0.08mm Extra Fine @BBL P1P.json @@ -26,10 +26,6 @@ "350", "350" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ "50", "50" @@ -42,22 +38,30 @@ "350", "350" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], "outer_wall_speed": [ "200", "200" ], + "outer_wall_acceleration": [ + "5000", + "5000" + ], "overhang_1_4_speed": [ "60", "60" @@ -70,10 +74,6 @@ "10", "10" ], - "outer_wall_acceleration": [ - "5000", - "5000" - ], "overhang_4_4_speed": [ "10", "10" @@ -90,6 +90,14 @@ "450", "450" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -126,34 +134,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_acceleration": [ - "2000", - "2000" - ], "top_surface_speed": [ "200", "200" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.08mm Extra Fine @BBL X1C.json b/resources/profiles/BBL/process/0.08mm Extra Fine @BBL X1C.json index 60ba1abfa7..4e7ba2f670 100644 --- a/resources/profiles/BBL/process/0.08mm Extra Fine @BBL X1C.json +++ b/resources/profiles/BBL/process/0.08mm Extra Fine @BBL X1C.json @@ -26,10 +26,6 @@ "350", "350" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ "50", "50" @@ -42,22 +38,30 @@ "350", "350" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], "outer_wall_speed": [ "200", "200" ], + "outer_wall_acceleration": [ + "5000", + "5000" + ], "overhang_1_4_speed": [ "60", "60" @@ -70,10 +74,6 @@ "10", "10" ], - "outer_wall_acceleration": [ - "5000", - "5000" - ], "overhang_4_4_speed": [ "10", "10" @@ -90,6 +90,14 @@ "450", "450" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -126,34 +134,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_acceleration": [ - "2000", - "2000" - ], "top_surface_speed": [ "200", "200" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL A1 0.2 nozzle.json index f6e51105a2..36b8a073bb 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL A1 0.2 nozzle.json @@ -1,32 +1,32 @@ { - "type": "process", - "name": "0.08mm High Quality @BBL A1 0.2 nozzle", - "inherits": "fdm_process_single_0.08_nozzle_0.2", - "from": "system", - "setting_id": "GP119", - "instantiation": "true", - "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.075", - "initial_layer_infill_speed": [ - "28" - ], - "initial_layer_speed": [ - "16" - ], - "outer_wall_acceleration": [ - "2000" - ], - "outer_wall_speed": [ - "60" - ], - "sparse_infill_pattern": "gyroid", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "process", + "name": "0.08mm High Quality @BBL A1 0.2 nozzle", + "inherits": "fdm_process_single_0.08_nozzle_0.2", + "from": "system", + "setting_id": "GP119", + "instantiation": "true", + "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.075", + "initial_layer_infill_speed": [ + "28" + ], + "initial_layer_speed": [ + "16" + ], + "outer_wall_acceleration": [ + "2000" + ], + "outer_wall_speed": [ + "60" + ], + "sparse_infill_pattern": "gyroid", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL A1.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL A1.json index 9c183b14b9..ae14ead2b3 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL A1.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL A1.json @@ -1,41 +1,41 @@ { - "type": "process", - "name": "0.08mm High Quality @BBL A1", - "inherits": "fdm_process_single_0.08", - "from": "system", - "setting_id": "GP102", - "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" - ], - "elefant_foot_compensation": "0.075", - "gap_infill_speed": [ - "210" - ], - "inner_wall_speed": [ - "120" - ], - "internal_solid_infill_speed": [ - "150" - ], - "outer_wall_acceleration": [ - "2000" - ], - "outer_wall_speed": [ - "60" - ], - "sparse_infill_pattern": "gyroid", - "sparse_infill_speed": [ - "150" - ], - "top_surface_speed": [ - "150" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "process", + "name": "0.08mm High Quality @BBL A1", + "inherits": "fdm_process_single_0.08", + "from": "system", + "setting_id": "GP102", + "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" + ], + "elefant_foot_compensation": "0.075", + "gap_infill_speed": [ + "210" + ], + "inner_wall_speed": [ + "120" + ], + "internal_solid_infill_speed": [ + "150" + ], + "outer_wall_acceleration": [ + "2000" + ], + "outer_wall_speed": [ + "60" + ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "150" + ], + "top_surface_speed": [ + "150" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL A1M 0.2 nozzle.json index 428c72b7b9..4ad1413552 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL A1M 0.2 nozzle.json @@ -1,31 +1,31 @@ { - "type": "process", - "name": "0.08mm High Quality @BBL A1M 0.2 nozzle", - "inherits": "fdm_process_single_0.08_nozzle_0.2", - "from": "system", - "setting_id": "GP120", - "instantiation": "true", - "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": [ - "3000" - ], - "initial_layer_speed": [ - "16" - ], - "initial_layer_infill_speed": [ - "28" - ], - "outer_wall_speed": [ - "60" - ], - "outer_wall_acceleration": [ - "2000" - ], - "sparse_infill_pattern": "gyroid", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "process", + "name": "0.08mm High Quality @BBL A1M 0.2 nozzle", + "inherits": "fdm_process_single_0.08_nozzle_0.2", + "from": "system", + "setting_id": "GP120", + "instantiation": "true", + "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": [ + "3000" + ], + "initial_layer_speed": [ + "16" + ], + "initial_layer_infill_speed": [ + "28" + ], + "outer_wall_speed": [ + "60" + ], + "outer_wall_acceleration": [ + "2000" + ], + "sparse_infill_pattern": "gyroid", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL A1M.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL A1M.json index d125acc09d..569151b943 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL A1M.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL A1M.json @@ -1,41 +1,41 @@ { - "type": "process", - "name": "0.08mm High Quality @BBL A1M", - "inherits": "fdm_process_single_0.08", - "from": "system", - "setting_id": "GP101", - "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": [ - "3000" - ], - "elefant_foot_compensation": "0", - "gap_infill_speed": [ - "210" - ], - "inner_wall_speed": [ - "120" - ], - "internal_solid_infill_speed": [ - "150" - ], - "outer_wall_speed": [ - "60" - ], - "outer_wall_acceleration": [ - "2000" - ], - "sparse_infill_pattern": "gyroid", - "sparse_infill_speed": [ - "150" - ], - "top_surface_speed": [ - "150" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "process", + "name": "0.08mm High Quality @BBL A1M", + "inherits": "fdm_process_single_0.08", + "from": "system", + "setting_id": "GP101", + "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": [ + "3000" + ], + "elefant_foot_compensation": "0", + "gap_infill_speed": [ + "210" + ], + "inner_wall_speed": [ + "120" + ], + "internal_solid_infill_speed": [ + "150" + ], + "outer_wall_speed": [ + "60" + ], + "outer_wall_acceleration": [ + "2000" + ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "150" + ], + "top_surface_speed": [ + "150" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL A2L 0.2 nozzle.json index c87e2d5d0e..32e0da8c6b 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL A2L 0.2 nozzle.json @@ -9,7 +9,7 @@ "default_acceleration": [ "4000" ], - "elefant_foot_compensation": "0.075", + "elefant_foot_compensation": "0.15", "enable_arc_fitting": "0", "enable_height_slowdown": [ "1" diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL A2L.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL A2L.json index 1d1eb841da..702b75f0bf 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL A2L.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL A2L.json @@ -9,7 +9,6 @@ "default_acceleration": [ "4000" ], - "elefant_foot_compensation": "0.075", "enable_arc_fitting": "0", "enable_height_slowdown": [ "1" @@ -42,9 +41,6 @@ "slowdown_start_acc": [ "8000" ], - "slowdown_start_height": [ - "0" - ], "slowdown_start_speed": [ "500" ], diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL H2C 0.2 nozzle.json index 6552d7b47e..ac6fe2150d 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL H2C 0.2 nozzle.json @@ -1,45 +1,45 @@ { - "type": "process", - "name": "0.08mm High Quality @BBL H2C 0.2 nozzle", - "inherits": "fdm_process_dual_0.08_nozzle_0.2", - "from": "system", - "setting_id": "GP243", - "instantiation": "true", - "description": "High quality profile for 0.2mm nozzle, prioritizing print quality.", - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "enable_tower_interface_features": "1", - "initial_layer_speed": [ - "40", - "40", - "40", - "40" - ], - "overhang_1_4_speed": [ - "60", - "60", - "60", - "60" - ], - "outer_wall_speed": [ - "100", - "100", - "100", - "100" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ] -} + "type": "process", + "name": "0.08mm High Quality @BBL H2C 0.2 nozzle", + "inherits": "fdm_process_dual_0.08_nozzle_0.2", + "from": "system", + "setting_id": "GP243", + "instantiation": "true", + "description": "High quality profile for 0.2mm nozzle, prioritizing print quality.", + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "40", + "40", + "40", + "40" + ], + "overhang_1_4_speed": [ + "60", + "60", + "60", + "60" + ], + "outer_wall_speed": [ + "100", + "100", + "100", + "100" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL H2C.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL H2C.json index be2c204f08..b237b22500 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL H2C.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL H2C.json @@ -9,6 +9,7 @@ "4000", "4000", "4000", + "4000", "4000" ], "enable_tower_interface_features": "1", @@ -16,60 +17,70 @@ "50", "50", "50", + "50", "50" ], "initial_layer_infill_speed": [ "70", "70", "70", + "70", "70" ], "initial_layer_speed": [ "40", "40", "40", + "40", "40" ], "inner_wall_speed": [ "120", "120", "120", + "120", "120" ], "internal_solid_infill_speed": [ "120", "120", "120", + "120", "120" ], "outer_wall_acceleration": [ "2000", "2000", "2000", + "2000", "2000" ], "outer_wall_speed": [ "60", "60", "60", + "60", "60" ], "overhang_1_4_speed": [ "60", "60", "60", + "60", "60" ], "overhang_2_4_speed": [ "30", "30", "30", + "30", "30" ], "overhang_3_4_speed": [ "10", "10", "10", + "10", "10" ], "prime_tower_brim_width": "-1", @@ -79,15 +90,206 @@ "100", "100", "100", + "100", "100" ], "top_surface_speed": [ "120", "120", "120", + "120", "120" ], "compatible_printers": [ "Bambu Lab H2C 0.4 nozzle" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "travel_speed": [ + "500", + "500", + "500", + "500", + "500" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0" + ], + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2" + ], + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive E3D High Flow", + "Direct Drive Standard", + "Direct Drive High Flow" ] } diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL H2S 0.2 nozzle.json index 521f97aad2..4396ab55aa 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL H2S 0.2 nozzle.json @@ -6,52 +6,15 @@ "setting_id": "GP231", "instantiation": "true", "description": "High quality profile for 0.2mm nozzle, prioritizing print quality.", - "default_acceleration": [ - "10000", - "10000" - ], - "initial_layer_speed": [ - "40", - "40" - ], - "overhang_1_4_speed": [ - "60", - "60" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "travel_speed": [ - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "elefant_foot_compensation": "0.15", - "initial_layer_infill_speed": [ - "70", - "70" - ], - "sparse_infill_speed": [ - "100", - "100" - ], - "top_surface_speed": [ - "150", - "150" - ], "bridge_speed": [ "50", "50" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], - "travel_acceleration": [ + "default_acceleration": [ "10000", "10000" ], + "elefant_foot_compensation": "0.15", "enable_overhang_speed": [ "1", "1" @@ -60,6 +23,86 @@ "0", "0" ], + "gap_infill_speed": [ + "50", + "50" + ], + "initial_layer_speed": [ + "40", + "40" + ], + "inner_wall_speed": [ + "150", + "150" + ], + "internal_solid_infill_speed": [ + "150", + "150" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000" + ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "100", + "100" + ], + "outer_wall_acceleration": [ + "5000", + "5000" + ], + "overhang_1_4_speed": [ + "60", + "60" + ], + "overhang_2_4_speed": [ + "50", + "50" + ], + "overhang_3_4_speed": [ + "30", + "30" + ], + "overhang_4_4_speed": [ + "10", + "10" + ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", + "prime_tower_flat_ironing": "1", + "print_extruder_id": [ + "1", + "1" + ], + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "100", + "100" + ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -84,54 +127,6 @@ "100000", "100000" ], - "gap_infill_speed": [ - "50", - "50" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], - "inner_wall_speed": [ - "150", - "150" - ], - "internal_solid_infill_speed": [ - "150", - "150" - ], - "outer_wall_acceleration": [ - "5000", - "5000" - ], - "outer_wall_speed": [ - "100", - "100" - ], - "overhang_2_4_speed": [ - "50", - "50" - ], - "overhang_3_4_speed": [ - "30", - "30" - ], - "overhang_4_4_speed": [ - "10", - "10" - ], - "print_extruder_id": [ - "1", - "1" - ], - "print_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], "small_perimeter_speed": [ "50%", "50%" @@ -144,14 +139,26 @@ "100%", "100%" ], - "support_interface_speed": [ - "80", - "80" - ], - "support_speed": [ + "top_surface_speed": [ "150", "150" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000" + ], "top_surface_acceleration": [ "2000", "2000" @@ -164,6 +171,8 @@ "80%", "80%" ], - "prime_tower_flat_ironing": "1", - "sparse_infill_pattern": "gyroid" + "monotonic_travel_into_wall": "45.0", + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ] } diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL H2S.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL H2S.json index d30d85cdc6..50b9952447 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL H2S.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL H2S.json @@ -5,164 +5,213 @@ "from": "system", "setting_id": "GP232", "instantiation": "true", + "bridge_speed": [ + "50", + "50", + "50" + ], "default_acceleration": [ + "4000", "4000", "4000" ], + "enable_height_slowdown": [ + "0", + "0", + "0" + ], + "enable_overhang_speed": [ + "1", + "1", + "1" + ], "gap_infill_speed": [ + "210", "210", "210" ], + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], "initial_layer_infill_speed": [ + "105", "105", "105" ], "initial_layer_speed": [ "50", - "50" - ], - "inner_wall_speed": [ - "120", - "120" - ], - "internal_solid_infill_speed": [ - "150", - "150" - ], - "outer_wall_acceleration": [ - "2000", - "2000" - ], - "outer_wall_speed": [ - "60", - "60" - ], - "overhang_1_4_speed": [ - "60", - "60" - ], - "overhang_2_4_speed": [ - "30", - "30" - ], - "overhang_3_4_speed": [ - "10", - "10" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_pattern": "gyroid", - "sparse_infill_speed": [ - "150", - "150" - ], - "top_surface_speed": [ - "150", - "150" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle" - ], - "top_shell_thickness": "1.0", - "bridge_speed": [ "50", "50" ], "initial_layer_travel_acceleration": [ + "6000", "6000", "6000" ], - "travel_acceleration": [ - "10000", - "10000" - ], - "enable_overhang_speed": [ - "1", - "1" - ], - "enable_height_slowdown": [ - "0", - "0" - ], - "slowdown_start_height": [ - "0", - "0" - ], - "slowdown_start_speed": [ - "1000", - "1000" - ], - "slowdown_start_acc": [ - "100000", - "100000" - ], - "slowdown_end_height": [ - "400", - "400" - ], - "slowdown_end_speed": [ - "1000", - "1000" - ], - "slowdown_end_acc": [ - "100000", - "100000" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], "inner_wall_acceleration": [ + "0", "0", "0" ], - "overhang_4_4_speed": [ + "inner_wall_speed": [ + "120", + "120", + "120" + ], + "internal_solid_infill_speed": [ + "150", + "150", + "150" + ], + "monotonic_travel_into_wall": "45.0", + "outer_wall_acceleration": [ + "2000", + "2000", + "2000" + ], + "outer_wall_speed": [ + "60", + "60", + "60" + ], + "overhang_1_4_speed": [ + "60", + "60", + "60" + ], + "overhang_2_4_speed": [ + "30", + "30", + "30" + ], + "overhang_3_4_speed": [ + "10", "10", "10" ], + "overhang_4_4_speed": [ + "10", + "10", + "10" + ], + "prime_tower_brim_width": "-1", + "prime_tower_flat_ironing": "1", + "prime_tower_width": "60", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000" + ], + "slowdown_start_height": [ + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000" ], "small_perimeter_speed": [ + "50%", "50%", "50%" ], "small_perimeter_threshold": [ + "0", "0", "0" ], "sparse_infill_acceleration": [ + "100%", "100%", "100%" ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "150", + "150", + "150" + ], "support_interface_speed": [ + "80", "80", "80" ], "support_speed": [ + "150", "150", "150" ], + "top_shell_thickness": "1.0", + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" + ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], + "top_surface_speed": [ + "150", + "150", + "150" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], "travel_speed": [ + "500", "500", "500" ], "travel_speed_z": [ + "0", "0", "0" ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], - "prime_tower_flat_ironing": "1" + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ] } diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL P1P 0.2 nozzle.json index 1d72dc8bc2..50d97550cc 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL P1P 0.2 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,14 +43,26 @@ "6000", "6000" ], - "outer_wall_acceleration": [ - "2000", - "2000" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" ], "outer_wall_speed": [ "60", "60" ], + "outer_wall_acceleration": [ + "2000", + "2000" + ], "overhang_1_4_speed": [ "0", "0" @@ -92,6 +92,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -128,34 +136,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL P1P.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL P1P.json index ab50f11c4d..75e31bb3c2 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL P1P.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL P1P.json @@ -26,6 +26,10 @@ "210", "210" ], + "initial_layer_speed": [ + "50", + "50" + ], "inner_wall_speed": [ "120", "120" @@ -34,34 +38,30 @@ "150", "150" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], - "initial_layer_speed": [ - "50", - "50" + "initial_layer_travel_acceleration": [ + "6000", + "6000" ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" + "outer_wall_speed": [ + "60", + "60" ], "outer_wall_acceleration": [ "2000", "2000" ], - "outer_wall_speed": [ - "60", - "60" - ], "overhang_1_4_speed": [ "60", "60" @@ -91,6 +91,14 @@ "150", "150" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL P2S 0.2 nozzle.json index fba6cdf18b..8ca40003f3 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL P2S 0.2 nozzle.json @@ -6,12 +6,10 @@ "setting_id": "GP204", "instantiation": "true", "description": "High quality profile for 0.2mm nozzle, prioritizing print quality.", - "bottom_surface_pattern": "monotonicline", "bridge_speed": [ "50", "50" ], - "enable_arc_fitting": "0", "default_acceleration": [ "4000", "4000" @@ -28,22 +26,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "50", - "50" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -56,14 +42,30 @@ "6000", "6000" ], - "overhang_1_4_speed": [ + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "50", + "50" + ], + "inner_wall_acceleration": [ "0", + "0" + ], + "outer_wall_speed": [ + "60", "60" ], "outer_wall_acceleration": [ "2000", "2000" ], + "overhang_1_4_speed": [ + "0", + "60" + ], "overhang_2_4_speed": [ "60", "30" @@ -72,16 +74,12 @@ "40", "10" ], - "outer_wall_speed": [ - "60", - "60" - ], "overhang_4_4_speed": [ "20", "10" ], - "prime_tower_brim_width": "-1", "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1" @@ -90,11 +88,20 @@ "Direct Drive Standard", "Direct Drive High Flow" ], + "prime_tower_flat_ironing": "1", "sparse_infill_pattern": "gyroid", "sparse_infill_speed": [ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -131,23 +138,26 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_pattern": "monotonic", - "travel_speed": [ - "600", - "600" - ], "top_surface_speed": [ "150", "150" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000" + ], "top_surface_acceleration": [ "2000", "2000" @@ -156,14 +166,11 @@ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab P2S 0.2 nozzle" ] diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL P2S.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL P2S.json index 89bca9df5b..bd399e65a1 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL P2S.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL P2S.json @@ -5,164 +5,211 @@ "from": "system", "setting_id": "GP205", "instantiation": "true", - "bottom_surface_pattern": "monotonicline", "bridge_speed": [ + "50", "50", "50" ], - "enable_arc_fitting": "0", "default_acceleration": [ + "4000", "4000", "4000" ], "enable_overhang_speed": [ + "1", "1", "1" ], "enable_height_slowdown": [ + "0", "0", "0" ], "gap_infill_speed": [ + "210", "210", "210" ], + "initial_layer_speed": [ + "50", + "50", + "50" + ], "inner_wall_speed": [ + "120", "120", "120" ], "internal_solid_infill_speed": [ + "150", "150", "150" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], - "initial_layer_speed": [ - "50", - "50" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "initial_layer_travel_acceleration": [ + "6000", "6000", "6000" ], - "outer_wall_acceleration": [ - "2000", - "2000" + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0" ], "outer_wall_speed": [ + "60", "60", "60" ], + "outer_wall_acceleration": [ + "2000", + "2000", + "2000" + ], "overhang_1_4_speed": [ "0", + "60", "60" ], "overhang_2_4_speed": [ "60", + "30", "30" ], "overhang_3_4_speed": [ "40", + "10", "10" ], "overhang_4_4_speed": [ "20", + "10", "10" ], - "prime_tower_brim_width": "-1", "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" ], + "prime_tower_flat_ironing": "1", "sparse_infill_pattern": "gyroid", "sparse_infill_speed": [ "150", - "150" - ], - "slowdown_start_height": [ - "0", - "0" - ], - "slowdown_start_speed": [ - "1000", - "1000" - ], - "slowdown_start_acc": [ - "100000", - "100000" - ], - "slowdown_end_height": [ - "400", - "400" - ], - "slowdown_end_speed": [ - "1000", - "1000" - ], - "slowdown_end_acc": [ - "100000", - "100000" - ], - "small_perimeter_speed": [ - "50%", - "50%" - ], - "small_perimeter_threshold": [ - "0", - "0" - ], - "sparse_infill_acceleration": [ - "100%", - "100%" - ], - "support_speed": [ "150", "150" ], "support_interface_speed": [ + "80", "80", "80" ], - "top_surface_speed": [ + "support_speed": [ + "150", "150", "150" ], - "top_surface_pattern": "monotonic", + "slowdown_start_height": [ + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%" + ], + "top_surface_speed": [ + "150", + "150", + "150" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], "travel_speed": [ - "600", - "600" + "1000", + "1000", + "1000" ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], "travel_speed_z": [ + "0", "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab P2S 0.4 nozzle" ] diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL X1C 0.2 nozzle.json index 9ecb07315c..43892532a2 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL X1C 0.2 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,14 +43,26 @@ "6000", "6000" ], - "outer_wall_acceleration": [ - "2000", - "2000" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" ], "outer_wall_speed": [ "60", "60" ], + "outer_wall_acceleration": [ + "2000", + "2000" + ], "overhang_1_4_speed": [ "0", "0" @@ -92,6 +92,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -128,34 +136,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL X1C.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL X1C.json index 46391c740a..877a682ca5 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL X1C.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL X1C.json @@ -26,6 +26,10 @@ "210", "210" ], + "initial_layer_speed": [ + "50", + "50" + ], "inner_wall_speed": [ "120", "120" @@ -34,34 +38,30 @@ "150", "150" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], - "initial_layer_speed": [ - "50", - "50" + "initial_layer_travel_acceleration": [ + "6000", + "6000" ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" + "outer_wall_speed": [ + "60", + "60" ], "outer_wall_acceleration": [ "2000", "2000" ], - "outer_wall_speed": [ - "60", - "60" - ], "overhang_1_4_speed": [ "60", "60" @@ -91,6 +91,14 @@ "150", "150" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL X2D 0.2 nozzle.json index 7fad2321e6..05a7af7e4a 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL X2D 0.2 nozzle.json @@ -1,71 +1,71 @@ { - "type": "process", - "name": "0.08mm High Quality @BBL X2D 0.2 nozzle", - "inherits": "fdm_process_dual_0.08_nozzle_0.2", - "from": "system", - "setting_id": "GP216", - "instantiation": "true", - "description": "High quality profile for 0.2mm nozzle, prioritizing print quality.", - "bridge_flow": "1.5", - "bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "default_acceleration": [ - "4000", - "8000", - "4000", - "4000" - ], - "enable_tower_interface_features": "1", - "initial_layer_speed": [ - "40", - "40", - "20", - "20" - ], - "outer_wall_acceleration": [ - "2000", - "5000", - "5000", - "5000" - ], - "outer_wall_speed": [ - "60", - "120", - "50", - "50" - ], - "overhang_2_4_speed": [ - "40", - "40", - "40", - "40" - ], - "overhang_4_4_speed": [ - "20", - "20", - "20", - "20" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "print_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "sparse_infill_pattern": "gyroid", - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ] -} + "type": "process", + "name": "0.08mm High Quality @BBL X2D 0.2 nozzle", + "inherits": "fdm_process_dual_0.08_nozzle_0.2", + "from": "system", + "setting_id": "GP216", + "instantiation": "true", + "description": "High quality profile for 0.2mm nozzle, prioritizing print quality.", + "bridge_flow": "1.5", + "bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "default_acceleration": [ + "4000", + "8000", + "4000", + "4000" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "40", + "40", + "20", + "20" + ], + "outer_wall_acceleration": [ + "2000", + "5000", + "5000", + "5000" + ], + "outer_wall_speed": [ + "60", + "120", + "50", + "50" + ], + "overhang_2_4_speed": [ + "40", + "40", + "40", + "40" + ], + "overhang_4_4_speed": [ + "20", + "20", + "20", + "20" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_pattern": "gyroid", + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.08mm High Quality @BBL X2D.json b/resources/profiles/BBL/process/0.08mm High Quality @BBL X2D.json index 201721da9e..dab9ea764a 100644 --- a/resources/profiles/BBL/process/0.08mm High Quality @BBL X2D.json +++ b/resources/profiles/BBL/process/0.08mm High Quality @BBL X2D.json @@ -7,6 +7,8 @@ "instantiation": "true", "bridge_flow": "1.5", "bridge_speed": [ + "25", + "25", "25", "25", "25", @@ -15,6 +17,8 @@ "default_acceleration": [ "4000", "4000", + "4000", + "1000", "1000", "1000" ], @@ -22,46 +26,62 @@ "initial_layer_infill_speed": [ "70", "70", + "70", + "100", "100", "100" ], "initial_layer_speed": [ "50", "40", + "40", + "50", "50", "50" ], "inner_wall_speed": [ "120", "120", + "120", + "100", "100", "100" ], "internal_solid_infill_speed": [ "120", "120", + "120", + "100", "100", "100" ], "outer_wall_acceleration": [ "2000", "2000", + "2000", + "1000", "1000", "1000" ], "outer_wall_speed": [ "60", "60", + "60", + "50", "50", "50" ], "overhang_2_4_speed": [ + "40", + "40", "40", "40", "40", "40" ], "overhang_4_4_speed": [ + "20", + "20", "20", "20", "20", @@ -72,11 +92,23 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Bowden Standard", - "Bowden High Flow" + "Bowden High Flow", + "Bowden E3D High Flow" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2", + "2" ], "sparse_infill_pattern": "gyroid", "sparse_infill_speed": [ + "100", + "100", "100", "100", "100", @@ -86,10 +118,14 @@ "top_surface_speed": [ "120", "120", + "120", + "100", "100", "100" ], "travel_speed": [ + "1000", + "1000", "1000", "1000", "1000", @@ -97,5 +133,205 @@ ], "compatible_printers": [ "Bambu Lab X2D 0.4 nozzle" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150", + "150" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80", + "80" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30", + "30", + "30" + ], + "overhang_1_4_speed": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500", + "500" + ], + "gap_infill_speed": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0" ] } diff --git a/resources/profiles/BBL/process/0.08mm Optimal @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/process/0.08mm Optimal @BBL A1 0.2 nozzle.json index 1261079a0a..cae05d9570 100644 --- a/resources/profiles/BBL/process/0.08mm Optimal @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.08mm Optimal @BBL A1 0.2 nozzle.json @@ -1,25 +1,25 @@ { - "type": "process", - "name": "0.08mm Optimal @BBL A1 0.2 nozzle", - "inherits": "fdm_process_single_0.08_nozzle_0.2", - "from": "system", - "setting_id": "GP085", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "initial_layer_infill_speed": [ - "28" - ], - "initial_layer_speed": [ - "16" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "process", + "name": "0.08mm Optimal @BBL A1 0.2 nozzle", + "inherits": "fdm_process_single_0.08_nozzle_0.2", + "from": "system", + "setting_id": "GP085", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "initial_layer_infill_speed": [ + "28" + ], + "initial_layer_speed": [ + "16" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.08mm Optimal @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/process/0.08mm Optimal @BBL A1M 0.2 nozzle.json index 7d85a42520..22cc6b5120 100644 --- a/resources/profiles/BBL/process/0.08mm Optimal @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.08mm Optimal @BBL A1M 0.2 nozzle.json @@ -1,24 +1,24 @@ { - "type": "process", - "name": "0.08mm Optimal @BBL A1M 0.2 nozzle", - "inherits": "fdm_process_single_0.08_nozzle_0.2", - "from": "system", - "setting_id": "GP051", - "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.", - "default_acceleration": [ - "6000" - ], - "initial_layer_speed": [ - "16" - ], - "initial_layer_infill_speed": [ - "28" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "process", + "name": "0.08mm Optimal @BBL A1M 0.2 nozzle", + "inherits": "fdm_process_single_0.08_nozzle_0.2", + "from": "system", + "setting_id": "GP051", + "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.", + "default_acceleration": [ + "6000" + ], + "initial_layer_speed": [ + "16" + ], + "initial_layer_infill_speed": [ + "28" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.08mm Optimal @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/process/0.08mm Optimal @BBL P1P 0.2 nozzle.json index 748fa47e60..00e6966420 100644 --- a/resources/profiles/BBL/process/0.08mm Optimal @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.08mm Optimal @BBL P1P 0.2 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,6 +43,22 @@ "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" + ], "outer_wall_acceleration": [ "2500", "2500" @@ -75,10 +79,6 @@ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.08mm Standard @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/process/0.08mm Standard @BBL X1C 0.2 nozzle.json index de2043ca5f..e39c982b7c 100644 --- a/resources/profiles/BBL/process/0.08mm Standard @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.08mm Standard @BBL X1C 0.2 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,6 +43,22 @@ "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" + ], "outer_wall_acceleration": [ "5000", "5000" @@ -75,10 +79,6 @@ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.10mm High Quality @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/process/0.10mm High Quality @BBL A1 0.2 nozzle.json index bdf92d4828..ae0fb564bc 100644 --- a/resources/profiles/BBL/process/0.10mm High Quality @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.10mm High Quality @BBL A1 0.2 nozzle.json @@ -1,32 +1,32 @@ { - "type": "process", - "name": "0.10mm High Quality @BBL A1 0.2 nozzle", - "inherits": "fdm_process_single_0.10_nozzle_0.2", - "from": "system", - "setting_id": "GP114", - "instantiation": "true", - "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.075", - "initial_layer_infill_speed": [ - "28" - ], - "initial_layer_speed": [ - "16" - ], - "outer_wall_acceleration": [ - "2000" - ], - "outer_wall_speed": [ - "60" - ], - "sparse_infill_pattern": "gyroid", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "process", + "name": "0.10mm High Quality @BBL A1 0.2 nozzle", + "inherits": "fdm_process_single_0.10_nozzle_0.2", + "from": "system", + "setting_id": "GP114", + "instantiation": "true", + "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.075", + "initial_layer_infill_speed": [ + "28" + ], + "initial_layer_speed": [ + "16" + ], + "outer_wall_acceleration": [ + "2000" + ], + "outer_wall_speed": [ + "60" + ], + "sparse_infill_pattern": "gyroid", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.10mm High Quality @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/process/0.10mm High Quality @BBL A1M 0.2 nozzle.json index f05f26152e..89f0ade70d 100644 --- a/resources/profiles/BBL/process/0.10mm High Quality @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.10mm High Quality @BBL A1M 0.2 nozzle.json @@ -1,31 +1,31 @@ { - "type": "process", - "name": "0.10mm High Quality @BBL A1M 0.2 nozzle", - "inherits": "fdm_process_single_0.10_nozzle_0.2", - "from": "system", - "setting_id": "GP113", - "instantiation": "true", - "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": [ - "3000" - ], - "initial_layer_speed": [ - "16" - ], - "initial_layer_infill_speed": [ - "28" - ], - "outer_wall_speed": [ - "60" - ], - "outer_wall_acceleration": [ - "2000" - ], - "sparse_infill_pattern": "gyroid", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "process", + "name": "0.10mm High Quality @BBL A1M 0.2 nozzle", + "inherits": "fdm_process_single_0.10_nozzle_0.2", + "from": "system", + "setting_id": "GP113", + "instantiation": "true", + "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": [ + "3000" + ], + "initial_layer_speed": [ + "16" + ], + "initial_layer_infill_speed": [ + "28" + ], + "outer_wall_speed": [ + "60" + ], + "outer_wall_acceleration": [ + "2000" + ], + "sparse_infill_pattern": "gyroid", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.10mm High Quality @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/process/0.10mm High Quality @BBL P1P 0.2 nozzle.json index 88b2bc08df..85f6814858 100644 --- a/resources/profiles/BBL/process/0.10mm High Quality @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.10mm High Quality @BBL P1P 0.2 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,14 +43,26 @@ "6000", "6000" ], - "outer_wall_acceleration": [ - "2000", - "2000" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" ], "outer_wall_speed": [ "60", "60" ], + "outer_wall_acceleration": [ + "2000", + "2000" + ], "overhang_1_4_speed": [ "0", "0" @@ -92,6 +92,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -128,34 +136,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.10mm High Quality @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/process/0.10mm High Quality @BBL X1C 0.2 nozzle.json index 5dcdb588f1..90164e6c99 100644 --- a/resources/profiles/BBL/process/0.10mm High Quality @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.10mm High Quality @BBL X1C 0.2 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,14 +43,26 @@ "6000", "6000" ], - "outer_wall_acceleration": [ - "2000", - "2000" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" ], "outer_wall_speed": [ "60", "60" ], + "outer_wall_acceleration": [ + "2000", + "2000" + ], "overhang_1_4_speed": [ "0", "0" @@ -92,6 +92,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -128,34 +136,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.10mm Standard @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/process/0.10mm Standard @BBL A1 0.2 nozzle.json index e594e557e5..a62ae0dcf5 100644 --- a/resources/profiles/BBL/process/0.10mm Standard @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.10mm Standard @BBL A1 0.2 nozzle.json @@ -1,25 +1,25 @@ { - "type": "process", - "name": "0.10mm Standard @BBL A1 0.2 nozzle", - "inherits": "fdm_process_single_0.10_nozzle_0.2", - "from": "system", - "setting_id": "GP083", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "initial_layer_infill_speed": [ - "28" - ], - "initial_layer_speed": [ - "16" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "process", + "name": "0.10mm Standard @BBL A1 0.2 nozzle", + "inherits": "fdm_process_single_0.10_nozzle_0.2", + "from": "system", + "setting_id": "GP083", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "initial_layer_infill_speed": [ + "28" + ], + "initial_layer_speed": [ + "16" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.10mm Standard @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/process/0.10mm Standard @BBL A1M 0.2 nozzle.json index 4f7adc8d1c..3b898e8041 100644 --- a/resources/profiles/BBL/process/0.10mm Standard @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.10mm Standard @BBL A1M 0.2 nozzle.json @@ -1,24 +1,24 @@ { - "type": "process", - "name": "0.10mm Standard @BBL A1M 0.2 nozzle", - "inherits": "fdm_process_single_0.10_nozzle_0.2", - "from": "system", - "setting_id": "GP039", - "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.", - "default_acceleration": [ - "6000" - ], - "initial_layer_speed": [ - "16" - ], - "initial_layer_infill_speed": [ - "28" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "process", + "name": "0.10mm Standard @BBL A1M 0.2 nozzle", + "inherits": "fdm_process_single_0.10_nozzle_0.2", + "from": "system", + "setting_id": "GP039", + "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.", + "default_acceleration": [ + "6000" + ], + "initial_layer_speed": [ + "16" + ], + "initial_layer_infill_speed": [ + "28" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.10mm Standard @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/process/0.10mm Standard @BBL A2L 0.2 nozzle.json index c122c78e09..2ec37b0efd 100644 --- a/resources/profiles/BBL/process/0.10mm Standard @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.10mm Standard @BBL A2L 0.2 nozzle.json @@ -10,7 +10,7 @@ "default_acceleration": [ "6000" ], - "elefant_foot_compensation": "0.075", + "elefant_foot_compensation": "0.15", "enable_arc_fitting": "0", "enable_height_slowdown": [ "1" diff --git a/resources/profiles/BBL/process/0.10mm Standard @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/process/0.10mm Standard @BBL H2C 0.2 nozzle.json index 2139246636..fe21267b4d 100644 --- a/resources/profiles/BBL/process/0.10mm Standard @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.10mm Standard @BBL H2C 0.2 nozzle.json @@ -1,46 +1,46 @@ { - "type": "process", - "name": "0.10mm Standard @BBL H2C 0.2 nozzle", - "inherits": "fdm_process_dual_0.10_nozzle_0.2", - "from": "system", - "setting_id": "GP245", - "instantiation": "true", - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "enable_tower_interface_features": "1", - "initial_layer_speed": [ - "40", - "40", - "40", - "40" - ], - "ironing_speed": "20", - "ironing_flow": "20%", - "outer_wall_speed": [ - "100", - "100", - "100", - "100" - ], - "overhang_1_4_speed": [ - "60", - "60", - "60", - "60" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ] -} + "type": "process", + "name": "0.10mm Standard @BBL H2C 0.2 nozzle", + "inherits": "fdm_process_dual_0.10_nozzle_0.2", + "from": "system", + "setting_id": "GP245", + "instantiation": "true", + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "40", + "40", + "40", + "40" + ], + "ironing_speed": "20", + "ironing_flow": "20%", + "outer_wall_speed": [ + "100", + "100", + "100", + "100" + ], + "overhang_1_4_speed": [ + "60", + "60", + "60", + "60" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.10mm Standard @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/process/0.10mm Standard @BBL H2D 0.2 nozzle.json index 72e86cbda6..ff216acf66 100644 --- a/resources/profiles/BBL/process/0.10mm Standard @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.10mm Standard @BBL H2D 0.2 nozzle.json @@ -1,31 +1,32 @@ { - "type": "process", - "name": "0.10mm Standard @BBL H2D 0.2 nozzle", - "inherits": "fdm_process_dual_0.10_nozzle_0.2", - "from": "system", - "setting_id": "GP123", - "instantiation": "true", - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "initial_layer_speed": [ - "40", - "40", - "40", - "40" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ] -} + "type": "process", + "name": "0.10mm Standard @BBL H2D 0.2 nozzle", + "inherits": "fdm_process_dual_0.10_nozzle_0.2", + "from": "system", + "setting_id": "GP123", + "instantiation": "true", + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "40", + "40", + "40", + "40" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.10mm Standard @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/process/0.10mm Standard @BBL H2DP 0.2 nozzle.json index 7fc4f213ae..6379498843 100644 --- a/resources/profiles/BBL/process/0.10mm Standard @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.10mm Standard @BBL H2DP 0.2 nozzle.json @@ -1,31 +1,31 @@ { - "type": "process", - "name": "0.10mm Standard @BBL H2DP 0.2 nozzle", - "inherits": "fdm_process_dual_0.10_nozzle_0.2", - "from": "system", - "setting_id": "GP041", - "instantiation": "true", - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "initial_layer_speed": [ - "40", - "40", - "40", - "40" - ], - "prime_tower_width": "60", - "prime_tower_brim_width": "-1", - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ] -} + "type": "process", + "name": "0.10mm Standard @BBL H2DP 0.2 nozzle", + "inherits": "fdm_process_dual_0.10_nozzle_0.2", + "from": "system", + "setting_id": "GP041", + "instantiation": "true", + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "initial_layer_speed": [ + "40", + "40", + "40", + "40" + ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.10mm Standard @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/process/0.10mm Standard @BBL H2S 0.2 nozzle.json index 698c0ba106..6df990e59c 100644 --- a/resources/profiles/BBL/process/0.10mm Standard @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.10mm Standard @BBL H2S 0.2 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -51,10 +39,28 @@ "150", "150" ], + "ironing_flow": "20%", + "ironing_speed": "20", "initial_layer_travel_acceleration": [ "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "100", + "100" + ], "outer_wall_acceleration": [ "5000", "5000" @@ -75,12 +81,8 @@ "10", "10" ], - "outer_wall_speed": [ - "100", - "100" - ], - "prime_tower_flat_ironing": "1", "prime_tower_width": "60", + "prime_tower_flat_ironing": "1", "print_extruder_id": [ "1", "1" @@ -93,26 +95,14 @@ "100", "100" ], - "small_perimeter_speed": [ - "50%", - "50%" - ], - "small_perimeter_threshold": [ - "0", - "0" - ], - "sparse_infill_acceleration": [ - "100%", - "100%" + "support_interface_speed": [ + "80", + "80" ], "support_speed": [ "150", "150" ], - "support_interface_speed": [ - "80", - "80" - ], "slowdown_start_height": [ "0", "0" @@ -137,14 +127,38 @@ "100000", "100000" ], - "travel_speed": [ - "1000", - "1000" + "small_perimeter_speed": [ + "50%", + "50%" + ], + "small_perimeter_threshold": [ + "0", + "0" + ], + "sparse_infill_acceleration": [ + "100%", + "100%" ], "top_surface_speed": [ "150", "150" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000" + ], "top_surface_acceleration": [ "2000", "2000" @@ -153,14 +167,11 @@ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab H2S 0.2 nozzle" ] diff --git a/resources/profiles/BBL/process/0.10mm Standard @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/process/0.10mm Standard @BBL P1P 0.2 nozzle.json index 8c7c9415a1..2e03ae7655 100644 --- a/resources/profiles/BBL/process/0.10mm Standard @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.10mm Standard @BBL P1P 0.2 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,6 +43,22 @@ "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" + ], "outer_wall_acceleration": [ "5000", "5000" @@ -75,10 +79,6 @@ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.10mm Standard @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/process/0.10mm Standard @BBL P2S 0.2 nozzle.json index 51fcbc71d4..02ec0007ec 100644 --- a/resources/profiles/BBL/process/0.10mm Standard @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.10mm Standard @BBL P2S 0.2 nozzle.json @@ -5,12 +5,10 @@ "from": "system", "setting_id": "GP153", "instantiation": "true", - "bottom_surface_pattern": "monotonicline", "bridge_speed": [ "50", "50" ], - "enable_arc_fitting": "0", "default_acceleration": [ "4000", "4000" @@ -28,22 +26,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "50", - "50" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -56,6 +42,22 @@ "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "50", + "50" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "100", + "100" + ], "outer_wall_acceleration": [ "2000", "2000" @@ -72,10 +74,6 @@ "40", "10" ], - "outer_wall_speed": [ - "100", - "100" - ], "overhang_4_4_speed": [ "20", "10" @@ -88,10 +86,19 @@ "Direct Drive Standard", "Direct Drive High Flow" ], + "prime_tower_flat_ironing": "1", "sparse_infill_speed": [ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -128,23 +135,26 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_pattern": "monotonic", - "travel_speed": [ - "600", - "600" - ], "top_surface_speed": [ "150", "150" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000" + ], "top_surface_acceleration": [ "2000", "2000" @@ -153,14 +163,11 @@ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab P2S 0.2 nozzle" ] diff --git a/resources/profiles/BBL/process/0.10mm Standard @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/process/0.10mm Standard @BBL X1C 0.2 nozzle.json index 5145c45b42..2ba56ae744 100644 --- a/resources/profiles/BBL/process/0.10mm Standard @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.10mm Standard @BBL X1C 0.2 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,6 +43,22 @@ "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" + ], "outer_wall_acceleration": [ "5000", "5000" @@ -75,10 +79,6 @@ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.10mm Standard @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/process/0.10mm Standard @BBL X2D 0.2 nozzle.json index db79e7411c..bd69dbc54d 100644 --- a/resources/profiles/BBL/process/0.10mm Standard @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.10mm Standard @BBL X2D 0.2 nozzle.json @@ -1,69 +1,69 @@ { - "type": "process", - "name": "0.10mm Standard @BBL X2D 0.2 nozzle", - "inherits": "fdm_process_dual_0.10_nozzle_0.2", - "from": "system", - "setting_id": "GP148", - "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.", - "bridge_flow": "1.5", - "bridge_speed": [ - "25", - "25", - "25", - "25" - ], - "default_acceleration": [ - "4000", - "10000", - "4000", - "4000" - ], - "enable_tower_interface_features": "1", - "initial_layer_speed": [ - "40", - "20", - "20", - "20" - ], - "outer_wall_acceleration": [ - "2000", - "5000", - "4000", - "4000" - ], - "outer_wall_speed": [ - "100", - "120", - "50", - "50" - ], - "overhang_2_4_speed": [ - "40", - "40", - "40", - "40" - ], - "overhang_4_4_speed": [ - "20", - "20", - "20", - "20" - ], - "prime_tower_brim_width": "-1", - "print_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ] -} + "type": "process", + "name": "0.10mm Standard @BBL X2D 0.2 nozzle", + "inherits": "fdm_process_dual_0.10_nozzle_0.2", + "from": "system", + "setting_id": "GP148", + "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.", + "bridge_flow": "1.5", + "bridge_speed": [ + "25", + "25", + "25", + "25" + ], + "default_acceleration": [ + "4000", + "10000", + "4000", + "4000" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "40", + "20", + "20", + "20" + ], + "outer_wall_acceleration": [ + "2000", + "5000", + "4000", + "4000" + ], + "outer_wall_speed": [ + "100", + "120", + "50", + "50" + ], + "overhang_2_4_speed": [ + "40", + "40", + "40", + "40" + ], + "overhang_4_4_speed": [ + "20", + "20", + "20", + "20" + ], + "prime_tower_brim_width": "-1", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL A2L 0.2 nozzle.json b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL A2L 0.2 nozzle.json index 3fd94d41ca..f44831cdba 100644 --- a/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL A2L 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL A2L 0.2 nozzle.json @@ -9,7 +9,7 @@ "default_acceleration": [ "6000" ], - "elefant_foot_compensation": "0.075", + "elefant_foot_compensation": "0.15", "enable_arc_fitting": "0", "enable_height_slowdown": [ "1" diff --git a/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL H2C 0.2 nozzle.json b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL H2C 0.2 nozzle.json index 33691925f0..bf6f1100d6 100644 --- a/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL H2C 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL H2C 0.2 nozzle.json @@ -1,44 +1,44 @@ { - "type": "process", - "name": "0.12mm Balanced Quality @BBL H2C 0.2 nozzle", - "inherits": "fdm_process_dual_0.12_nozzle_0.2", - "from": "system", - "setting_id": "GP246", - "instantiation": "true", - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "enable_tower_interface_features": "1", - "initial_layer_speed": [ - "40", - "40", - "40", - "40" - ], - "overhang_1_4_speed": [ - "60", - "60", - "60", - "60" - ], - "outer_wall_speed": [ - "100", - "100", - "100", - "100" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.2 nozzle" - ] -} + "type": "process", + "name": "0.12mm Balanced Quality @BBL H2C 0.2 nozzle", + "inherits": "fdm_process_dual_0.12_nozzle_0.2", + "from": "system", + "setting_id": "GP246", + "instantiation": "true", + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "40", + "40", + "40", + "40" + ], + "overhang_1_4_speed": [ + "60", + "60", + "60", + "60" + ], + "outer_wall_speed": [ + "100", + "100", + "100", + "100" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL H2D 0.2 nozzle.json b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL H2D 0.2 nozzle.json index 09846ad5c1..740aeea2bf 100644 --- a/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL H2D 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL H2D 0.2 nozzle.json @@ -1,37 +1,38 @@ { - "type": "process", - "name": "0.12mm Balanced Quality @BBL H2D 0.2 nozzle", - "inherits": "fdm_process_dual_0.12_nozzle_0.2", - "from": "system", - "setting_id": "GP140", - "instantiation": "true", - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "initial_layer_speed": [ - "40", - "40", - "40", - "40" - ], - "overhang_1_4_speed": [ - "60", - "60", - "60", - "60" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.2 nozzle" - ] -} + "type": "process", + "name": "0.12mm Balanced Quality @BBL H2D 0.2 nozzle", + "inherits": "fdm_process_dual_0.12_nozzle_0.2", + "from": "system", + "setting_id": "GP140", + "instantiation": "true", + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "40", + "40", + "40", + "40" + ], + "overhang_1_4_speed": [ + "60", + "60", + "60", + "60" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL H2DP 0.2 nozzle.json b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL H2DP 0.2 nozzle.json index 8fc4edbc13..3105c027de 100644 --- a/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL H2DP 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL H2DP 0.2 nozzle.json @@ -1,37 +1,37 @@ { - "type": "process", - "name": "0.12mm Balanced Quality @BBL H2DP 0.2 nozzle", - "inherits": "fdm_process_dual_0.12_nozzle_0.2", - "from": "system", - "setting_id": "GP042", - "instantiation": "true", - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "initial_layer_speed": [ - "40", - "40", - "40", - "40" - ], - "overhang_1_4_speed": [ - "60", - "60", - "60", - "60" - ], - "prime_tower_width": "60", - "prime_tower_brim_width": "-1", - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.2 nozzle" - ] -} + "type": "process", + "name": "0.12mm Balanced Quality @BBL H2DP 0.2 nozzle", + "inherits": "fdm_process_dual_0.12_nozzle_0.2", + "from": "system", + "setting_id": "GP042", + "instantiation": "true", + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "initial_layer_speed": [ + "40", + "40", + "40", + "40" + ], + "overhang_1_4_speed": [ + "60", + "60", + "60", + "60" + ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL H2S 0.2 nozzle.json b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL H2S 0.2 nozzle.json index f35eccf500..fe43dfd8f4 100644 --- a/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL H2S 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL H2S 0.2 nozzle.json @@ -5,52 +5,15 @@ "from": "system", "setting_id": "GP233", "instantiation": "true", - "default_acceleration": [ - "10000", - "10000" - ], - "initial_layer_speed": [ - "40", - "40" - ], - "overhang_1_4_speed": [ - "60", - "60" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "travel_speed": [ - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.2 nozzle" - ], - "elefant_foot_compensation": "0.15", - "initial_layer_infill_speed": [ - "70", - "70" - ], - "sparse_infill_speed": [ - "100", - "100" - ], - "top_surface_speed": [ - "150", - "150" - ], "bridge_speed": [ "50", "50" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], - "travel_acceleration": [ + "default_acceleration": [ "10000", "10000" ], + "elefant_foot_compensation": "0.15", "enable_overhang_speed": [ "1", "1" @@ -59,6 +22,85 @@ "0", "0" ], + "gap_infill_speed": [ + "50", + "50" + ], + "initial_layer_speed": [ + "40", + "40" + ], + "inner_wall_speed": [ + "150", + "150" + ], + "internal_solid_infill_speed": [ + "150", + "150" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000" + ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "100", + "100" + ], + "outer_wall_acceleration": [ + "5000", + "5000" + ], + "overhang_1_4_speed": [ + "60", + "60" + ], + "overhang_2_4_speed": [ + "50", + "50" + ], + "overhang_3_4_speed": [ + "30", + "30" + ], + "overhang_4_4_speed": [ + "10", + "10" + ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", + "prime_tower_flat_ironing": "1", + "print_extruder_id": [ + "1", + "1" + ], + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], + "sparse_infill_speed": [ + "100", + "100" + ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -83,54 +125,6 @@ "100000", "100000" ], - "gap_infill_speed": [ - "50", - "50" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], - "inner_wall_speed": [ - "150", - "150" - ], - "internal_solid_infill_speed": [ - "150", - "150" - ], - "outer_wall_acceleration": [ - "5000", - "5000" - ], - "outer_wall_speed": [ - "100", - "100" - ], - "overhang_2_4_speed": [ - "50", - "50" - ], - "overhang_3_4_speed": [ - "30", - "30" - ], - "overhang_4_4_speed": [ - "10", - "10" - ], - "print_extruder_id": [ - "1", - "1" - ], - "print_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], "small_perimeter_speed": [ "50%", "50%" @@ -143,14 +137,26 @@ "100%", "100%" ], - "support_interface_speed": [ - "80", - "80" - ], - "support_speed": [ + "top_surface_speed": [ "150", "150" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000" + ], "top_surface_acceleration": [ "2000", "2000" @@ -163,5 +169,8 @@ "80%", "80%" ], - "prime_tower_flat_ironing": "1" + "monotonic_travel_into_wall": "45.0", + "compatible_printers": [ + "Bambu Lab H2S 0.2 nozzle" + ] } diff --git a/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL P2S 0.2 nozzle.json b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL P2S 0.2 nozzle.json index f7a7639857..e3471e88b0 100644 --- a/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL P2S 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL P2S 0.2 nozzle.json @@ -5,12 +5,10 @@ "from": "system", "setting_id": "GP206", "instantiation": "true", - "bottom_surface_pattern": "monotonicline", "bridge_speed": [ "50", "50" ], - "enable_arc_fitting": "0", "default_acceleration": [ "4000", "4000" @@ -27,22 +25,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "50", - "50" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,14 +41,30 @@ "6000", "6000" ], - "overhang_1_4_speed": [ + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "50", + "50" + ], + "inner_wall_acceleration": [ "0", - "60" + "0" + ], + "outer_wall_speed": [ + "100", + "100" ], "outer_wall_acceleration": [ "2000", "2000" ], + "overhang_1_4_speed": [ + "0", + "60" + ], "overhang_2_4_speed": [ "60", "30" @@ -71,16 +73,12 @@ "40", "10" ], - "outer_wall_speed": [ - "100", - "100" - ], "overhang_4_4_speed": [ "20", "10" ], - "prime_tower_brim_width": "-1", "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1" @@ -89,10 +87,19 @@ "Direct Drive Standard", "Direct Drive High Flow" ], + "prime_tower_flat_ironing": "1", "sparse_infill_speed": [ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -129,23 +136,26 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_pattern": "monotonic", - "travel_speed": [ - "600", - "600" - ], "top_surface_speed": [ "150", "150" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000" + ], "top_surface_acceleration": [ "2000", "2000" @@ -154,14 +164,11 @@ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab P2S 0.2 nozzle" ] diff --git a/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL X2D 0.2 nozzle.json b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL X2D 0.2 nozzle.json index 0659337324..2ffb707c46 100644 --- a/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL X2D 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.12mm Balanced Quality @BBL X2D 0.2 nozzle.json @@ -1,68 +1,68 @@ { - "type": "process", - "name": "0.12mm Balanced Quality @BBL X2D 0.2 nozzle", - "inherits": "fdm_process_dual_0.12_nozzle_0.2", - "from": "system", - "setting_id": "GP219", - "instantiation": "true", - "default_acceleration": [ - "4000", - "8000", - "4000", - "4000" - ], - "enable_tower_interface_features": "1", - "initial_layer_speed": [ - "40", - "40", - "20", - "20" - ], - "outer_wall_acceleration": [ - "2000", - "5000", - "5000", - "5000" - ], - "outer_wall_speed": [ - "100", - "120", - "50", - "50" - ], - "overhang_1_4_speed": [ - "60", - "60", - "0", - "0" - ], - "overhang_2_4_speed": [ - "30", - "50", - "50", - "50" - ], - "overhang_3_4_speed": [ - "10", - "30", - "30", - "30" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "print_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.2 nozzle" - ] -} + "type": "process", + "name": "0.12mm Balanced Quality @BBL X2D 0.2 nozzle", + "inherits": "fdm_process_dual_0.12_nozzle_0.2", + "from": "system", + "setting_id": "GP219", + "instantiation": "true", + "default_acceleration": [ + "4000", + "8000", + "4000", + "4000" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "40", + "40", + "20", + "20" + ], + "outer_wall_acceleration": [ + "2000", + "5000", + "5000", + "5000" + ], + "outer_wall_speed": [ + "100", + "120", + "50", + "50" + ], + "overhang_1_4_speed": [ + "60", + "60", + "0", + "0" + ], + "overhang_2_4_speed": [ + "30", + "50", + "50", + "50" + ], + "overhang_3_4_speed": [ + "10", + "30", + "30", + "30" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.12mm Draft @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/process/0.12mm Draft @BBL A1 0.2 nozzle.json index 4ff6131907..32c72fff62 100644 --- a/resources/profiles/BBL/process/0.12mm Draft @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.12mm Draft @BBL A1 0.2 nozzle.json @@ -1,25 +1,25 @@ { - "type": "process", - "name": "0.12mm Draft @BBL A1 0.2 nozzle", - "inherits": "fdm_process_single_0.12_nozzle_0.2", - "from": "system", - "setting_id": "GP086", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "initial_layer_infill_speed": [ - "28" - ], - "initial_layer_speed": [ - "16" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "process", + "name": "0.12mm Draft @BBL A1 0.2 nozzle", + "inherits": "fdm_process_single_0.12_nozzle_0.2", + "from": "system", + "setting_id": "GP086", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "initial_layer_infill_speed": [ + "28" + ], + "initial_layer_speed": [ + "16" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.12mm Draft @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/process/0.12mm Draft @BBL A1M 0.2 nozzle.json index 49c0ce07e5..2c3c43d12a 100644 --- a/resources/profiles/BBL/process/0.12mm Draft @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.12mm Draft @BBL A1M 0.2 nozzle.json @@ -1,24 +1,24 @@ { - "type": "process", - "name": "0.12mm Draft @BBL A1M 0.2 nozzle", - "inherits": "fdm_process_single_0.12_nozzle_0.2", - "from": "system", - "setting_id": "GP052", - "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.", - "default_acceleration": [ - "6000" - ], - "initial_layer_speed": [ - "16" - ], - "initial_layer_infill_speed": [ - "28" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "process", + "name": "0.12mm Draft @BBL A1M 0.2 nozzle", + "inherits": "fdm_process_single_0.12_nozzle_0.2", + "from": "system", + "setting_id": "GP052", + "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.", + "default_acceleration": [ + "6000" + ], + "initial_layer_speed": [ + "16" + ], + "initial_layer_infill_speed": [ + "28" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.12mm Draft @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/process/0.12mm Draft @BBL P1P 0.2 nozzle.json index 83afb88fd8..46b781c4b0 100644 --- a/resources/profiles/BBL/process/0.12mm Draft @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.12mm Draft @BBL P1P 0.2 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,6 +43,22 @@ "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" + ], "outer_wall_acceleration": [ "2500", "2500" @@ -75,10 +79,6 @@ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.12mm Fine @BBL A1.json b/resources/profiles/BBL/process/0.12mm Fine @BBL A1.json index 9a37ca278c..3cba0cd013 100644 --- a/resources/profiles/BBL/process/0.12mm Fine @BBL A1.json +++ b/resources/profiles/BBL/process/0.12mm Fine @BBL A1.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.12mm Fine @BBL A1", - "inherits": "fdm_process_single_0.12", - "from": "system", - "setting_id": "GP077", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "process", + "name": "0.12mm Fine @BBL A1", + "inherits": "fdm_process_single_0.12", + "from": "system", + "setting_id": "GP077", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.12mm Fine @BBL A1M.json b/resources/profiles/BBL/process/0.12mm Fine @BBL A1M.json index 61979a5549..3412b7726b 100644 --- a/resources/profiles/BBL/process/0.12mm Fine @BBL A1M.json +++ b/resources/profiles/BBL/process/0.12mm Fine @BBL A1M.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.12mm Fine @BBL A1M", - "inherits": "fdm_process_single_0.12", - "from": "system", - "setting_id": "GP044", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "process", + "name": "0.12mm Fine @BBL A1M", + "inherits": "fdm_process_single_0.12", + "from": "system", + "setting_id": "GP044", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.12mm Fine @BBL H2D.json b/resources/profiles/BBL/process/0.12mm Fine @BBL H2D.json index e9251415b4..b32a3b555b 100644 --- a/resources/profiles/BBL/process/0.12mm Fine @BBL H2D.json +++ b/resources/profiles/BBL/process/0.12mm Fine @BBL H2D.json @@ -6,32 +6,59 @@ "setting_id": "GP142", "instantiation": "true", "bottom_shell_layers": "7", - "default_acceleration": [ - "4000", - "4000", - "4000", - "4000", - "4000" - ], - "gap_infill_speed": [ + "bridge_speed": [ + "50", + "50", "50", "50", "50", "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70", - "70", - "70", - "70" + "default_acceleration": [ + "4000", + "4000", + "4000", + "4000", + "4000", + "4000", + "4000" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "enable_tower_interface_features": "1", + "gap_infill_speed": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50" ], "initial_layer_speed": [ "40", "40", "40", "40", + "40", + "40", "40" ], "inner_wall_speed": [ @@ -39,6 +66,8 @@ "120", "120", "120", + "120", + "120", "120" ], "internal_solid_infill_speed": [ @@ -46,27 +75,71 @@ "150", "150", "150", + "150", + "150", "150" ], - "outer_wall_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70", + "70", + "70", + "70", + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" ], "outer_wall_speed": [ "60", "60", "60", "60", + "60", + "60", "60" ], + "outer_wall_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], "overhang_1_4_speed": [ "60", "60", "60", "60", + "60", + "60", "60" ], "overhang_2_4_speed": [ @@ -74,6 +147,8 @@ "30", "30", "30", + "30", + "30", "30" ], "overhang_3_4_speed": [ @@ -81,76 +156,26 @@ "10", "10", "10", + "10", + "10", "10" ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_pattern": "gyroid", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100", - "100" - ], - "top_color_penetration_layers": "7", - "top_shell_layers": "9", - "top_shell_thickness": "0.8", - "top_surface_speed": [ - "150", - "150", - "150", - "150", - "150" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "bridge_speed": [ - "50", - "50", - "50", - "50", - "50" - ], - "enable_overhang_speed": [ - "1", - "1", - "1", - "1", - "1" - ], - "initial_layer_acceleration": [ - "500", - "500", - "500", - "500", - "500" - ], - "initial_layer_travel_acceleration": [ - "6000", - "6000", - "6000", - "6000", - "6000" - ], - "inner_wall_acceleration": [ - "0", - "0", - "0", - "0", - "0" - ], "overhang_4_4_speed": [ "10", "10", "10", "10", + "10", + "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", + "1", + "2", "2", "2", "2" @@ -158,36 +183,29 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Direct Drive Standard", "Direct Drive High Flow", - "Direct Drive TPU High Flow" + "Direct Drive TPU High Flow", + "Direct Drive E3D High Flow" ], - "small_perimeter_speed": [ - "50%", - "50%", - "50%", - "50%", - "50%" - ], - "small_perimeter_threshold": [ - "0", - "0", - "0", - "0", - "0" - ], - "sparse_infill_acceleration": [ - "100%", - "100%", - "100%", - "100%", - "100%" + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100", + "100", + "100", + "100" ], "support_interface_speed": [ "80", "80", "80", "80", + "80", + "80", "80" ], "support_speed": [ @@ -195,34 +213,167 @@ "150", "150", "150", + "150", + "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "top_shell_layers": "9", + "top_color_penetration_layers": "7", + "top_shell_thickness": "0.8", + "top_surface_speed": [ + "150", + "150", + "150", + "150", + "150", + "150", + "150" ], "travel_acceleration": [ "10000", "10000", "10000", "10000", + "10000", + "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250", + "250" + ], "travel_speed": [ "500", "500", "500", "500", + "500", + "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1", + "1" + ], "travel_speed_z": [ "0", "0", "0", "0", + "0", + "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.12mm Fine @BBL H2DP.json b/resources/profiles/BBL/process/0.12mm Fine @BBL H2DP.json index 3bb1e99970..cd0298e7ad 100644 --- a/resources/profiles/BBL/process/0.12mm Fine @BBL H2DP.json +++ b/resources/profiles/BBL/process/0.12mm Fine @BBL H2DP.json @@ -6,6 +6,13 @@ "setting_id": "GP127", "instantiation": "true", "bottom_shell_layers": "7", + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50" + ], "default_acceleration": [ "4000", "4000", @@ -13,6 +20,20 @@ "4000", "4000" ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], "gap_infill_speed": [ "50", "50", @@ -41,6 +62,20 @@ "150", "150" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500" + ], "initial_layer_infill_speed": [ "70", "70", @@ -48,6 +83,13 @@ "70", "70" ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0" + ], "outer_wall_speed": [ "60", "60", @@ -83,64 +125,6 @@ "10", "10" ], - "prime_tower_width": "60", - "prime_tower_brim_width": "-1", - "sparse_infill_pattern": "gyroid", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100", - "100" - ], - "top_shell_layers": "9", - "top_color_penetration_layers": "7", - "top_shell_thickness": "0.8", - "top_surface_speed": [ - "150", - "150", - "150", - "150", - "150" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "bridge_speed": [ - "50", - "50", - "50", - "50", - "50" - ], - "enable_overhang_speed": [ - "1", - "1", - "1", - "1", - "1" - ], - "initial_layer_acceleration": [ - "500", - "500", - "500", - "500", - "500" - ], - "initial_layer_travel_acceleration": [ - "6000", - "6000", - "6000", - "6000", - "6000" - ], - "inner_wall_acceleration": [ - "0", - "0", - "0", - "0", - "0" - ], "overhang_4_4_speed": [ "10", "10", @@ -148,6 +132,8 @@ "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", @@ -162,6 +148,70 @@ "Direct Drive High Flow", "Direct Drive TPU High Flow" ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100", + "100" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], "small_perimeter_speed": [ "50%", "50%", @@ -183,26 +233,22 @@ "100%", "100%" ], - "support_interface_speed": [ - "80", - "80", - "80", - "80", - "80" - ], - "support_speed": [ + "top_shell_layers": "9", + "top_color_penetration_layers": "7", + "top_shell_thickness": "0.8", + "top_surface_speed": [ "150", "150", "150", "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" ], "travel_acceleration": [ "10000", @@ -211,6 +257,13 @@ "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], "travel_speed": [ "500", "500", @@ -218,11 +271,28 @@ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], "travel_speed_z": [ "0", "0", "0", "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.12mm Fine @BBL P1P.json b/resources/profiles/BBL/process/0.12mm Fine @BBL P1P.json index 96047bf831..2cbcf582e5 100644 --- a/resources/profiles/BBL/process/0.12mm Fine @BBL P1P.json +++ b/resources/profiles/BBL/process/0.12mm Fine @BBL P1P.json @@ -26,10 +26,6 @@ "350", "350" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ "50", "50" @@ -42,22 +38,30 @@ "350", "350" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], "outer_wall_speed": [ "200", "200" ], + "outer_wall_acceleration": [ + "5000", + "5000" + ], "overhang_1_4_speed": [ "60", "60" @@ -70,10 +74,6 @@ "10", "10" ], - "outer_wall_acceleration": [ - "5000", - "5000" - ], "overhang_4_4_speed": [ "10", "10" @@ -90,6 +90,14 @@ "430", "430" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -126,34 +134,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_acceleration": [ - "2000", - "2000" - ], "top_surface_speed": [ "200", "200" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.12mm Fine @BBL X1C.json b/resources/profiles/BBL/process/0.12mm Fine @BBL X1C.json index 1758049a79..189e13972c 100644 --- a/resources/profiles/BBL/process/0.12mm Fine @BBL X1C.json +++ b/resources/profiles/BBL/process/0.12mm Fine @BBL X1C.json @@ -26,10 +26,6 @@ "350", "350" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ "50", "50" @@ -42,22 +38,30 @@ "350", "350" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], "outer_wall_speed": [ "200", "200" ], + "outer_wall_acceleration": [ + "5000", + "5000" + ], "overhang_1_4_speed": [ "60", "60" @@ -70,10 +74,6 @@ "10", "10" ], - "outer_wall_acceleration": [ - "5000", - "5000" - ], "overhang_4_4_speed": [ "10", "10" @@ -90,6 +90,14 @@ "430", "430" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -126,34 +134,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_acceleration": [ - "2000", - "2000" - ], "top_surface_speed": [ "200", "200" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.12mm High Quality @BBL A1.json b/resources/profiles/BBL/process/0.12mm High Quality @BBL A1.json index d9caca6a9a..817744de26 100644 --- a/resources/profiles/BBL/process/0.12mm High Quality @BBL A1.json +++ b/resources/profiles/BBL/process/0.12mm High Quality @BBL A1.json @@ -1,41 +1,41 @@ { - "type": "process", - "name": "0.12mm High Quality @BBL A1", - "inherits": "fdm_process_single_0.12", - "from": "system", - "setting_id": "GP106", - "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" - ], - "elefant_foot_compensation": "0.075", - "gap_infill_speed": [ - "230" - ], - "inner_wall_speed": [ - "150" - ], - "internal_solid_infill_speed": [ - "180" - ], - "outer_wall_acceleration": [ - "2000" - ], - "outer_wall_speed": [ - "60" - ], - "sparse_infill_pattern": "gyroid", - "sparse_infill_speed": [ - "180" - ], - "top_surface_speed": [ - "150" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "process", + "name": "0.12mm High Quality @BBL A1", + "inherits": "fdm_process_single_0.12", + "from": "system", + "setting_id": "GP106", + "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" + ], + "elefant_foot_compensation": "0.075", + "gap_infill_speed": [ + "230" + ], + "inner_wall_speed": [ + "150" + ], + "internal_solid_infill_speed": [ + "180" + ], + "outer_wall_acceleration": [ + "2000" + ], + "outer_wall_speed": [ + "60" + ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "180" + ], + "top_surface_speed": [ + "150" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.12mm High Quality @BBL A1M.json b/resources/profiles/BBL/process/0.12mm High Quality @BBL A1M.json index 14b984a971..743c00ea98 100644 --- a/resources/profiles/BBL/process/0.12mm High Quality @BBL A1M.json +++ b/resources/profiles/BBL/process/0.12mm High Quality @BBL A1M.json @@ -1,41 +1,41 @@ { - "type": "process", - "name": "0.12mm High Quality @BBL A1M", - "inherits": "fdm_process_single_0.12", - "from": "system", - "setting_id": "GP105", - "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": [ - "3000" - ], - "elefant_foot_compensation": "0", - "gap_infill_speed": [ - "230" - ], - "inner_wall_speed": [ - "150" - ], - "internal_solid_infill_speed": [ - "180" - ], - "outer_wall_speed": [ - "60" - ], - "outer_wall_acceleration": [ - "2000" - ], - "sparse_infill_pattern": "gyroid", - "sparse_infill_speed": [ - "180" - ], - "top_surface_speed": [ - "150" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "process", + "name": "0.12mm High Quality @BBL A1M", + "inherits": "fdm_process_single_0.12", + "from": "system", + "setting_id": "GP105", + "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": [ + "3000" + ], + "elefant_foot_compensation": "0", + "gap_infill_speed": [ + "230" + ], + "inner_wall_speed": [ + "150" + ], + "internal_solid_infill_speed": [ + "180" + ], + "outer_wall_speed": [ + "60" + ], + "outer_wall_acceleration": [ + "2000" + ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "180" + ], + "top_surface_speed": [ + "150" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.12mm High Quality @BBL A2L.json b/resources/profiles/BBL/process/0.12mm High Quality @BBL A2L.json index 9b7a3a9504..ca2cd88cd5 100644 --- a/resources/profiles/BBL/process/0.12mm High Quality @BBL A2L.json +++ b/resources/profiles/BBL/process/0.12mm High Quality @BBL A2L.json @@ -9,7 +9,6 @@ "default_acceleration": [ "4000" ], - "elefant_foot_compensation": "0.075", "enable_arc_fitting": "0", "enable_height_slowdown": [ "1" @@ -42,9 +41,6 @@ "slowdown_start_acc": [ "8000" ], - "slowdown_start_height": [ - "0" - ], "slowdown_start_speed": [ "500" ], diff --git a/resources/profiles/BBL/process/0.12mm High Quality @BBL H2C.json b/resources/profiles/BBL/process/0.12mm High Quality @BBL H2C.json index c6155c7395..68e1864560 100644 --- a/resources/profiles/BBL/process/0.12mm High Quality @BBL H2C.json +++ b/resources/profiles/BBL/process/0.12mm High Quality @BBL H2C.json @@ -10,6 +10,7 @@ "4000", "4000", "4000", + "4000", "4000" ], "enable_tower_interface_features": "1", @@ -17,60 +18,70 @@ "50", "50", "50", + "50", "50" ], "initial_layer_infill_speed": [ "70", "70", "70", + "70", "70" ], "initial_layer_speed": [ "40", "40", "40", + "40", "40" ], "inner_wall_speed": [ "120", "120", "120", + "120", "120" ], "internal_solid_infill_speed": [ "150", "150", "150", + "150", "150" ], "outer_wall_acceleration": [ "2000", "2000", "2000", + "2000", "2000" ], "outer_wall_speed": [ "60", "60", "60", + "60", "60" ], "overhang_1_4_speed": [ "60", "60", "60", + "60", "60" ], "overhang_2_4_speed": [ "30", "30", "30", + "30", "30" ], "overhang_3_4_speed": [ "10", "10", "10", + "10", "10" ], "prime_tower_brim_width": "-1", @@ -80,6 +91,7 @@ "100", "100", "100", + "100", "100" ], "top_color_penetration_layers": "7", @@ -89,9 +101,199 @@ "150", "150", "150", + "150", "150" ], "compatible_printers": [ "Bambu Lab H2C 0.4 nozzle" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "travel_speed": [ + "500", + "500", + "500", + "500", + "500" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0" + ], + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2" + ], + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive E3D High Flow", + "Direct Drive Standard", + "Direct Drive High Flow" ] } diff --git a/resources/profiles/BBL/process/0.12mm High Quality @BBL H2S.json b/resources/profiles/BBL/process/0.12mm High Quality @BBL H2S.json index 99aa118b84..53a8985a32 100644 --- a/resources/profiles/BBL/process/0.12mm High Quality @BBL H2S.json +++ b/resources/profiles/BBL/process/0.12mm High Quality @BBL H2S.json @@ -5,164 +5,213 @@ "from": "system", "setting_id": "GP234", "instantiation": "true", + "bridge_speed": [ + "50", + "50", + "50" + ], "default_acceleration": [ + "4000", "4000", "4000" ], + "enable_height_slowdown": [ + "0", + "0", + "0" + ], + "enable_overhang_speed": [ + "1", + "1", + "1" + ], "gap_infill_speed": [ + "230", "230", "230" ], + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], "initial_layer_infill_speed": [ + "105", "105", "105" ], "initial_layer_speed": [ "50", - "50" - ], - "inner_wall_speed": [ - "150", - "150" - ], - "internal_solid_infill_speed": [ - "180", - "180" - ], - "outer_wall_acceleration": [ - "2000", - "2000" - ], - "outer_wall_speed": [ - "60", - "60" - ], - "overhang_1_4_speed": [ - "60", - "60" - ], - "overhang_2_4_speed": [ - "30", - "30" - ], - "overhang_3_4_speed": [ - "10", - "10" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_pattern": "gyroid", - "sparse_infill_speed": [ - "180", - "180" - ], - "top_color_penetration_layers": "7", - "top_surface_speed": [ - "150", - "150" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle" - ], - "bridge_speed": [ "50", "50" ], "initial_layer_travel_acceleration": [ + "6000", "6000", "6000" ], - "travel_acceleration": [ - "10000", - "10000" - ], - "enable_overhang_speed": [ - "1", - "1" - ], - "enable_height_slowdown": [ - "0", - "0" - ], - "slowdown_start_height": [ - "0", - "0" - ], - "slowdown_start_speed": [ - "1000", - "1000" - ], - "slowdown_start_acc": [ - "100000", - "100000" - ], - "slowdown_end_height": [ - "400", - "400" - ], - "slowdown_end_speed": [ - "1000", - "1000" - ], - "slowdown_end_acc": [ - "100000", - "100000" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], "inner_wall_acceleration": [ + "0", "0", "0" ], - "overhang_4_4_speed": [ + "inner_wall_speed": [ + "150", + "150", + "150" + ], + "internal_solid_infill_speed": [ + "180", + "180", + "180" + ], + "monotonic_travel_into_wall": "45.0", + "outer_wall_acceleration": [ + "2000", + "2000", + "2000" + ], + "outer_wall_speed": [ + "60", + "60", + "60" + ], + "overhang_1_4_speed": [ + "60", + "60", + "60" + ], + "overhang_2_4_speed": [ + "30", + "30", + "30" + ], + "overhang_3_4_speed": [ + "10", "10", "10" ], + "overhang_4_4_speed": [ + "10", + "10", + "10" + ], + "prime_tower_brim_width": "-1", + "prime_tower_flat_ironing": "1", + "prime_tower_width": "60", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000" + ], + "slowdown_start_height": [ + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000" ], "small_perimeter_speed": [ + "50%", "50%", "50%" ], "small_perimeter_threshold": [ + "0", "0", "0" ], "sparse_infill_acceleration": [ + "100%", "100%", "100%" ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "180", + "180", + "180" + ], "support_interface_speed": [ + "80", "80", "80" ], "support_speed": [ + "150", "150", "150" ], + "top_color_penetration_layers": "5", + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" + ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], + "top_surface_speed": [ + "150", + "150", + "150" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], "travel_speed": [ + "500", "500", "500" ], "travel_speed_z": [ + "0", "0", "0" ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], - "prime_tower_flat_ironing": "1" + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ] } diff --git a/resources/profiles/BBL/process/0.12mm High Quality @BBL P1P.json b/resources/profiles/BBL/process/0.12mm High Quality @BBL P1P.json index 6cdae36ed1..d2a8ef5e2a 100644 --- a/resources/profiles/BBL/process/0.12mm High Quality @BBL P1P.json +++ b/resources/profiles/BBL/process/0.12mm High Quality @BBL P1P.json @@ -26,6 +26,10 @@ "230", "230" ], + "initial_layer_speed": [ + "50", + "50" + ], "inner_wall_speed": [ "150", "150" @@ -34,34 +38,30 @@ "180", "180" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], - "initial_layer_speed": [ - "50", - "50" + "initial_layer_travel_acceleration": [ + "6000", + "6000" ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" + "outer_wall_speed": [ + "60", + "60" ], "outer_wall_acceleration": [ "2000", "2000" ], - "outer_wall_speed": [ - "60", - "60" - ], "overhang_1_4_speed": [ "60", "60" @@ -91,6 +91,14 @@ "180", "180" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.12mm High Quality @BBL P2S.json b/resources/profiles/BBL/process/0.12mm High Quality @BBL P2S.json index 6f86d4824b..a9c9eb7bdf 100644 --- a/resources/profiles/BBL/process/0.12mm High Quality @BBL P2S.json +++ b/resources/profiles/BBL/process/0.12mm High Quality @BBL P2S.json @@ -5,165 +5,212 @@ "from": "system", "setting_id": "GP207", "instantiation": "true", - "bottom_surface_pattern": "monotonicline", "bridge_speed": [ + "50", "50", "50" ], - "enable_arc_fitting": "0", "default_acceleration": [ + "4000", "4000", "4000" ], "enable_overhang_speed": [ + "1", "1", "1" ], "enable_height_slowdown": [ + "0", "0", "0" ], "gap_infill_speed": [ + "230", "230", "230" ], + "initial_layer_speed": [ + "50", + "50", + "50" + ], "inner_wall_speed": [ + "150", "150", "150" ], "internal_solid_infill_speed": [ + "180", "180", "180" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], - "initial_layer_speed": [ - "50", - "50" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "initial_layer_travel_acceleration": [ + "6000", "6000", "6000" ], - "outer_wall_acceleration": [ - "2000", - "2000" + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0" ], "outer_wall_speed": [ + "60", "60", "60" ], + "outer_wall_acceleration": [ + "2000", + "2000", + "2000" + ], "overhang_1_4_speed": [ "0", + "60", "60" ], "overhang_2_4_speed": [ "60", + "30", "30" ], "overhang_3_4_speed": [ "40", + "10", "10" ], "overhang_4_4_speed": [ "20", + "10", "10" ], - "prime_tower_brim_width": "-1", "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" ], + "prime_tower_flat_ironing": "1", "sparse_infill_pattern": "gyroid", "sparse_infill_speed": [ + "180", "180", "180" ], + "support_interface_speed": [ + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150" + ], "slowdown_start_height": [ + "0", "0", "0" ], "slowdown_start_speed": [ + "1000", "1000", "1000" ], "slowdown_start_acc": [ + "100000", "100000", "100000" ], "slowdown_end_height": [ + "400", "400", "400" ], "slowdown_end_speed": [ + "1000", "1000", "1000" ], "slowdown_end_acc": [ + "100000", "100000", "100000" ], "small_perimeter_speed": [ + "50%", "50%", "50%" ], "small_perimeter_threshold": [ + "0", "0", "0" ], "sparse_infill_acceleration": [ + "100%", "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_color_penetration_layers": "7", + "top_color_penetration_layers": "5", "top_surface_speed": [ + "150", "150", "150" ], - "top_surface_pattern": "monotonic", + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], "travel_speed": [ - "600", - "600" + "1000", + "1000", + "1000" ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], "travel_speed_z": [ + "0", "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab P2S 0.4 nozzle" ] diff --git a/resources/profiles/BBL/process/0.12mm High Quality @BBL X1C.json b/resources/profiles/BBL/process/0.12mm High Quality @BBL X1C.json index 94f8634116..fe2ab3d3be 100644 --- a/resources/profiles/BBL/process/0.12mm High Quality @BBL X1C.json +++ b/resources/profiles/BBL/process/0.12mm High Quality @BBL X1C.json @@ -26,6 +26,10 @@ "230", "230" ], + "initial_layer_speed": [ + "50", + "50" + ], "inner_wall_speed": [ "150", "150" @@ -34,34 +38,30 @@ "180", "180" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], - "initial_layer_speed": [ - "50", - "50" + "initial_layer_travel_acceleration": [ + "6000", + "6000" ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" + "outer_wall_speed": [ + "60", + "60" ], "outer_wall_acceleration": [ "2000", "2000" ], - "outer_wall_speed": [ - "60", - "60" - ], "overhang_1_4_speed": [ "60", "60" @@ -91,6 +91,14 @@ "180", "180" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.12mm High Quality @BBL X2D.json b/resources/profiles/BBL/process/0.12mm High Quality @BBL X2D.json index 38f954fd37..34ed640d32 100644 --- a/resources/profiles/BBL/process/0.12mm High Quality @BBL X2D.json +++ b/resources/profiles/BBL/process/0.12mm High Quality @BBL X2D.json @@ -7,6 +7,8 @@ "instantiation": "true", "bridge_flow": "1.5", "bridge_speed": [ + "25", + "25", "25", "25", "25", @@ -15,6 +17,8 @@ "default_acceleration": [ "4000", "4000", + "4000", + "1000", "1000", "1000" ], @@ -22,46 +26,62 @@ "initial_layer_infill_speed": [ "105", "70", + "70", + "100", "100", "100" ], "initial_layer_speed": [ "50", "40", + "40", + "50", "50", "50" ], "inner_wall_speed": [ "150", "120", + "120", + "100", "100", "100" ], "internal_solid_infill_speed": [ "180", "150", + "150", + "100", "100", "100" ], "outer_wall_acceleration": [ "2000", "2000", + "2000", + "1000", "1000", "1000" ], "outer_wall_speed": [ "60", "60", + "60", + "50", "50", "50" ], "overhang_2_4_speed": [ + "40", + "40", "40", "40", "40", "40" ], "overhang_4_4_speed": [ + "20", + "20", "20", "20", "20", @@ -72,24 +92,40 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Bowden Standard", - "Bowden High Flow" + "Bowden High Flow", + "Bowden E3D High Flow" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2", + "2" ], "sparse_infill_pattern": "gyroid", "sparse_infill_speed": [ "150", "100", "100", + "100", + "100", "100" ], - "top_color_penetration_layers": "7", + "top_color_penetration_layers": "5", "top_surface_speed": [ "150", "150", + "150", + "100", "100", "100" ], "travel_speed": [ + "1000", + "1000", "1000", "1000", "1000", @@ -97,5 +133,205 @@ ], "compatible_printers": [ "Bambu Lab X2D 0.4 nozzle" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150", + "150" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80", + "80" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30", + "30", + "30" + ], + "overhang_1_4_speed": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500", + "500" + ], + "gap_infill_speed": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0" ] } diff --git a/resources/profiles/BBL/process/0.12mm Standard @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/process/0.12mm Standard @BBL X1C 0.2 nozzle.json index b0186048dd..2523024fbc 100644 --- a/resources/profiles/BBL/process/0.12mm Standard @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.12mm Standard @BBL X1C 0.2 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,6 +43,22 @@ "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" + ], "outer_wall_acceleration": [ "5000", "5000" @@ -75,10 +79,6 @@ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.14mm Extra Draft @BBL A1 0.2 nozzle.json b/resources/profiles/BBL/process/0.14mm Extra Draft @BBL A1 0.2 nozzle.json index 0b09340a5f..c8bae15c77 100644 --- a/resources/profiles/BBL/process/0.14mm Extra Draft @BBL A1 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.14mm Extra Draft @BBL A1 0.2 nozzle.json @@ -1,25 +1,25 @@ { - "type": "process", - "name": "0.14mm Extra Draft @BBL A1 0.2 nozzle", - "inherits": "fdm_process_single_0.14_nozzle_0.2", - "from": "system", - "setting_id": "GP087", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "initial_layer_infill_speed": [ - "28" - ], - "initial_layer_speed": [ - "16" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.2 nozzle" - ] -} + "type": "process", + "name": "0.14mm Extra Draft @BBL A1 0.2 nozzle", + "inherits": "fdm_process_single_0.14_nozzle_0.2", + "from": "system", + "setting_id": "GP087", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "initial_layer_infill_speed": [ + "28" + ], + "initial_layer_speed": [ + "16" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.14mm Extra Draft @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/process/0.14mm Extra Draft @BBL A1M 0.2 nozzle.json index 1d29cc9b0f..df0cdaa63c 100644 --- a/resources/profiles/BBL/process/0.14mm Extra Draft @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.14mm Extra Draft @BBL A1M 0.2 nozzle.json @@ -1,24 +1,24 @@ { - "type": "process", - "name": "0.14mm Extra Draft @BBL A1M 0.2 nozzle", - "inherits": "fdm_process_single_0.14_nozzle_0.2", - "from": "system", - "setting_id": "GP053", - "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.", - "default_acceleration": [ - "6000" - ], - "initial_layer_speed": [ - "16" - ], - "initial_layer_infill_speed": [ - "28" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.2 nozzle" - ] -} + "type": "process", + "name": "0.14mm Extra Draft @BBL A1M 0.2 nozzle", + "inherits": "fdm_process_single_0.14_nozzle_0.2", + "from": "system", + "setting_id": "GP053", + "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.", + "default_acceleration": [ + "6000" + ], + "initial_layer_speed": [ + "16" + ], + "initial_layer_infill_speed": [ + "28" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.2 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.14mm Extra Draft @BBL P1P 0.2 nozzle.json b/resources/profiles/BBL/process/0.14mm Extra Draft @BBL P1P 0.2 nozzle.json index 437f17bf44..27bead46f0 100644 --- a/resources/profiles/BBL/process/0.14mm Extra Draft @BBL P1P 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.14mm Extra Draft @BBL P1P 0.2 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,6 +43,22 @@ "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" + ], "outer_wall_acceleration": [ "2500", "2500" @@ -75,10 +79,6 @@ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.14mm Standard @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/process/0.14mm Standard @BBL X1C 0.2 nozzle.json index 8e36589ccd..ad94671a99 100644 --- a/resources/profiles/BBL/process/0.14mm Standard @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/process/0.14mm Standard @BBL X1C 0.2 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "70", - "70" - ], "initial_layer_speed": [ "40", "40" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,6 +43,22 @@ "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "70", + "70" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" + ], "outer_wall_acceleration": [ "5000", "5000" @@ -75,10 +79,6 @@ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.16mm Balanced Quality @BBL H2D.json b/resources/profiles/BBL/process/0.16mm Balanced Quality @BBL H2D.json index e1196f39ed..02e5ea0d9f 100644 --- a/resources/profiles/BBL/process/0.16mm Balanced Quality @BBL H2D.json +++ b/resources/profiles/BBL/process/0.16mm Balanced Quality @BBL H2D.json @@ -6,18 +6,59 @@ "setting_id": "GP174", "instantiation": "true", "description": "High quality profile for 0.16mm layer height, prioritizing print quality and strength.", + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50" + ], "default_acceleration": [ "4000", "4000", "4000", "4000", + "4000", + "4000", "4000" ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "enable_tower_interface_features": "1", + "gap_infill_speed": [ + "250", + "250", + "250", + "250", + "250", + "250", + "250" + ], "initial_layer_speed": [ "50", "50", "50", "50", + "50", + "50", "50" ], "inner_wall_speed": [ @@ -25,96 +66,35 @@ "150", "150", "150", + "150", + "150", "150" ], "internal_solid_infill_speed": [ "180", "180", - "180", - "180", - "180" - ], - "outer_wall_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" - ], - "outer_wall_speed": [ - "60", - "60", - "60", - "60", - "60" - ], - "overhang_1_4_speed": [ - "60", - "60", - "60", - "60", - "60" - ], - "overhang_2_4_speed": [ - "30", - "30", - "30", - "30", - "30" - ], - "overhang_3_4_speed": [ - "10", - "10", - "10", - "10", - "10" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_pattern": "gyroid", - "sparse_infill_speed": [ "180", "180", "180", "180", "180" ], - "top_surface_speed": [ - "150", - "150", - "150", - "150", - "150" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "bridge_speed": [ - "50", - "50", - "50", - "50", - "50" - ], - "enable_overhang_speed": [ - "1", - "1", - "1", - "1", - "1" - ], - "gap_infill_speed": [ - "250", - "250", - "250", - "250", - "250" + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000", + "6000", + "6000" ], "initial_layer_acceleration": [ "500", "500", "500", "500", + "500", + "500", "500" ], "initial_layer_infill_speed": [ @@ -122,32 +102,80 @@ "105", "105", "105", + "105", + "105", "105" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000", - "6000", - "6000", - "6000" - ], "inner_wall_acceleration": [ "0", "0", "0", "0", + "0", + "0", "0" ], - "overhang_4_4_speed": [ + "outer_wall_speed": [ + "60", + "60", + "60", + "60", + "60", + "60", + "60" + ], + "outer_wall_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "overhang_1_4_speed": [ + "60", + "60", + "60", + "60", + "60", + "60", + "60" + ], + "overhang_2_4_speed": [ + "30", + "30", + "30", + "30", + "30", + "30", + "30" + ], + "overhang_3_4_speed": [ + "10", + "10", "10", "10", "10", "10", "10" ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10", + "10", + "10" + ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", + "1", + "2", "2", "2", "2" @@ -155,36 +183,29 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Direct Drive Standard", "Direct Drive High Flow", - "Direct Drive TPU High Flow" + "Direct Drive TPU High Flow", + "Direct Drive E3D High Flow" ], - "small_perimeter_speed": [ - "50%", - "50%", - "50%", - "50%", - "50%" - ], - "small_perimeter_threshold": [ - "0", - "0", - "0", - "0", - "0" - ], - "sparse_infill_acceleration": [ - "100%", - "100%", - "100%", - "100%", - "100%" + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "180", + "180", + "180", + "180", + "180", + "180", + "180" ], "support_interface_speed": [ "80", "80", "80", "80", + "80", + "80", "80" ], "support_speed": [ @@ -192,34 +213,164 @@ "150", "150", "150", + "150", + "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "top_surface_speed": [ + "150", + "150", + "150", + "150", + "150", + "150", + "150" ], "travel_acceleration": [ "10000", "10000", "10000", "10000", + "10000", + "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250", + "250" + ], "travel_speed": [ "500", "500", "500", "500", + "500", + "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1", + "1" + ], "travel_speed_z": [ "0", "0", "0", "0", + "0", + "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.16mm Balanced Quality @BBL H2DP.json b/resources/profiles/BBL/process/0.16mm Balanced Quality @BBL H2DP.json index a759744dac..80f0b0671d 100644 --- a/resources/profiles/BBL/process/0.16mm Balanced Quality @BBL H2DP.json +++ b/resources/profiles/BBL/process/0.16mm Balanced Quality @BBL H2DP.json @@ -6,6 +6,13 @@ "setting_id": "GP129", "instantiation": "true", "description": "High quality profile for 0.16mm layer height, prioritizing print quality and strength.", + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50" + ], "default_acceleration": [ "4000", "4000", @@ -13,6 +20,27 @@ "4000", "4000" ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], + "gap_infill_speed": [ + "250", + "250", + "250", + "250", + "250" + ], "initial_layer_speed": [ "50", "50", @@ -34,6 +62,34 @@ "180", "180" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0" + ], "outer_wall_speed": [ "60", "60", @@ -69,75 +125,6 @@ "10", "10" ], - "prime_tower_width": "60", - "prime_tower_brim_width": "-1", - "sparse_infill_pattern": "gyroid", - "sparse_infill_speed": [ - "180", - "180", - "180", - "180", - "180" - ], - "top_surface_speed": [ - "150", - "150", - "150", - "150", - "150" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "bridge_speed": [ - "50", - "50", - "50", - "50", - "50" - ], - "enable_overhang_speed": [ - "1", - "1", - "1", - "1", - "1" - ], - "gap_infill_speed": [ - "250", - "250", - "250", - "250", - "250" - ], - "initial_layer_acceleration": [ - "500", - "500", - "500", - "500", - "500" - ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105", - "105" - ], - "initial_layer_travel_acceleration": [ - "6000", - "6000", - "6000", - "6000", - "6000" - ], - "inner_wall_acceleration": [ - "0", - "0", - "0", - "0", - "0" - ], "overhang_4_4_speed": [ "10", "10", @@ -145,6 +132,8 @@ "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", @@ -159,6 +148,70 @@ "Direct Drive High Flow", "Direct Drive TPU High Flow" ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "180", + "180", + "180", + "180", + "180" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], "small_perimeter_speed": [ "50%", "50%", @@ -180,27 +233,13 @@ "100%", "100%" ], - "support_interface_speed": [ - "80", - "80", - "80", - "80", - "80" - ], - "support_speed": [ + "top_surface_speed": [ "150", "150", "150", "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" - ], "travel_acceleration": [ "10000", "10000", @@ -208,6 +247,13 @@ "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], "travel_speed": [ "500", "500", @@ -215,11 +261,35 @@ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" + ], "travel_speed_z": [ "0", "0", "0", "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.16mm High Quality @BBL A1.json b/resources/profiles/BBL/process/0.16mm High Quality @BBL A1.json index c2d82c45d8..4a61503a61 100644 --- a/resources/profiles/BBL/process/0.16mm High Quality @BBL A1.json +++ b/resources/profiles/BBL/process/0.16mm High Quality @BBL A1.json @@ -1,41 +1,41 @@ { - "type": "process", - "name": "0.16mm High Quality @BBL A1", - "inherits": "fdm_process_single_0.16", - "from": "system", - "setting_id": "GP110", - "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" - ], - "elefant_foot_compensation": "0.075", - "gap_infill_speed": [ - "250" - ], - "inner_wall_speed": [ - "150" - ], - "internal_solid_infill_speed": [ - "200" - ], - "outer_wall_acceleration": [ - "2000" - ], - "outer_wall_speed": [ - "60" - ], - "sparse_infill_pattern": "gyroid", - "sparse_infill_speed": [ - "200" - ], - "top_surface_speed": [ - "150" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "process", + "name": "0.16mm High Quality @BBL A1", + "inherits": "fdm_process_single_0.16", + "from": "system", + "setting_id": "GP110", + "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" + ], + "elefant_foot_compensation": "0.075", + "gap_infill_speed": [ + "250" + ], + "inner_wall_speed": [ + "150" + ], + "internal_solid_infill_speed": [ + "200" + ], + "outer_wall_acceleration": [ + "2000" + ], + "outer_wall_speed": [ + "60" + ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "200" + ], + "top_surface_speed": [ + "150" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.16mm High Quality @BBL A1M.json b/resources/profiles/BBL/process/0.16mm High Quality @BBL A1M.json index c0caba2edb..1b8de9eb36 100644 --- a/resources/profiles/BBL/process/0.16mm High Quality @BBL A1M.json +++ b/resources/profiles/BBL/process/0.16mm High Quality @BBL A1M.json @@ -1,41 +1,41 @@ { - "type": "process", - "name": "0.16mm High Quality @BBL A1M", - "inherits": "fdm_process_single_0.16", - "from": "system", - "setting_id": "GP109", - "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": [ - "3000" - ], - "elefant_foot_compensation": "0", - "gap_infill_speed": [ - "250" - ], - "inner_wall_speed": [ - "150" - ], - "internal_solid_infill_speed": [ - "200" - ], - "outer_wall_speed": [ - "60" - ], - "outer_wall_acceleration": [ - "2000" - ], - "sparse_infill_pattern": "gyroid", - "sparse_infill_speed": [ - "200" - ], - "top_surface_speed": [ - "150" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "process", + "name": "0.16mm High Quality @BBL A1M", + "inherits": "fdm_process_single_0.16", + "from": "system", + "setting_id": "GP109", + "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": [ + "3000" + ], + "elefant_foot_compensation": "0", + "gap_infill_speed": [ + "250" + ], + "inner_wall_speed": [ + "150" + ], + "internal_solid_infill_speed": [ + "200" + ], + "outer_wall_speed": [ + "60" + ], + "outer_wall_acceleration": [ + "2000" + ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "200" + ], + "top_surface_speed": [ + "150" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.16mm High Quality @BBL A2L.json b/resources/profiles/BBL/process/0.16mm High Quality @BBL A2L.json index 5c75e20bdd..846de8781b 100644 --- a/resources/profiles/BBL/process/0.16mm High Quality @BBL A2L.json +++ b/resources/profiles/BBL/process/0.16mm High Quality @BBL A2L.json @@ -9,7 +9,6 @@ "default_acceleration": [ "4000" ], - "elefant_foot_compensation": "0.075", "enable_arc_fitting": "0", "enable_height_slowdown": [ "1" @@ -42,9 +41,6 @@ "slowdown_start_acc": [ "8000" ], - "slowdown_start_height": [ - "0" - ], "slowdown_start_speed": [ "500" ], diff --git a/resources/profiles/BBL/process/0.16mm High Quality @BBL H2C.json b/resources/profiles/BBL/process/0.16mm High Quality @BBL H2C.json index c5b4a93f93..6cd4abbb4f 100644 --- a/resources/profiles/BBL/process/0.16mm High Quality @BBL H2C.json +++ b/resources/profiles/BBL/process/0.16mm High Quality @BBL H2C.json @@ -10,6 +10,7 @@ "4000", "4000", "4000", + "4000", "4000" ], "enable_tower_interface_features": "1", @@ -17,50 +18,58 @@ "50", "50", "50", + "50", "50" ], "inner_wall_speed": [ "150", "150", "150", + "150", "150" ], "internal_solid_infill_speed": [ "180", "180", "180", + "180", "180" ], - "ironing_speed": "20", "ironing_flow": "25%", + "ironing_speed": "20", "outer_wall_acceleration": [ "2000", "2000", "2000", + "2000", "2000" ], "outer_wall_speed": [ "60", "60", "60", + "60", "60" ], "overhang_1_4_speed": [ "60", "60", "60", + "60", "60" ], "overhang_2_4_speed": [ "30", "30", "30", + "30", "30" ], "overhang_3_4_speed": [ "10", "10", "10", + "10", "10" ], "prime_tower_brim_width": "-1", @@ -70,15 +79,220 @@ "180", "180", "180", + "180", "180" ], "top_surface_speed": [ "150", "150", "150", + "150", "150" ], "compatible_printers": [ "Bambu Lab H2C 0.4 nozzle" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "travel_speed": [ + "500", + "500", + "500", + "500", + "500" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0" + ], + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0" + ], + "gap_infill_speed": [ + "250", + "250", + "250", + "250", + "250" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2" + ], + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive E3D High Flow", + "Direct Drive Standard", + "Direct Drive High Flow" ] } diff --git a/resources/profiles/BBL/process/0.16mm High Quality @BBL H2S.json b/resources/profiles/BBL/process/0.16mm High Quality @BBL H2S.json index 903eb3749d..9aa48c1f6b 100644 --- a/resources/profiles/BBL/process/0.16mm High Quality @BBL H2S.json +++ b/resources/profiles/BBL/process/0.16mm High Quality @BBL H2S.json @@ -6,163 +6,214 @@ "setting_id": "GP235", "instantiation": "true", "description": "High quality profile for 0.16mm layer height, prioritizing print quality and strength.", - "default_acceleration": [ - "4000", - "4000" - ], - "initial_layer_speed": [ + "bridge_speed": [ + "50", "50", "50" ], - "inner_wall_speed": [ - "150", - "150" + "default_acceleration": [ + "4000", + "4000", + "4000" ], - "internal_solid_infill_speed": [ - "200", - "200" + "enable_height_slowdown": [ + "0", + "0", + "0" ], - "outer_wall_acceleration": [ - "2000", - "2000" - ], - "outer_wall_speed": [ - "60", - "60" - ], - "overhang_1_4_speed": [ - "60", - "60" - ], - "overhang_2_4_speed": [ - "30", - "30" - ], - "overhang_3_4_speed": [ - "10", - "10" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_pattern": "gyroid", - "sparse_infill_speed": [ - "200", - "200" - ], - "top_surface_speed": [ - "150", - "150" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle" + "enable_overhang_speed": [ + "1", + "1", + "1" ], "gap_infill_speed": [ + "250", "250", "250" ], + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], "initial_layer_infill_speed": [ + "105", "105", "105" ], - "bridge_speed": [ + "initial_layer_speed": [ + "50", "50", "50" ], "initial_layer_travel_acceleration": [ + "6000", "6000", "6000" ], - "travel_acceleration": [ - "10000", - "10000" - ], - "enable_overhang_speed": [ - "1", - "1" - ], - "enable_height_slowdown": [ - "0", - "0" - ], - "slowdown_start_height": [ - "0", - "0" - ], - "slowdown_start_speed": [ - "1000", - "1000" - ], - "slowdown_start_acc": [ - "100000", - "100000" - ], - "slowdown_end_height": [ - "400", - "400" - ], - "slowdown_end_speed": [ - "1000", - "1000" - ], - "slowdown_end_acc": [ - "100000", - "100000" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], "inner_wall_acceleration": [ + "0", "0", "0" ], - "overhang_4_4_speed": [ + "inner_wall_speed": [ + "150", + "150", + "150" + ], + "internal_solid_infill_speed": [ + "200", + "200", + "200" + ], + "ironing_flow": "25%", + "ironing_speed": "20", + "monotonic_travel_into_wall": "45.0", + "outer_wall_acceleration": [ + "2000", + "2000", + "2000" + ], + "outer_wall_speed": [ + "60", + "60", + "60" + ], + "overhang_1_4_speed": [ + "60", + "60", + "60" + ], + "overhang_2_4_speed": [ + "30", + "30", + "30" + ], + "overhang_3_4_speed": [ + "10", "10", "10" ], + "overhang_4_4_speed": [ + "10", + "10", + "10" + ], + "prime_tower_brim_width": "-1", + "prime_tower_flat_ironing": "1", + "prime_tower_width": "60", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000" + ], + "slowdown_start_height": [ + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000" ], "small_perimeter_speed": [ + "50%", "50%", "50%" ], "small_perimeter_threshold": [ + "0", "0", "0" ], "sparse_infill_acceleration": [ + "100%", "100%", "100%" ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "200", + "200", + "200" + ], "support_interface_speed": [ + "80", "80", "80" ], "support_speed": [ + "150", "150", "150" ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" + ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], + "top_surface_speed": [ + "150", + "150", + "150" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], "travel_speed": [ + "500", "500", "500" ], "travel_speed_z": [ + "0", "0", "0" ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], - "prime_tower_flat_ironing": "1" + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ] } diff --git a/resources/profiles/BBL/process/0.16mm High Quality @BBL P1P.json b/resources/profiles/BBL/process/0.16mm High Quality @BBL P1P.json index b7b7d2bd55..b89509d26e 100644 --- a/resources/profiles/BBL/process/0.16mm High Quality @BBL P1P.json +++ b/resources/profiles/BBL/process/0.16mm High Quality @BBL P1P.json @@ -26,6 +26,10 @@ "250", "250" ], + "initial_layer_speed": [ + "50", + "50" + ], "inner_wall_speed": [ "150", "150" @@ -34,34 +38,30 @@ "200", "200" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], - "initial_layer_speed": [ - "50", - "50" + "initial_layer_travel_acceleration": [ + "6000", + "6000" ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" + "outer_wall_speed": [ + "60", + "60" ], "outer_wall_acceleration": [ "2000", "2000" ], - "outer_wall_speed": [ - "60", - "60" - ], "overhang_1_4_speed": [ "60", "60" @@ -91,6 +91,14 @@ "200", "200" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.16mm High Quality @BBL P2S.json b/resources/profiles/BBL/process/0.16mm High Quality @BBL P2S.json index 65e4674832..4d6e809633 100644 --- a/resources/profiles/BBL/process/0.16mm High Quality @BBL P2S.json +++ b/resources/profiles/BBL/process/0.16mm High Quality @BBL P2S.json @@ -6,164 +6,211 @@ "setting_id": "GP208", "instantiation": "true", "description": "High quality profile for 0.16mm layer height, prioritizing print quality and strength.", - "bottom_surface_pattern": "monotonicline", "bridge_speed": [ + "50", "50", "50" ], - "enable_arc_fitting": "0", "default_acceleration": [ + "4000", "4000", "4000" ], "enable_overhang_speed": [ + "1", "1", "1" ], "enable_height_slowdown": [ + "0", "0", "0" ], "gap_infill_speed": [ + "250", "250", "250" ], + "initial_layer_speed": [ + "50", + "50", + "50" + ], "inner_wall_speed": [ + "150", "150", "150" ], "internal_solid_infill_speed": [ + "200", "200", "200" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], - "initial_layer_speed": [ - "50", - "50" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "initial_layer_travel_acceleration": [ + "6000", "6000", "6000" ], - "outer_wall_acceleration": [ - "2000", - "2000" + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0" ], "outer_wall_speed": [ + "60", "60", "60" ], + "outer_wall_acceleration": [ + "2000", + "2000", + "2000" + ], "overhang_1_4_speed": [ + "60", "60", "60" ], "overhang_2_4_speed": [ + "30", "30", "30" ], "overhang_3_4_speed": [ + "10", "10", "10" ], "overhang_4_4_speed": [ + "10", "10", "10" ], - "prime_tower_brim_width": "-1", "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" ], + "prime_tower_flat_ironing": "1", "sparse_infill_pattern": "gyroid", "sparse_infill_speed": [ + "200", "200", "200" ], + "support_interface_speed": [ + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150" + ], "slowdown_start_height": [ + "0", "0", "0" ], "slowdown_start_speed": [ + "1000", "1000", "1000" ], "slowdown_start_acc": [ + "100000", "100000", "100000" ], "slowdown_end_height": [ + "400", "400", "400" ], "slowdown_end_speed": [ + "1000", "1000", "1000" ], "slowdown_end_acc": [ + "100000", "100000", "100000" ], "small_perimeter_speed": [ + "50%", "50%", "50%" ], "small_perimeter_threshold": [ + "0", "0", "0" ], "sparse_infill_acceleration": [ + "100%", "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ + "150", "150", "150" ], - "top_surface_pattern": "monotonic", + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], "travel_speed": [ - "600", - "600" + "1000", + "1000", + "1000" ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], "travel_speed_z": [ + "0", "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab P2S 0.4 nozzle" ] diff --git a/resources/profiles/BBL/process/0.16mm High Quality @BBL X1C.json b/resources/profiles/BBL/process/0.16mm High Quality @BBL X1C.json index 0e281022a3..851eb8617c 100644 --- a/resources/profiles/BBL/process/0.16mm High Quality @BBL X1C.json +++ b/resources/profiles/BBL/process/0.16mm High Quality @BBL X1C.json @@ -26,6 +26,10 @@ "250", "250" ], + "initial_layer_speed": [ + "50", + "50" + ], "inner_wall_speed": [ "150", "150" @@ -34,34 +38,30 @@ "200", "200" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], - "initial_layer_speed": [ - "50", - "50" + "initial_layer_travel_acceleration": [ + "6000", + "6000" ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" + "outer_wall_speed": [ + "60", + "60" ], "outer_wall_acceleration": [ "2000", "2000" ], - "outer_wall_speed": [ - "60", - "60" - ], "overhang_1_4_speed": [ "60", "60" @@ -91,6 +91,14 @@ "200", "200" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.16mm High Quality @BBL X2D.json b/resources/profiles/BBL/process/0.16mm High Quality @BBL X2D.json index 4b5cf6a1b5..ceb4632c88 100644 --- a/resources/profiles/BBL/process/0.16mm High Quality @BBL X2D.json +++ b/resources/profiles/BBL/process/0.16mm High Quality @BBL X2D.json @@ -8,6 +8,8 @@ "description": "High quality profile for 0.16mm layer height, prioritizing print quality and strength.", "bridge_flow": "1.5", "bridge_speed": [ + "25", + "25", "25", "25", "25", @@ -16,11 +18,15 @@ "default_acceleration": [ "4000", "4000", + "4000", + "1000", "1000", "1000" ], "enable_tower_interface_features": "1", "initial_layer_speed": [ + "50", + "50", "50", "50", "50", @@ -29,34 +35,46 @@ "inner_wall_speed": [ "150", "150", + "150", + "100", "100", "100" ], "internal_solid_infill_speed": [ "180", "180", + "180", + "100", "100", "100" ], "outer_wall_acceleration": [ "2000", "2000", + "2000", + "1000", "1000", "1000" ], "outer_wall_speed": [ "60", "60", + "60", + "50", "50", "50" ], "overhang_2_4_speed": [ + "40", + "40", "40", "40", "40", "40" ], "overhang_4_4_speed": [ + "20", + "20", "20", "20", "20", @@ -67,23 +85,39 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Bowden Standard", - "Bowden High Flow" + "Bowden High Flow", + "Bowden E3D High Flow" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2", + "2" ], "sparse_infill_pattern": "gyroid", "sparse_infill_speed": [ "180", "180", + "180", + "100", "100", "100" ], "top_surface_speed": [ "150", "150", + "150", + "100", "100", "100" ], "travel_speed": [ + "1000", + "1000", "1000", "1000", "1000", @@ -91,5 +125,213 @@ ], "compatible_printers": [ "Bambu Lab X2D 0.4 nozzle" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150", + "150" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80", + "80" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30", + "30", + "30" + ], + "overhang_1_4_speed": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105", + "105" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500", + "500" + ], + "gap_infill_speed": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0" ] } diff --git a/resources/profiles/BBL/process/0.16mm Optimal @BBL A1.json b/resources/profiles/BBL/process/0.16mm Optimal @BBL A1.json index 17541349bf..6525558f7d 100644 --- a/resources/profiles/BBL/process/0.16mm Optimal @BBL A1.json +++ b/resources/profiles/BBL/process/0.16mm Optimal @BBL A1.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.16mm Optimal @BBL A1", - "inherits": "fdm_process_single_0.16", - "from": "system", - "setting_id": "GP078", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "process", + "name": "0.16mm Optimal @BBL A1", + "inherits": "fdm_process_single_0.16", + "from": "system", + "setting_id": "GP078", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.16mm Optimal @BBL A1M.json b/resources/profiles/BBL/process/0.16mm Optimal @BBL A1M.json index bb129e5b79..cfc292d56e 100644 --- a/resources/profiles/BBL/process/0.16mm Optimal @BBL A1M.json +++ b/resources/profiles/BBL/process/0.16mm Optimal @BBL A1M.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.16mm Optimal @BBL A1M", - "inherits": "fdm_process_single_0.16", - "from": "system", - "setting_id": "GP045", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "process", + "name": "0.16mm Optimal @BBL A1M", + "inherits": "fdm_process_single_0.16", + "from": "system", + "setting_id": "GP045", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.16mm Optimal @BBL P1P.json b/resources/profiles/BBL/process/0.16mm Optimal @BBL P1P.json index 4f536ba2cf..a2b0b19939 100644 --- a/resources/profiles/BBL/process/0.16mm Optimal @BBL P1P.json +++ b/resources/profiles/BBL/process/0.16mm Optimal @BBL P1P.json @@ -26,10 +26,6 @@ "300", "300" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ "50", "50" @@ -42,22 +38,30 @@ "300", "300" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], "outer_wall_speed": [ "200", "200" ], + "outer_wall_acceleration": [ + "5000", + "5000" + ], "overhang_1_4_speed": [ "60", "60" @@ -70,10 +74,6 @@ "10", "10" ], - "outer_wall_acceleration": [ - "5000", - "5000" - ], "overhang_4_4_speed": [ "10", "10" @@ -90,6 +90,14 @@ "330", "330" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -126,34 +134,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_acceleration": [ - "2000", - "2000" - ], "top_surface_speed": [ "200", "200" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.16mm Optimal @BBL X1C.json b/resources/profiles/BBL/process/0.16mm Optimal @BBL X1C.json index 867d939dce..247807f042 100644 --- a/resources/profiles/BBL/process/0.16mm Optimal @BBL X1C.json +++ b/resources/profiles/BBL/process/0.16mm Optimal @BBL X1C.json @@ -26,10 +26,6 @@ "300", "300" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ "50", "50" @@ -42,22 +38,30 @@ "300", "300" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], "outer_wall_speed": [ "200", "200" ], + "outer_wall_acceleration": [ + "5000", + "5000" + ], "overhang_1_4_speed": [ "60", "60" @@ -70,10 +74,6 @@ "10", "10" ], - "outer_wall_acceleration": [ - "5000", - "5000" - ], "overhang_4_4_speed": [ "10", "10" @@ -90,6 +90,14 @@ "330", "330" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -126,34 +134,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_acceleration": [ - "2000", - "2000" - ], "top_surface_speed": [ "200", "200" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.16mm Standard @BBL A2L.json b/resources/profiles/BBL/process/0.16mm Standard @BBL A2L.json index b3eef2ee33..99b6f0e969 100644 --- a/resources/profiles/BBL/process/0.16mm Standard @BBL A2L.json +++ b/resources/profiles/BBL/process/0.16mm Standard @BBL A2L.json @@ -9,7 +9,6 @@ "default_acceleration": [ "6000" ], - "elefant_foot_compensation": "0.075", "enable_arc_fitting": "0", "enable_height_slowdown": [ "1" @@ -27,9 +26,6 @@ "slowdown_start_acc": [ "8000" ], - "slowdown_start_height": [ - "0" - ], "slowdown_start_speed": [ "500" ], diff --git a/resources/profiles/BBL/process/0.16mm Standard @BBL H2C.json b/resources/profiles/BBL/process/0.16mm Standard @BBL H2C.json index 6c532d3d77..cf5f5492af 100644 --- a/resources/profiles/BBL/process/0.16mm Standard @BBL H2C.json +++ b/resources/profiles/BBL/process/0.16mm Standard @BBL H2C.json @@ -10,6 +10,7 @@ "8000", "8000", "8000", + "8000", "8000" ], "enable_tower_interface_features": "1", @@ -17,11 +18,13 @@ "50", "50", "50", + "50", "50" ], "internal_solid_infill_speed": [ "250", "300", + "300", "250", "300" ], @@ -29,24 +32,28 @@ "200", "200", "200", + "200", "200" ], "overhang_1_4_speed": [ "60", "60", "60", + "60", "60" ], "overhang_2_4_speed": [ "30", "30", "30", + "30", "30" ], "overhang_3_4_speed": [ "10", "10", "10", + "10", "10" ], "prime_tower_brim_width": "-1", @@ -54,6 +61,7 @@ "sparse_infill_speed": [ "350", "600", + "600", "350", "600" ], @@ -61,9 +69,227 @@ "1000", "1000", "1000", + "1000", "1000" ], "compatible_printers": [ "Bambu Lab H2C 0.4 nozzle" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300", + "300" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0" + ], + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0" + ], + "gap_infill_speed": [ + "250", + "250", + "250", + "250", + "250" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200", + "200" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "outer_wall_acceleration": [ + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2" + ], + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive E3D High Flow", + "Direct Drive Standard", + "Direct Drive High Flow" ] } diff --git a/resources/profiles/BBL/process/0.16mm Standard @BBL H2D.json b/resources/profiles/BBL/process/0.16mm Standard @BBL H2D.json index 3bf6f6ae7f..58d9431dc5 100644 --- a/resources/profiles/BBL/process/0.16mm Standard @BBL H2D.json +++ b/resources/profiles/BBL/process/0.16mm Standard @BBL H2D.json @@ -6,86 +6,95 @@ "setting_id": "GP143", "instantiation": "true", "description": "Standard profile for 0.16mm layer height, prioritizing speed.", + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50" + ], "default_acceleration": [ "8000", "8000", "8000", "8000", + "8000", + "8000", "8000" ], - "initial_layer_speed": [ - "50", - "50", - "50", - "50", - "50" - ], - "internal_solid_infill_speed": [ - "250", - "300", - "250", - "300", - "300" - ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "overhang_1_4_speed": [ - "60", - "60", - "60", - "60", - "60" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600", - "600" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "bridge_speed": [ - "50", - "50", - "50", - "50", - "50" - ], "enable_overhang_speed": [ "1", "1", "1", "1", + "1", + "1", "1" ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "enable_tower_interface_features": "1", "gap_infill_speed": [ "250", "250", "250", "250", + "250", + "250", "250" ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "300", + "250", + "300", + "300", + "300" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000", + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500", "500", "500", + "500", + "500", "500" ], "initial_layer_infill_speed": [ @@ -93,41 +102,53 @@ "105", "105", "105", + "105", + "105", "105" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000", - "6000", - "6000", - "6000" - ], "inner_wall_acceleration": [ "0", "0", "0", "0", + "0", + "0", "0" ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300", - "300" + "outer_wall_speed": [ + "200", + "200", + "200", + "200", + "200", + "200", + "200" ], "outer_wall_acceleration": [ "5000", "5000", "5000", "5000", + "5000", + "5000", "5000" ], + "overhang_1_4_speed": [ + "60", + "60", + "60", + "60", + "60", + "60", + "60" + ], "overhang_2_4_speed": [ "50", "50", "50", "50", + "50", + "50", "50" ], "overhang_3_4_speed": [ @@ -135,6 +156,8 @@ "30", "30", "30", + "30", + "30", "30" ], "overhang_4_4_speed": [ @@ -142,11 +165,17 @@ "10", "10", "10", + "10", + "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", + "1", + "2", "2", "2", "2" @@ -154,36 +183,28 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Direct Drive Standard", "Direct Drive High Flow", - "Direct Drive TPU High Flow" + "Direct Drive TPU High Flow", + "Direct Drive E3D High Flow" ], - "small_perimeter_speed": [ - "50%", - "50%", - "50%", - "50%", - "50%" - ], - "small_perimeter_threshold": [ - "0", - "0", - "0", - "0", - "0" - ], - "sparse_infill_acceleration": [ - "100%", - "100%", - "100%", - "100%", - "100%" + "sparse_infill_speed": [ + "350", + "600", + "600", + "350", + "600", + "600", + "600" ], "support_interface_speed": [ "80", "80", "80", "80", + "80", + "80", "80" ], "support_speed": [ @@ -191,34 +212,164 @@ "150", "150", "150", + "150", + "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" ], "top_surface_speed": [ "200", "200", "200", "200", + "200", + "200", "200" ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1", + "1" + ], "travel_acceleration": [ "10000", "10000", "10000", "10000", + "10000", + "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], "travel_speed_z": [ "0", "0", "0", "0", + "0", + "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.16mm Standard @BBL H2DP.json b/resources/profiles/BBL/process/0.16mm Standard @BBL H2DP.json index fa625ded59..af0d5ef4cb 100644 --- a/resources/profiles/BBL/process/0.16mm Standard @BBL H2DP.json +++ b/resources/profiles/BBL/process/0.16mm Standard @BBL H2DP.json @@ -6,60 +6,6 @@ "setting_id": "GP128", "instantiation": "true", "description": "Standard profile for 0.16mm layer height, prioritizing speed.", - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000", - "8000" - ], - "initial_layer_speed": [ - "50", - "50", - "50", - "50", - "50" - ], - "internal_solid_infill_speed": [ - "250", - "300", - "250", - "300", - "300" - ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "overhang_1_4_speed": [ - "60", - "60", - "60", - "60", - "60" - ], - "prime_tower_width": "60", - "prime_tower_brim_width": "-1", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600", - "600" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], "bridge_speed": [ "50", "50", @@ -67,6 +13,13 @@ "50", "50" ], + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000", + "8000" + ], "enable_overhang_speed": [ "1", "1", @@ -74,6 +27,13 @@ "1", "1" ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], "gap_infill_speed": [ "250", "250", @@ -81,6 +41,34 @@ "250", "250" ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "250", + "300", + "300" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500", @@ -95,13 +83,6 @@ "105", "105" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000", - "6000", - "6000", - "6000" - ], "inner_wall_acceleration": [ "0", "0", @@ -109,12 +90,12 @@ "0", "0" ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300", - "300" + "outer_wall_speed": [ + "200", + "200", + "200", + "200", + "200" ], "outer_wall_acceleration": [ "5000", @@ -123,6 +104,13 @@ "5000", "5000" ], + "overhang_1_4_speed": [ + "60", + "60", + "60", + "60", + "60" + ], "overhang_2_4_speed": [ "50", "50", @@ -144,6 +132,8 @@ "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", @@ -158,6 +148,69 @@ "Direct Drive High Flow", "Direct Drive TPU High Flow" ], + "sparse_infill_speed": [ + "350", + "600", + "350", + "600", + "600" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], "small_perimeter_speed": [ "50%", "50%", @@ -179,27 +232,6 @@ "100%", "100%" ], - "support_interface_speed": [ - "80", - "80", - "80", - "80", - "80" - ], - "support_speed": [ - "150", - "150", - "150", - "150", - "150" - ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" - ], "top_surface_speed": [ "200", "200", @@ -214,11 +246,49 @@ "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" + ], "travel_speed_z": [ "0", "0", "0", "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.16mm Standard @BBL H2S.json b/resources/profiles/BBL/process/0.16mm Standard @BBL H2S.json index ec829b7ee4..8291be1cb1 100644 --- a/resources/profiles/BBL/process/0.16mm Standard @BBL H2S.json +++ b/resources/profiles/BBL/process/0.16mm Standard @BBL H2S.json @@ -7,157 +7,206 @@ "instantiation": "true", "description": "Standard profile for 0.16mm layer height, prioritizing speed.", "bridge_speed": [ + "50", "50", "50" ], "default_acceleration": [ + "10000", "10000", "10000" ], - "enable_overhang_speed": [ - "1", - "1" - ], "enable_height_slowdown": [ "0", - "0" - ], - "gap_infill_speed": [ - "250", - "250" - ], - "initial_layer_speed": [ - "50", - "50" - ], - "internal_solid_infill_speed": [ - "250", - "300" - ], - "inner_wall_speed": [ - "300", - "300" - ], - "initial_layer_infill_speed": [ - "105", - "105" - ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ "0", "0" ], + "enable_overhang_speed": [ + "1", + "1", + "1" + ], + "gap_infill_speed": [ + "250", + "250", + "250" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105" + ], + "initial_layer_speed": [ + "50", + "50", + "50" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0" + ], + "inner_wall_speed": [ + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "300" + ], + "monotonic_travel_into_wall": "45.0", + "outer_wall_acceleration": [ + "5000", + "5000", + "5000" + ], "outer_wall_speed": [ + "200", "200", "200" ], "overhang_1_4_speed": [ + "60", "60", "60" ], - "outer_wall_acceleration": [ - "5000", - "5000" - ], "overhang_2_4_speed": [ + "30", "30", "30" ], "overhang_3_4_speed": [ + "10", "10", "10" ], "overhang_4_4_speed": [ + "10", "10", "10" ], "prime_tower_brim_width": "-1", + "prime_tower_flat_ironing": "1", "prime_tower_width": "60", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" ], - "prime_tower_flat_ironing": "1", - "sparse_infill_speed": [ - "350", - "600" - ], - "slowdown_start_height": [ - "0", - "0" - ], - "slowdown_start_speed": [ - "1000", - "1000" - ], - "slowdown_start_acc": [ + "slowdown_end_acc": [ + "100000", "100000", "100000" ], "slowdown_end_height": [ + "400", "400", "400" ], "slowdown_end_speed": [ + "1000", "1000", "1000" ], - "slowdown_end_acc": [ + "slowdown_start_acc": [ + "100000", "100000", "100000" ], + "slowdown_start_height": [ + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000" + ], "small_perimeter_speed": [ + "50%", "50%", "50%" ], "small_perimeter_threshold": [ + "0", "0", "0" ], "sparse_infill_acceleration": [ + "100%", "100%", "100%" ], + "sparse_infill_speed": [ + "350", + "600", + "600" + ], "support_interface_speed": [ + "80", "80", "80" ], "support_speed": [ + "150", "150", "150" ], - "travel_speed": [ - "1000", - "1000" - ], - "travel_acceleration": [ - "10000", - "10000" + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], "top_surface_speed": [ + "200", "200", "200" ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000" + ], "travel_speed_z": [ + "0", "0", "0" ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], diff --git a/resources/profiles/BBL/process/0.16mm Standard @BBL P2S.json b/resources/profiles/BBL/process/0.16mm Standard @BBL P2S.json index ba295d7a52..657b0b7c38 100644 --- a/resources/profiles/BBL/process/0.16mm Standard @BBL P2S.json +++ b/resources/profiles/BBL/process/0.16mm Standard @BBL P2S.json @@ -6,163 +6,210 @@ "setting_id": "GP209", "instantiation": "true", "description": "Standard profile for 0.16mm layer height, prioritizing speed.", - "bottom_surface_pattern": "monotonicline", "bridge_speed": [ + "50", "50", "50" ], - "enable_arc_fitting": "0", "default_acceleration": [ + "10000", "10000", "10000" ], "enable_overhang_speed": [ + "1", "1", "1" ], "enable_height_slowdown": [ + "0", "0", "0" ], "gap_infill_speed": [ "250", - "250" - ], - "internal_solid_infill_speed": [ "250", "250" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ + "50", "50", "50" ], "inner_wall_speed": [ + "300", "300", "300" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" + "internal_solid_infill_speed": [ + "250", + "250", + "250" ], "initial_layer_travel_acceleration": [ + "6000", "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0" + ], "outer_wall_speed": [ + "200", "200", "200" ], + "outer_wall_acceleration": [ + "5000", + "5000", + "5000" + ], "overhang_1_4_speed": [ + "60", "60", "60" ], "overhang_2_4_speed": [ + "30", "30", "30" ], "overhang_3_4_speed": [ "10", - "10" - ], - "outer_wall_acceleration": [ - "5000", - "5000" - ], - "overhang_4_4_speed": [ "10", "10" ], - "prime_tower_brim_width": "-1", + "overhang_4_4_speed": [ + "10", + "10", + "10" + ], "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" ], + "prime_tower_flat_ironing": "1", "sparse_infill_speed": [ + "270", "270", "270" ], + "support_interface_speed": [ + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150" + ], "slowdown_start_height": [ + "0", "0", "0" ], "slowdown_start_speed": [ + "1000", "1000", "1000" ], "slowdown_start_acc": [ + "100000", "100000", "100000" ], "slowdown_end_height": [ + "400", "400", "400" ], "slowdown_end_speed": [ + "1000", "1000", "1000" ], "slowdown_end_acc": [ + "100000", "100000", "100000" ], "small_perimeter_speed": [ + "50%", "50%", "50%" ], "small_perimeter_threshold": [ + "0", "0", "0" ], "sparse_infill_acceleration": [ + "100%", "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ + "150", "150", "150" ], - "top_surface_pattern": "monotonic", + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], "travel_speed": [ - "600", - "600" + "1000", + "1000", + "1000" ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], "travel_speed_z": [ + "0", "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab P2S 0.4 nozzle" ] diff --git a/resources/profiles/BBL/process/0.16mm Standard @BBL X2D.json b/resources/profiles/BBL/process/0.16mm Standard @BBL X2D.json index d88dfcd60d..9057cd2b9f 100644 --- a/resources/profiles/BBL/process/0.16mm Standard @BBL X2D.json +++ b/resources/profiles/BBL/process/0.16mm Standard @BBL X2D.json @@ -8,6 +8,8 @@ "description": "Standard profile for 0.16mm layer height, prioritizing speed.", "bridge_flow": "1.5", "bridge_speed": [ + "25", + "25", "25", "25", "25", @@ -16,6 +18,8 @@ "default_acceleration": [ "10000", "8000", + "8000", + "1000", "1000", "1000" ], @@ -24,9 +28,13 @@ "50", "250", "250", + "250", + "250", "250" ], "initial_layer_speed": [ + "50", + "50", "50", "50", "50", @@ -35,22 +43,30 @@ "internal_solid_infill_speed": [ "250", "300", + "300", + "100", "100", "100" ], "outer_wall_speed": [ "200", "200", + "200", + "50", "50", "50" ], "overhang_2_4_speed": [ + "40", + "40", "40", "40", "40", "40" ], "overhang_4_4_speed": [ + "20", + "20", "20", "20", "20", @@ -61,12 +77,24 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Bowden Standard", - "Bowden High Flow" + "Bowden High Flow", + "Bowden E3D High Flow" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2", + "2" ], "sparse_infill_speed": [ "270", "600", + "600", + "100", "100", "100" ], @@ -74,9 +102,13 @@ "150", "200", "200", + "200", + "200", "200" ], "travel_speed": [ + "1000", + "1000", "1000", "1000", "1000", @@ -84,5 +116,221 @@ ], "compatible_printers": [ "Bambu Lab X2D 0.4 nozzle" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150", + "150" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80", + "80" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30", + "30", + "30" + ], + "overhang_1_4_speed": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "outer_wall_acceleration": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300", + "300", + "300" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105", + "105" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500", + "500" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0" ] } diff --git a/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL A2L 0.6 nozzle.json index 8995eeb48f..fb98427904 100644 --- a/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL A2L 0.6 nozzle.json @@ -9,7 +9,7 @@ "default_acceleration": [ "6000" ], - "elefant_foot_compensation": "0.075", + "elefant_foot_compensation": "0.15", "enable_arc_fitting": "0", "enable_height_slowdown": [ "1" diff --git a/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL H2C 0.6 nozzle.json b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL H2C 0.6 nozzle.json index 4c0bebdccc..c10546eb03 100644 --- a/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL H2C 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL H2C 0.6 nozzle.json @@ -10,6 +10,7 @@ "8000", "8000", "8000", + "8000", "8000" ], "enable_tower_interface_features": "1", @@ -17,36 +18,42 @@ "105", "105", "105", + "105", "105" ], "initial_layer_speed": [ "50", "50", "50", + "50", "50" ], "inner_wall_speed": [ "300", "300", "300", + "300", "300" ], "internal_solid_infill_speed": [ "250", "250", "250", + "250", "250" ], "outer_wall_speed": [ "200", "200", "200", + "200", "200" ], "overhang_3_4_speed": [ "30", "30", "30", + "30", "30" ], "prime_tower_brim_width": "-1", @@ -55,21 +62,234 @@ "350", "350", "350", + "350", "350" ], "top_surface_speed": [ "200", "200", "200", + "200", "200" ], "travel_speed": [ "1000", "1000", "1000", + "1000", "1000" ], "compatible_printers": [ "Bambu Lab H2C 0.6 nozzle" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0" + ], + "bridge_speed": [ + "30", + "30", + "30", + "30", + "30" + ], + "overhang_2_4_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "overhang_1_4_speed": [ + "0", + "0", + "0", + "0", + "0" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0" + ], + "gap_infill_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "outer_wall_acceleration": [ + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2" + ], + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive E3D High Flow", + "Direct Drive Standard", + "Direct Drive High Flow" ] } diff --git a/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL H2D 0.6 nozzle.json index 8acb76fa22..fdb6aa1b45 100644 --- a/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL H2D 0.6 nozzle.json @@ -11,6 +11,8 @@ "50", "50", "50", + "50", + "50", "50" ], "default_acceleration": [ @@ -18,27 +20,45 @@ "8000", "8000", "8000", + "8000", + "8000", "8000" ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "enable_tower_interface_features": "1", "gap_infill_speed": [ "250", "250", "250", "250", + "250", + "250", "250" ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105", - "105" - ], "initial_layer_speed": [ "50", "50", "50", "50", + "50", + "50", "50" ], "inner_wall_speed": [ @@ -46,88 +66,71 @@ "300", "300", "300", + "300", + "300", "300" ], "internal_solid_infill_speed": [ "250", "300", + "300", "250", "300", + "300", "300" ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "overhang_3_4_speed": [ - "30", - "30", - "30", - "30", - "30" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600", - "600" - ], - "top_surface_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.6 nozzle" - ], - "enable_overhang_speed": [ - "1", - "1", - "1", - "1", - "1" - ], - "initial_layer_acceleration": [ - "500", - "500", - "500", - "500", - "500" - ], "initial_layer_travel_acceleration": [ "6000", "6000", "6000", "6000", + "6000", + "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105", + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0", "0", "0", + "0", + "0", "0" ], + "outer_wall_speed": [ + "200", + "200", + "200", + "200", + "200", + "200", + "200" + ], "outer_wall_acceleration": [ "5000", "5000", "5000", "5000", + "5000", + "5000", "5000" ], "overhang_1_4_speed": [ @@ -135,6 +138,8 @@ "0", "0", "0", + "0", + "0", "0" ], "overhang_2_4_speed": [ @@ -142,18 +147,35 @@ "50", "50", "50", + "50", + "50", "50" ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30", + "30", + "30", + "30" + ], "overhang_4_4_speed": [ "10", "10", "10", "10", + "10", + "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", + "1", + "2", "2", "2", "2" @@ -161,36 +183,28 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Direct Drive Standard", "Direct Drive High Flow", - "Direct Drive TPU High Flow" + "Direct Drive TPU High Flow", + "Direct Drive E3D High Flow" ], - "small_perimeter_speed": [ - "50%", - "50%", - "50%", - "50%", - "50%" - ], - "small_perimeter_threshold": [ - "0", - "0", - "0", - "0", - "0" - ], - "sparse_infill_acceleration": [ - "100%", - "100%", - "100%", - "100%", - "100%" + "sparse_infill_speed": [ + "350", + "600", + "600", + "350", + "600", + "600", + "600" ], "support_interface_speed": [ "80", "80", "80", "80", + "80", + "80", "80" ], "support_speed": [ @@ -198,27 +212,164 @@ "150", "150", "150", + "150", + "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200", + "200", + "200", + "200" ], "travel_acceleration": [ "10000", "10000", "10000", "10000", + "10000", + "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1", + "1" + ], "travel_speed_z": [ "0", "0", "0", "0", + "0", + "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL H2DP 0.6 nozzle.json index 617f91bb1a..6f9b6e8f61 100644 --- a/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL H2DP 0.6 nozzle.json @@ -20,6 +20,20 @@ "8000", "8000" ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], "gap_infill_speed": [ "250", "250", @@ -48,59 +62,12 @@ "300", "300" ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105", - "105" - ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "overhang_3_4_speed": [ - "30", - "30", - "30", - "30", - "30" - ], - "prime_tower_width": "60", - "prime_tower_brim_width": "-1", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600", - "600" - ], - "top_surface_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle" - ], - "enable_overhang_speed": [ - "1", - "1", - "1", - "1", - "1" + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" ], "initial_layer_acceleration": [ "500", @@ -109,12 +76,12 @@ "500", "500" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000", - "6000", - "6000", - "6000" + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105" ], "inner_wall_acceleration": [ "0", @@ -123,6 +90,13 @@ "0", "0" ], + "outer_wall_speed": [ + "200", + "200", + "200", + "200", + "200" + ], "outer_wall_acceleration": [ "5000", "5000", @@ -144,6 +118,13 @@ "50", "50" ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30", + "30" + ], "overhang_4_4_speed": [ "10", "10", @@ -151,6 +132,8 @@ "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", @@ -165,6 +148,69 @@ "Direct Drive High Flow", "Direct Drive TPU High Flow" ], + "sparse_infill_speed": [ + "350", + "600", + "350", + "600", + "600" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], "small_perimeter_speed": [ "50%", "50%", @@ -186,26 +232,12 @@ "100%", "100%" ], - "support_interface_speed": [ - "80", - "80", - "80", - "80", - "80" - ], - "support_speed": [ - "150", - "150", - "150", - "150", - "150" - ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" + "top_surface_speed": [ + "200", + "200", + "200", + "200", + "200" ], "travel_acceleration": [ "10000", @@ -214,11 +246,49 @@ "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" + ], "travel_speed_z": [ "0", "0", "0", "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL H2S 0.6 nozzle.json index c0061a0b41..e0742fac98 100644 --- a/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL H2S 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL H2S 0.6 nozzle.json @@ -7,162 +7,211 @@ "instantiation": "true", "description": "High quality profile for 0.6mm nozzle, prioritizing print quality and strength.", "bridge_speed": [ + "30", "30", "30" ], "default_acceleration": [ + "10000", "10000", "10000" ], + "elefant_foot_compensation": "0.15", + "enable_height_slowdown": [ + "0", + "0", + "0" + ], + "enable_overhang_speed": [ + "1", + "1", + "1" + ], "gap_infill_speed": [ + "50", "50", "50" ], + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], "initial_layer_infill_speed": [ + "105", "105", "105" ], "initial_layer_speed": [ + "50", "50", "50" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0" + ], "inner_wall_speed": [ + "300", "300", "300" ], "internal_solid_infill_speed": [ + "250", "250", "250" ], - "outer_wall_speed": [ - "200", - "200" - ], - "overhang_3_4_speed": [ - "30", - "30" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ - "350", - "350" - ], - "top_surface_speed": [ - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.6 nozzle" - ], - "elefant_foot_compensation": "0.15", - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], - "travel_acceleration": [ - "10000", - "10000" - ], - "enable_overhang_speed": [ - "1", - "1" - ], - "enable_height_slowdown": [ - "0", - "0" - ], - "slowdown_start_height": [ - "0", - "0" - ], - "slowdown_start_speed": [ - "1000", - "1000" - ], - "slowdown_start_acc": [ - "100000", - "100000" - ], - "slowdown_end_height": [ - "400", - "400" - ], - "slowdown_end_speed": [ - "1000", - "1000" - ], - "slowdown_end_acc": [ - "100000", - "100000" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], + "monotonic_travel_into_wall": "45.0", "outer_wall_acceleration": [ + "5000", "5000", "5000" ], + "outer_wall_speed": [ + "200", + "200", + "200" + ], "overhang_1_4_speed": [ + "0", "0", "0" ], "overhang_2_4_speed": [ + "50", "50", "50" ], + "overhang_3_4_speed": [ + "30", + "30", + "30" + ], "overhang_4_4_speed": [ + "10", "10", "10" ], + "prime_tower_brim_width": "-1", + "prime_tower_flat_ironing": "1", + "prime_tower_width": "60", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000" + ], + "slowdown_start_height": [ + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000" ], "small_perimeter_speed": [ + "50%", "50%", "50%" ], "small_perimeter_threshold": [ + "0", "0", "0" ], "sparse_infill_acceleration": [ + "100%", "100%", "100%" ], + "sparse_infill_speed": [ + "350", + "350", + "350" + ], "support_interface_speed": [ + "80", "80", "80" ], "support_speed": [ + "150", "150", "150" ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" + ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], + "top_surface_speed": [ + "200", + "200", + "200" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000" + ], "travel_speed_z": [ + "0", "0", "0" ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], - "prime_tower_flat_ironing": "1" + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ] } diff --git a/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL P2S 0.6 nozzle.json index 74dccd56d7..4d2722df04 100644 --- a/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL P2S 0.6 nozzle.json @@ -6,163 +6,210 @@ "setting_id": "GP210", "instantiation": "true", "description": "High quality profile for 0.6mm nozzle, prioritizing print quality and strength.", - "bottom_surface_pattern": "monotonicline", "bridge_speed": [ + "30", "30", "30" ], - "enable_arc_fitting": "0", "default_acceleration": [ + "10000", "10000", "10000" ], "enable_overhang_speed": [ + "1", "1", "1" ], "enable_height_slowdown": [ + "0", "0", "0" ], "gap_infill_speed": [ + "50", "50", "50" ], + "initial_layer_speed": [ + "35", + "35", + "35" + ], "inner_wall_speed": [ + "300", "300", "300" ], "internal_solid_infill_speed": [ + "250", "250", "250" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], - "initial_layer_speed": [ - "35", - "35" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "initial_layer_travel_acceleration": [ + "6000", "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "55", + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0" + ], "outer_wall_speed": [ + "200", "200", "200" ], - "overhang_3_4_speed": [ - "15", - "15" - ], "outer_wall_acceleration": [ + "5000", "5000", "5000" ], "overhang_1_4_speed": [ + "0", "0", "0" ], "overhang_2_4_speed": [ + "50", "50", "50" ], + "overhang_3_4_speed": [ + "15", + "15", + "15" + ], "overhang_4_4_speed": [ + "10", "10", "10" ], - "prime_tower_brim_width": "-1", "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" ], + "prime_tower_flat_ironing": "1", "sparse_infill_speed": [ + "270", "270", "270" ], + "support_interface_speed": [ + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150" + ], "slowdown_start_height": [ + "0", "0", "0" ], "slowdown_start_speed": [ + "1000", "1000", "1000" ], "slowdown_start_acc": [ + "100000", "100000", "100000" ], "slowdown_end_height": [ + "400", "400", "400" ], "slowdown_end_speed": [ + "1000", "1000", "1000" ], "slowdown_end_acc": [ + "100000", "100000", "100000" ], "small_perimeter_speed": [ + "50%", "50%", "50%" ], "small_perimeter_threshold": [ + "0", "0", "0" ], "sparse_infill_acceleration": [ + "100%", "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_pattern": "monotonic", - "travel_speed": [ - "600", - "600" - ], "top_surface_speed": [ + "150", "150", "150" ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000" + ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], "travel_speed_z": [ + "0", "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab P2S 0.6 nozzle" ] diff --git a/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL X2D 0.6 nozzle.json b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL X2D 0.6 nozzle.json index 12852d7a3c..010af18bdb 100644 --- a/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL X2D 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.18mm Balanced Quality @BBL X2D 0.6 nozzle.json @@ -9,12 +9,16 @@ "bridge_speed": [ "30", "50", + "50", + "30", "30", "30" ], "default_acceleration": [ "10000", "8000", + "8000", + "4000", "4000", "4000" ], @@ -22,42 +26,56 @@ "gap_infill_speed": [ "50", "250", + "250", + "50", "50", "50" ], "initial_layer_infill_speed": [ "55", "105", + "105", + "55", "55", "55" ], "initial_layer_speed": [ "35", "50", + "50", + "20", "20", "20" ], "inner_wall_speed": [ "300", "300", + "300", + "150", "150", "150" ], "internal_solid_infill_speed": [ "250", "300", + "300", + "150", "150", "150" ], "outer_wall_speed": [ "200", "200", + "200", + "50", "50", "50" ], "overhang_3_4_speed": [ "15", "30", + "30", + "15", "15", "15" ], @@ -66,22 +84,38 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Bowden Standard", - "Bowden High Flow" + "Bowden High Flow", + "Bowden E3D High Flow" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2", + "2" ], "sparse_infill_speed": [ "270", "600", + "600", + "100", "100", "100" ], "top_surface_speed": [ "150", "200", + "200", + "150", "150", "150" ], "travel_speed": [ + "1000", + "1000", "1000", "1000", "1000", @@ -89,5 +123,213 @@ ], "compatible_printers": [ "Bambu Lab X2D 0.6 nozzle" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150", + "150" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80", + "80" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "overhang_2_4_speed": [ + "50", + "50", + "50", + "50", + "50", + "50" + ], + "overhang_1_4_speed": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "outer_wall_acceleration": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500", + "500" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0" ] } diff --git a/resources/profiles/BBL/process/0.18mm Fine @BBL A1 0.6 nozzle.json b/resources/profiles/BBL/process/0.18mm Fine @BBL A1 0.6 nozzle.json index 94f8bad6bc..a8c2761a81 100644 --- a/resources/profiles/BBL/process/0.18mm Fine @BBL A1 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.18mm Fine @BBL A1 0.6 nozzle.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.18mm Fine @BBL A1 0.6 nozzle", - "inherits": "fdm_process_single_0.18_nozzle_0.6", - "from": "system", - "setting_id": "GP088", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.6 nozzle" - ] -} + "type": "process", + "name": "0.18mm Fine @BBL A1 0.6 nozzle", + "inherits": "fdm_process_single_0.18_nozzle_0.6", + "from": "system", + "setting_id": "GP088", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.18mm Fine @BBL A1M 0.6 nozzle.json b/resources/profiles/BBL/process/0.18mm Fine @BBL A1M 0.6 nozzle.json index f37ba30341..c15f066e13 100644 --- a/resources/profiles/BBL/process/0.18mm Fine @BBL A1M 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.18mm Fine @BBL A1M 0.6 nozzle.json @@ -1,18 +1,18 @@ { - "type": "process", - "name": "0.18mm Fine @BBL A1M 0.6 nozzle", - "inherits": "fdm_process_single_0.18_nozzle_0.6", - "from": "system", - "setting_id": "GP062", - "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.", - "default_acceleration": [ - "6000" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.6 nozzle" - ] -} + "type": "process", + "name": "0.18mm Fine @BBL A1M 0.6 nozzle", + "inherits": "fdm_process_single_0.18_nozzle_0.6", + "from": "system", + "setting_id": "GP062", + "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.", + "default_acceleration": [ + "6000" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.18mm Fine @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/process/0.18mm Fine @BBL P1P 0.6 nozzle.json index 9598dfcfea..8adb7b6da1 100644 --- a/resources/profiles/BBL/process/0.18mm Fine @BBL P1P 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.18mm Fine @BBL P1P 0.6 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,9 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "15", - "15" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -71,14 +71,14 @@ "50", "50" ], + "overhang_3_4_speed": [ + "15", + "15" + ], "overhang_4_4_speed": [ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.18mm Standard @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/process/0.18mm Standard @BBL X1C 0.6 nozzle.json index b865adf071..d3ade4fa48 100644 --- a/resources/profiles/BBL/process/0.18mm Standard @BBL X1C 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.18mm Standard @BBL X1C 0.6 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,9 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "15", - "15" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -71,14 +71,14 @@ "50", "50" ], + "overhang_3_4_speed": [ + "15", + "15" + ], "overhang_4_4_speed": [ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.20mm Balanced Strength @BBL H2D.json b/resources/profiles/BBL/process/0.20mm Balanced Strength @BBL H2D.json index a58086b7ec..a7786842e9 100644 --- a/resources/profiles/BBL/process/0.20mm Balanced Strength @BBL H2D.json +++ b/resources/profiles/BBL/process/0.20mm Balanced Strength @BBL H2D.json @@ -7,18 +7,59 @@ "instantiation": "true", "description": "High quality profile for 0.2mm layer height, prioritizing strength and print quality.", "bottom_shell_layers": "4", + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50" + ], "default_acceleration": [ "4000", "4000", "4000", "4000", + "4000", + "4000", "4000" ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "enable_tower_interface_features": "1", + "gap_infill_speed": [ + "250", + "250", + "250", + "250", + "250", + "250", + "250" + ], "initial_layer_speed": [ "50", "50", "50", "50", + "50", + "50", "50" ], "inner_wall_speed": [ @@ -26,89 +67,35 @@ "150", "150", "150", + "150", + "150", "150" ], "internal_solid_infill_speed": [ "200", "200", - "200", - "200", - "200" - ], - "outer_wall_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" - ], - "outer_wall_speed": [ - "60", - "60", - "60", - "60", - "60" - ], - "overhang_2_4_speed": [ - "30", - "30", - "30", - "30", - "30" - ], - "overhang_3_4_speed": [ - "10", - "10", - "10", - "10", - "10" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ "200", "200", "200", "200", "200" ], - "top_shell_layers": "6", - "top_surface_speed": [ - "150", - "150", - "150", - "150", - "150" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "bridge_speed": [ - "50", - "50", - "50", - "50", - "50" - ], - "enable_overhang_speed": [ - "1", - "1", - "1", - "1", - "1" - ], - "gap_infill_speed": [ - "250", - "250", - "250", - "250", - "250" + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000", + "6000", + "6000" ], "initial_layer_acceleration": [ "500", "500", "500", "500", + "500", + "500", "500" ], "initial_layer_infill_speed": [ @@ -116,39 +103,80 @@ "105", "105", "105", + "105", + "105", "105" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000", - "6000", - "6000", - "6000" - ], "inner_wall_acceleration": [ "0", "0", "0", "0", + "0", + "0", "0" ], + "outer_wall_speed": [ + "60", + "60", + "60", + "60", + "60", + "60", + "60" + ], + "outer_wall_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], "overhang_1_4_speed": [ "0", "0", "0", "0", + "0", + "0", "0" ], - "overhang_4_4_speed": [ + "overhang_2_4_speed": [ + "30", + "30", + "30", + "30", + "30", + "30", + "30" + ], + "overhang_3_4_speed": [ + "10", + "10", "10", "10", "10", "10", "10" ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10", + "10", + "10" + ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", + "1", + "2", "2", "2", "2" @@ -156,36 +184,28 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Direct Drive Standard", "Direct Drive High Flow", - "Direct Drive TPU High Flow" + "Direct Drive TPU High Flow", + "Direct Drive E3D High Flow" ], - "small_perimeter_speed": [ - "50%", - "50%", - "50%", - "50%", - "50%" - ], - "small_perimeter_threshold": [ - "0", - "0", - "0", - "0", - "0" - ], - "sparse_infill_acceleration": [ - "100%", - "100%", - "100%", - "100%", - "100%" + "sparse_infill_speed": [ + "200", + "200", + "200", + "200", + "200", + "200", + "200" ], "support_interface_speed": [ "80", "80", "80", "80", + "80", + "80", "80" ], "support_speed": [ @@ -193,34 +213,165 @@ "150", "150", "150", + "150", + "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "top_shell_layers": "6", + "top_surface_speed": [ + "150", + "150", + "150", + "150", + "150", + "150", + "150" ], "travel_acceleration": [ "10000", "10000", "10000", "10000", + "10000", + "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250", + "250" + ], "travel_speed": [ "500", "500", "500", "500", + "500", + "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1", + "1" + ], "travel_speed_z": [ "0", "0", "0", "0", + "0", + "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.20mm Balanced Strength @BBL H2DP.json b/resources/profiles/BBL/process/0.20mm Balanced Strength @BBL H2DP.json index 4f5abb11f2..f807f6375e 100644 --- a/resources/profiles/BBL/process/0.20mm Balanced Strength @BBL H2DP.json +++ b/resources/profiles/BBL/process/0.20mm Balanced Strength @BBL H2DP.json @@ -7,6 +7,13 @@ "instantiation": "true", "description": "High quality profile for 0.2mm layer height, prioritizing strength and print quality.", "bottom_shell_layers": "4", + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50" + ], "default_acceleration": [ "4000", "4000", @@ -14,6 +21,27 @@ "4000", "4000" ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], + "gap_infill_speed": [ + "250", + "250", + "250", + "250", + "250" + ], "initial_layer_speed": [ "50", "50", @@ -35,74 +63,12 @@ "200", "200" ], - "outer_wall_speed": [ - "60", - "60", - "60", - "60", - "60" - ], - "outer_wall_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" - ], - "overhang_2_4_speed": [ - "30", - "30", - "30", - "30", - "30" - ], - "overhang_3_4_speed": [ - "10", - "10", - "10", - "10", - "10" - ], - "prime_tower_width": "60", - "prime_tower_brim_width": "-1", - "sparse_infill_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "top_shell_layers": "6", - "top_surface_speed": [ - "150", - "150", - "150", - "150", - "150" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], - "bridge_speed": [ - "50", - "50", - "50", - "50", - "50" - ], - "enable_overhang_speed": [ - "1", - "1", - "1", - "1", - "1" - ], - "gap_infill_speed": [ - "250", - "250", - "250", - "250", - "250" + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" ], "initial_layer_acceleration": [ "500", @@ -118,13 +84,6 @@ "105", "105" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000", - "6000", - "6000", - "6000" - ], "inner_wall_acceleration": [ "0", "0", @@ -132,6 +91,20 @@ "0", "0" ], + "outer_wall_speed": [ + "60", + "60", + "60", + "60", + "60" + ], + "outer_wall_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], "overhang_1_4_speed": [ "0", "0", @@ -139,6 +112,20 @@ "0", "0" ], + "overhang_2_4_speed": [ + "30", + "30", + "30", + "30", + "30" + ], + "overhang_3_4_speed": [ + "10", + "10", + "10", + "10", + "10" + ], "overhang_4_4_speed": [ "10", "10", @@ -146,6 +133,8 @@ "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", @@ -160,6 +149,69 @@ "Direct Drive High Flow", "Direct Drive TPU High Flow" ], + "sparse_infill_speed": [ + "200", + "200", + "200", + "200", + "200" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], "small_perimeter_speed": [ "50%", "50%", @@ -181,27 +233,14 @@ "100%", "100%" ], - "support_interface_speed": [ - "80", - "80", - "80", - "80", - "80" - ], - "support_speed": [ + "top_shell_layers": "6", + "top_surface_speed": [ "150", "150", "150", "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" - ], "travel_acceleration": [ "10000", "10000", @@ -209,6 +248,13 @@ "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], "travel_speed": [ "500", "500", @@ -216,11 +262,35 @@ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" + ], "travel_speed_z": [ "0", "0", "0", "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.20mm High Quality @BBL A2L.json b/resources/profiles/BBL/process/0.20mm High Quality @BBL A2L.json index d7c3d6468d..6fbf2559c6 100644 --- a/resources/profiles/BBL/process/0.20mm High Quality @BBL A2L.json +++ b/resources/profiles/BBL/process/0.20mm High Quality @BBL A2L.json @@ -9,7 +9,6 @@ "default_acceleration": [ "4000" ], - "elefant_foot_compensation": "0.075", "enable_arc_fitting": "0", "enable_height_slowdown": [ "1" @@ -47,9 +46,6 @@ "slowdown_start_acc": [ "8000" ], - "slowdown_start_height": [ - "0" - ], "slowdown_start_speed": [ "500" ], diff --git a/resources/profiles/BBL/process/0.20mm High Quality @BBL H2C.json b/resources/profiles/BBL/process/0.20mm High Quality @BBL H2C.json index 720e1cbcc7..fa5950da15 100644 --- a/resources/profiles/BBL/process/0.20mm High Quality @BBL H2C.json +++ b/resources/profiles/BBL/process/0.20mm High Quality @BBL H2C.json @@ -11,6 +11,7 @@ "4000", "4000", "4000", + "4000", "4000" ], "enable_tower_interface_features": "1", @@ -18,48 +19,56 @@ "50", "50", "50", + "50", "50" ], "inner_wall_speed": [ "150", "150", "150", + "150", "150" ], "internal_solid_infill_speed": [ "200", "200", "200", + "200", "200" ], "outer_wall_acceleration": [ "2000", "2000", "2000", + "2000", "2000" ], "outer_wall_speed": [ "60", "60", "60", + "60", "60" ], "overhang_2_4_speed": [ "30", "30", "30", + "30", "30" ], "overhang_3_4_speed": [ "10", "10", "10", + "10", "10" ], "overhang_1_4_speed": [ "60", "60", "60", + "60", "60" ], "prime_tower_brim_width": "-1", @@ -68,6 +77,7 @@ "200", "200", "200", + "200", "200" ], "top_shell_layers": "6", @@ -75,9 +85,213 @@ "150", "150", "150", + "150", "150" ], "compatible_printers": [ "Bambu Lab H2C 0.4 nozzle" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "travel_speed": [ + "500", + "500", + "500", + "500", + "500" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0" + ], + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0" + ], + "gap_infill_speed": [ + "250", + "250", + "250", + "250", + "250" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2" + ], + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive E3D High Flow", + "Direct Drive Standard", + "Direct Drive High Flow" ] } diff --git a/resources/profiles/BBL/process/0.20mm High Quality @BBL H2S.json b/resources/profiles/BBL/process/0.20mm High Quality @BBL H2S.json index 0e6064052d..3790610f8b 100644 --- a/resources/profiles/BBL/process/0.20mm High Quality @BBL H2S.json +++ b/resources/profiles/BBL/process/0.20mm High Quality @BBL H2S.json @@ -6,163 +6,212 @@ "setting_id": "GP238", "instantiation": "true", "description": "High quality profile for 0.2mm layer height, prioritizing strength and print quality.", - "default_acceleration": [ - "4000", - "4000" - ], - "initial_layer_speed": [ + "bridge_speed": [ + "50", "50", "50" ], - "inner_wall_speed": [ - "150", - "150" + "default_acceleration": [ + "4000", + "4000", + "4000" ], - "internal_solid_infill_speed": [ - "200", - "200" + "enable_height_slowdown": [ + "0", + "0", + "0" ], - "outer_wall_acceleration": [ - "2000", - "2000" - ], - "outer_wall_speed": [ - "60", - "60" - ], - "overhang_2_4_speed": [ - "30", - "30" - ], - "overhang_3_4_speed": [ - "10", - "10" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ - "200", - "200" - ], - "top_surface_speed": [ - "150", - "150" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle" + "enable_overhang_speed": [ + "1", + "1", + "1" ], "gap_infill_speed": [ + "250", "250", "250" ], + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], "initial_layer_infill_speed": [ + "105", "105", "105" ], - "bridge_speed": [ + "initial_layer_speed": [ + "50", "50", "50" ], "initial_layer_travel_acceleration": [ + "6000", "6000", "6000" ], - "travel_acceleration": [ - "10000", - "10000" - ], - "enable_overhang_speed": [ - "1", - "1" - ], - "enable_height_slowdown": [ - "0", - "0" - ], - "slowdown_start_height": [ - "0", - "0" - ], - "slowdown_start_speed": [ - "1000", - "1000" - ], - "slowdown_start_acc": [ - "100000", - "100000" - ], - "slowdown_end_height": [ - "400", - "400" - ], - "slowdown_end_speed": [ - "1000", - "1000" - ], - "slowdown_end_acc": [ - "100000", - "100000" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], "inner_wall_acceleration": [ + "0", "0", "0" ], - "overhang_1_4_speed": [ + "inner_wall_speed": [ + "150", + "150", + "150" + ], + "internal_solid_infill_speed": [ + "200", + "200", + "200" + ], + "monotonic_travel_into_wall": "45.0", + "outer_wall_acceleration": [ + "2000", + "2000", + "2000" + ], + "outer_wall_speed": [ + "60", "60", "60" ], - "overhang_4_4_speed": [ + "overhang_1_4_speed": [ + "60", + "60", + "60" + ], + "overhang_2_4_speed": [ + "30", + "30", + "30" + ], + "overhang_3_4_speed": [ + "10", "10", "10" ], + "overhang_4_4_speed": [ + "10", + "10", + "10" + ], + "prime_tower_brim_width": "-1", + "prime_tower_flat_ironing": "1", + "prime_tower_width": "60", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000" + ], + "slowdown_start_height": [ + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000" ], "small_perimeter_speed": [ + "50%", "50%", "50%" ], "small_perimeter_threshold": [ + "0", "0", "0" ], "sparse_infill_acceleration": [ + "100%", "100%", "100%" ], + "sparse_infill_pattern": "gyroid", + "sparse_infill_speed": [ + "200", + "200", + "200" + ], "support_interface_speed": [ + "80", "80", "80" ], "support_speed": [ + "150", "150", "150" ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" + ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], + "top_surface_speed": [ + "150", + "150", + "150" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], "travel_speed": [ + "500", "500", "500" ], "travel_speed_z": [ + "0", "0", "0" ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], - "prime_tower_flat_ironing": "1", - "sparse_infill_pattern": "gyroid" + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ] } diff --git a/resources/profiles/BBL/process/0.20mm High Quality @BBL P2S.json b/resources/profiles/BBL/process/0.20mm High Quality @BBL P2S.json index d6170c2c44..2a76fcba00 100644 --- a/resources/profiles/BBL/process/0.20mm High Quality @BBL P2S.json +++ b/resources/profiles/BBL/process/0.20mm High Quality @BBL P2S.json @@ -6,164 +6,211 @@ "setting_id": "GP211", "instantiation": "true", "description": "High quality profile for 0.2mm layer height, prioritizing strength and print quality.", - "bottom_surface_pattern": "monotonicline", "bridge_speed": [ + "50", "50", "50" ], - "enable_arc_fitting": "0", "default_acceleration": [ + "4000", "4000", "4000" ], "enable_overhang_speed": [ + "1", "1", "1" ], "enable_height_slowdown": [ + "0", "0", "0" ], "gap_infill_speed": [ + "250", "250", "250" ], + "initial_layer_speed": [ + "50", + "50", + "50" + ], "inner_wall_speed": [ + "150", "150", "150" ], "internal_solid_infill_speed": [ + "200", "200", "200" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], - "initial_layer_speed": [ - "50", - "50" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "initial_layer_travel_acceleration": [ + "6000", "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0" + ], + "outer_wall_speed": [ + "60", + "60", + "60" + ], "outer_wall_acceleration": [ + "2000", "2000", "2000" ], - "outer_wall_speed": [ + "overhang_1_4_speed": [ + "60", "60", "60" ], "overhang_2_4_speed": [ + "30", "30", "30" ], "overhang_3_4_speed": [ "10", - "10" - ], - "overhang_1_4_speed": [ - "60", - "60" - ], - "overhang_4_4_speed": [ "10", "10" ], - "prime_tower_brim_width": "-1", + "overhang_4_4_speed": [ + "10", + "10", + "10" + ], "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" ], + "prime_tower_flat_ironing": "1", + "sparse_infill_pattern": "gyroid", "sparse_infill_speed": [ + "200", "200", "200" ], - "sparse_infill_pattern": "gyroid", + "support_interface_speed": [ + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150" + ], "slowdown_start_height": [ + "0", "0", "0" ], "slowdown_start_speed": [ + "1000", "1000", "1000" ], "slowdown_start_acc": [ + "100000", "100000", "100000" ], "slowdown_end_height": [ + "400", "400", "400" ], "slowdown_end_speed": [ + "1000", "1000", "1000" ], "slowdown_end_acc": [ + "100000", "100000", "100000" ], "small_perimeter_speed": [ + "50%", "50%", "50%" ], "small_perimeter_threshold": [ + "0", "0", "0" ], "sparse_infill_acceleration": [ + "100%", "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ + "150", "150", "150" ], - "top_surface_pattern": "monotonic", + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], "travel_speed": [ - "600", - "600" + "1000", + "1000", + "1000" ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], "travel_speed_z": [ + "0", "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab P2S 0.4 nozzle" ] diff --git a/resources/profiles/BBL/process/0.20mm High Quality @BBL X2D.json b/resources/profiles/BBL/process/0.20mm High Quality @BBL X2D.json index 7c2cb2180f..9ae8ec20fc 100644 --- a/resources/profiles/BBL/process/0.20mm High Quality @BBL X2D.json +++ b/resources/profiles/BBL/process/0.20mm High Quality @BBL X2D.json @@ -9,6 +9,8 @@ "default_acceleration": [ "4000", "4000", + "4000", + "1000", "1000", "1000" ], @@ -17,9 +19,13 @@ "50", "250", "250", + "250", + "250", "250" ], "initial_layer_speed": [ + "50", + "50", "50", "50", "50", @@ -28,24 +34,32 @@ "inner_wall_speed": [ "150", "150", + "150", + "100", "100", "100" ], "internal_solid_infill_speed": [ "200", "200", + "200", + "100", "100", "100" ], "outer_wall_acceleration": [ "2000", "2000", + "2000", + "1000", "1000", "1000" ], "outer_wall_speed": [ "60", "60", + "60", + "50", "50", "50" ], @@ -53,18 +67,24 @@ "60", "0", "0", + "0", + "0", "0" ], "overhang_2_4_speed": [ + "30", "30", "30", "50", + "30", "30" ], "overhang_3_4_speed": [ + "10", "10", "10", "30", + "10", "10" ], "prime_tower_brim_width": "-1", @@ -72,23 +92,39 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Bowden Standard", - "Bowden High Flow" + "Bowden High Flow", + "Bowden E3D High Flow" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2", + "2" ], "sparse_infill_pattern": "gyroid", "sparse_infill_speed": [ "200", "200", + "200", + "100", "100", "100" ], "top_surface_speed": [ "150", "150", + "150", + "100", "100", "100" ], "travel_speed": [ + "1000", + "1000", "1000", "1000", "1000", @@ -96,5 +132,205 @@ ], "compatible_printers": [ "Bambu Lab X2D 0.4 nozzle" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150", + "150" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80", + "80" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105", + "105" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500", + "500" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50", + "50" ] } diff --git a/resources/profiles/BBL/process/0.20mm Standard @BBL A1.json b/resources/profiles/BBL/process/0.20mm Standard @BBL A1.json index 03578962a4..b001cf6858 100644 --- a/resources/profiles/BBL/process/0.20mm Standard @BBL A1.json +++ b/resources/profiles/BBL/process/0.20mm Standard @BBL A1.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.20mm Standard @BBL A1", - "inherits": "fdm_process_single_0.20", - "from": "system", - "setting_id": "GP079", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "process", + "name": "0.20mm Standard @BBL A1", + "inherits": "fdm_process_single_0.20", + "from": "system", + "setting_id": "GP079", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.20mm Standard @BBL A1M.json b/resources/profiles/BBL/process/0.20mm Standard @BBL A1M.json index 737bfb8555..f30fb28c18 100644 --- a/resources/profiles/BBL/process/0.20mm Standard @BBL A1M.json +++ b/resources/profiles/BBL/process/0.20mm Standard @BBL A1M.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.20mm Standard @BBL A1M", - "inherits": "fdm_process_single_0.20", - "from": "system", - "setting_id": "GP000", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "process", + "name": "0.20mm Standard @BBL A1M", + "inherits": "fdm_process_single_0.20", + "from": "system", + "setting_id": "GP000", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.20mm Standard @BBL A2L.json b/resources/profiles/BBL/process/0.20mm Standard @BBL A2L.json index 9eee3748dc..1355dbe5c9 100644 --- a/resources/profiles/BBL/process/0.20mm Standard @BBL A2L.json +++ b/resources/profiles/BBL/process/0.20mm Standard @BBL A2L.json @@ -9,7 +9,6 @@ "default_acceleration": [ "6000" ], - "elefant_foot_compensation": "0.075", "enable_arc_fitting": "0", "enable_height_slowdown": [ "1" @@ -27,9 +26,6 @@ "slowdown_start_acc": [ "8000" ], - "slowdown_start_height": [ - "0" - ], "slowdown_start_speed": [ "500" ], diff --git a/resources/profiles/BBL/process/0.20mm Standard @BBL H2C.json b/resources/profiles/BBL/process/0.20mm Standard @BBL H2C.json index b50064fe34..560a3a6833 100644 --- a/resources/profiles/BBL/process/0.20mm Standard @BBL H2C.json +++ b/resources/profiles/BBL/process/0.20mm Standard @BBL H2C.json @@ -10,12 +10,14 @@ "8000", "8000", "8000", + "8000", "8000" ], "enable_tower_interface_features": "1", "gap_infill_speed": [ "250", "150", + "150", "250", "150" ], @@ -23,17 +25,20 @@ "50", "50", "50", + "50", "50" ], "internal_solid_infill_speed": [ "250", "600", + "600", "250", "600" ], "inner_wall_speed": [ "300", "600", + "600", "300", "600" ], @@ -41,6 +46,7 @@ "outer_wall_speed": [ "200", "500", + "500", "200", "500" ], @@ -49,6 +55,7 @@ "sparse_infill_speed": [ "350", "600", + "600", "350", "600" ], @@ -56,9 +63,234 @@ "1000", "1000", "1000", + "1000", "1000" ], "compatible_printers": [ "Bambu Lab H2C 0.4 nozzle" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30", + "30" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0" + ], + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "overhang_2_4_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "overhang_1_4_speed": [ + "0", + "0", + "0", + "0", + "0" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200", + "200" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "outer_wall_acceleration": [ + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2" + ], + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive E3D High Flow", + "Direct Drive Standard", + "Direct Drive High Flow" ] } diff --git a/resources/profiles/BBL/process/0.20mm Standard @BBL H2D.json b/resources/profiles/BBL/process/0.20mm Standard @BBL H2D.json index 967cec907a..1b3426e1a7 100644 --- a/resources/profiles/BBL/process/0.20mm Standard @BBL H2D.json +++ b/resources/profiles/BBL/process/0.20mm Standard @BBL H2D.json @@ -6,86 +6,95 @@ "setting_id": "GP124", "instantiation": "true", "description": "Standard profile for 0.4mm nozzle, prioritizing speed.", + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50" + ], "default_acceleration": [ "8000", "8000", "8000", "8000", + "8000", + "8000", "8000" ], - "initial_layer_speed": [ - "50", - "50", - "50", - "50", - "50" - ], - "internal_solid_infill_speed": [ - "250", - "600", - "250", - "600", - "600" - ], - "inner_wall_speed": [ - "300", - "600", - "300", - "600", - "600" - ], - "outer_wall_speed": [ - "200", - "500", - "200", - "500", - "500" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600", - "600" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "bridge_speed": [ - "50", - "50", - "50", - "50", - "50" - ], "enable_overhang_speed": [ "1", "1", "1", "1", + "1", + "1", "1" ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "enable_tower_interface_features": "1", "gap_infill_speed": [ "250", "250", "250", "250", + "250", + "250", "250" ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "600", + "600", + "300", + "600", + "600", + "600" + ], + "internal_solid_infill_speed": [ + "250", + "600", + "600", + "250", + "600", + "600", + "600" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000", + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500", "500", "500", + "500", + "500", "500" ], "initial_layer_infill_speed": [ @@ -93,27 +102,35 @@ "105", "105", "105", + "105", + "105", "105" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000", - "6000", - "6000", - "6000" - ], "inner_wall_acceleration": [ "0", "0", "0", "0", + "0", + "0", "0" ], + "outer_wall_speed": [ + "200", + "500", + "500", + "200", + "500", + "500", + "500" + ], "outer_wall_acceleration": [ "5000", "5000", "5000", "5000", + "5000", + "5000", "5000" ], "overhang_1_4_speed": [ @@ -121,6 +138,8 @@ "0", "0", "0", + "0", + "0", "0" ], "overhang_2_4_speed": [ @@ -128,6 +147,8 @@ "50", "50", "50", + "50", + "50", "50" ], "overhang_3_4_speed": [ @@ -135,6 +156,8 @@ "30", "30", "30", + "30", + "30", "30" ], "overhang_4_4_speed": [ @@ -142,11 +165,17 @@ "10", "10", "10", + "10", + "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", + "1", + "2", "2", "2", "2" @@ -154,36 +183,28 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Direct Drive Standard", "Direct Drive High Flow", - "Direct Drive TPU High Flow" + "Direct Drive TPU High Flow", + "Direct Drive E3D High Flow" ], - "small_perimeter_speed": [ - "50%", - "50%", - "50%", - "50%", - "50%" - ], - "small_perimeter_threshold": [ - "0", - "0", - "0", - "0", - "0" - ], - "sparse_infill_acceleration": [ - "100%", - "100%", - "100%", - "100%", - "100%" + "sparse_infill_speed": [ + "350", + "600", + "600", + "350", + "600", + "600", + "600" ], "support_interface_speed": [ "80", "80", "80", "80", + "80", + "80", "80" ], "support_speed": [ @@ -191,20 +212,98 @@ "150", "150", "150", + "150", + "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" ], "top_surface_speed": [ "200", "200", "200", "200", + "200", + "200", "200" ], "travel_acceleration": [ @@ -212,13 +311,65 @@ "10000", "10000", "10000", + "10000", + "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], "travel_speed_z": [ "0", "0", "0", "0", + "0", + "0", "0" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1.09", + "1.09" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.20mm Standard @BBL H2DP.json b/resources/profiles/BBL/process/0.20mm Standard @BBL H2DP.json index da67bb2b18..839ce5ea5a 100644 --- a/resources/profiles/BBL/process/0.20mm Standard @BBL H2DP.json +++ b/resources/profiles/BBL/process/0.20mm Standard @BBL H2DP.json @@ -6,53 +6,6 @@ "setting_id": "GP130", "instantiation": "true", "description": "Standard profile for 0.4mm nozzle, prioritizing speed.", - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000", - "8000" - ], - "initial_layer_speed": [ - "50", - "50", - "50", - "50", - "50" - ], - "internal_solid_infill_speed": [ - "250", - "300", - "250", - "300", - "300" - ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "prime_tower_width": "60", - "prime_tower_brim_width": "-1", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600", - "600" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], "bridge_speed": [ "50", "50", @@ -60,6 +13,13 @@ "50", "50" ], + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000", + "8000" + ], "enable_overhang_speed": [ "1", "1", @@ -67,6 +27,13 @@ "1", "1" ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], "gap_infill_speed": [ "250", "250", @@ -74,6 +41,34 @@ "250", "250" ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "250", + "300", + "300" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500", @@ -88,13 +83,6 @@ "105", "105" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000", - "6000", - "6000", - "6000" - ], "inner_wall_acceleration": [ "0", "0", @@ -102,12 +90,12 @@ "0", "0" ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300", - "300" + "outer_wall_speed": [ + "200", + "200", + "200", + "200", + "200" ], "outer_wall_acceleration": [ "5000", @@ -144,6 +132,8 @@ "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", @@ -158,6 +148,69 @@ "Direct Drive High Flow", "Direct Drive TPU High Flow" ], + "sparse_infill_speed": [ + "350", + "600", + "350", + "600", + "600" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], "small_perimeter_speed": [ "50%", "50%", @@ -179,27 +232,6 @@ "100%", "100%" ], - "support_interface_speed": [ - "80", - "80", - "80", - "80", - "80" - ], - "support_speed": [ - "150", - "150", - "150", - "150", - "150" - ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" - ], "top_surface_speed": [ "200", "200", @@ -214,11 +246,49 @@ "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1.09" + ], "travel_speed_z": [ "0", "0", "0", "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.20mm Standard @BBL H2S.json b/resources/profiles/BBL/process/0.20mm Standard @BBL H2S.json index d807f16450..9e04bbd7cc 100644 --- a/resources/profiles/BBL/process/0.20mm Standard @BBL H2S.json +++ b/resources/profiles/BBL/process/0.20mm Standard @BBL H2S.json @@ -7,159 +7,209 @@ "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.", "bridge_speed": [ + "50", "50", "50" ], "default_acceleration": [ + "10000", "10000", "10000" ], "enable_overhang_speed": [ + "1", "1", "1" ], "enable_height_slowdown": [ + "0", "0", "0" ], "gap_infill_speed": [ "250", + "150", "150" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ + "50", "50", "50" ], "inner_wall_speed": [ "300", + "600", "600" ], "internal_solid_infill_speed": [ "250", + "600", "600" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], + "ironing_flow": "15%", "initial_layer_travel_acceleration": [ + "6000", "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0" + ], "outer_wall_speed": [ "200", + "500", "500" ], "outer_wall_acceleration": [ + "5000", "5000", "5000" ], "overhang_1_4_speed": [ + "0", "0", "0" ], "overhang_2_4_speed": [ + "50", "50", "50" ], "overhang_3_4_speed": [ + "30", "30", "30" ], "overhang_4_4_speed": [ + "10", "10", "10" ], - "prime_tower_flat_ironing": "1", "prime_tower_width": "60", + "prime_tower_flat_ironing": "1", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" ], "sparse_infill_speed": [ "350", + "600", "600" ], - "small_perimeter_speed": [ - "50%", - "50%" - ], - "small_perimeter_threshold": [ - "0", - "0" - ], - "sparse_infill_acceleration": [ - "100%", - "100%" - ], - "support_speed": [ - "150", - "150" - ], "support_interface_speed": [ + "80", "80", "80" ], + "support_speed": [ + "150", + "150", + "150" + ], "slowdown_start_height": [ + "0", "0", "0" ], "slowdown_start_speed": [ + "1000", "1000", "1000" ], "slowdown_start_acc": [ + "100000", "100000", "100000" ], "slowdown_end_height": [ + "400", "400", "400" ], "slowdown_end_speed": [ + "1000", "1000", "1000" ], "slowdown_end_acc": [ + "100000", "100000", "100000" ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%" + ], + "top_surface_speed": [ + "200", + "200", + "200" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], "travel_speed": [ + "1000", "1000", "1000" ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], - "top_surface_speed": [ - "200", - "200" - ], "travel_speed_z": [ + "0", "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab H2S 0.4 nozzle" ] diff --git a/resources/profiles/BBL/process/0.20mm Standard @BBL P1P.json b/resources/profiles/BBL/process/0.20mm Standard @BBL P1P.json index 2d96c4fc4d..2292213fe1 100644 --- a/resources/profiles/BBL/process/0.20mm Standard @BBL P1P.json +++ b/resources/profiles/BBL/process/0.20mm Standard @BBL P1P.json @@ -26,37 +26,37 @@ "250", "250" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ "50", "50" ], "inner_wall_speed": [ "300", - "300" + "400" ], "internal_solid_infill_speed": [ "250", - "250" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" + "350" ], "initial_layer_travel_acceleration": [ "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "105", + "105" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], "outer_wall_speed": [ "200", - "200" + "350" ], "outer_wall_acceleration": [ "5000", @@ -88,7 +88,15 @@ ], "sparse_infill_speed": [ "270", - "270" + "370" + ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" ], "slowdown_start_height": [ "0", @@ -126,34 +134,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_acceleration": [ - "2000", - "2000" - ], "top_surface_speed": [ "200", - "200" + "300" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.20mm Standard @BBL P2S.json b/resources/profiles/BBL/process/0.20mm Standard @BBL P2S.json index b1696e1fa5..13c9f1e722 100644 --- a/resources/profiles/BBL/process/0.20mm Standard @BBL P2S.json +++ b/resources/profiles/BBL/process/0.20mm Standard @BBL P2S.json @@ -6,161 +6,208 @@ "setting_id": "GP155", "instantiation": "true", "description": "Standard profile for 0.4mm nozzle, prioritizing speed.", - "bottom_surface_pattern": "monotonicline", "bridge_speed": [ + "50", "50", "50" ], - "enable_arc_fitting": "0", "default_acceleration": [ + "10000", "10000", "10000" ], "enable_overhang_speed": [ + "1", "1", "1" ], "enable_height_slowdown": [ + "0", "0", "0" ], "gap_infill_speed": [ + "250", "250", "250" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ + "50", "50", "50" ], "inner_wall_speed": [ "300", + "600", "600" ], "internal_solid_infill_speed": [ "250", + "600", "600" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "initial_layer_travel_acceleration": [ "6000", - "6000" - ], - "outer_wall_acceleration": [ "6000", "6000" ], - "outer_wall_speed": [ - "200", + "initial_layer_acceleration": [ + "500", + "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105", + "105" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0" + ], + "outer_wall_speed": [ + "200", + "500", + "500" + ], + "outer_wall_acceleration": [ + "6000", + "6000", + "6000" + ], "overhang_1_4_speed": [ + "0", "0", "0" ], "overhang_2_4_speed": [ + "50", "50", "50" ], "overhang_3_4_speed": [ + "30", "30", "30" ], "overhang_4_4_speed": [ + "10", "10", "10" ], "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" ], + "prime_tower_flat_ironing": "1", "sparse_infill_speed": [ "270", + "600", "600" ], + "support_interface_speed": [ + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150" + ], "slowdown_start_height": [ + "0", "0", "0" ], "slowdown_start_speed": [ + "1000", "1000", "1000" ], "slowdown_start_acc": [ + "100000", "100000", "100000" ], "slowdown_end_height": [ + "400", "400", "400" ], "slowdown_end_speed": [ + "1000", "1000", "1000" ], "slowdown_end_acc": [ + "100000", "100000", "100000" ], "small_perimeter_speed": [ + "50%", "50%", "50%" ], "small_perimeter_threshold": [ + "0", "0", "0" ], "sparse_infill_acceleration": [ + "100%", "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_pattern": "monotonic", - "travel_speed": [ - "600", - "600" - ], - "top_surface_acceleration": [ - "2000", - "2000" - ], "top_surface_speed": [ + "200", "200", "200" ], - "travel_speed_z": [ - "0", - "0" + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" ], "travel_acceleration": [ + "10000", "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000" + ], + "travel_speed_z": [ + "0", + "0", + "0" + ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab P2S 0.4 nozzle" ] 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 c5528cf17a..76557dd18d 100644 --- a/resources/profiles/BBL/process/0.20mm Standard @BBL X1C.json +++ b/resources/profiles/BBL/process/0.20mm Standard @BBL X1C.json @@ -27,37 +27,37 @@ "250", "250" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ "50", "50" ], "inner_wall_speed": [ "300", - "300" + "400" ], "internal_solid_infill_speed": [ "250", - "250" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" + "350" ], "initial_layer_travel_acceleration": [ "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "105", + "105" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], "outer_wall_speed": [ "200", - "200" + "350" ], "outer_wall_acceleration": [ "5000", @@ -89,7 +89,15 @@ ], "sparse_infill_speed": [ "270", - "270" + "370" + ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" ], "slowdown_start_height": [ "0", @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_acceleration": [ - "2000", - "2000" - ], "top_surface_speed": [ "200", - "200" + "300" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.20mm Standard @BBL X2D.json b/resources/profiles/BBL/process/0.20mm Standard @BBL X2D.json index 797add313c..925ca46bfb 100644 --- a/resources/profiles/BBL/process/0.20mm Standard @BBL X2D.json +++ b/resources/profiles/BBL/process/0.20mm Standard @BBL X2D.json @@ -10,11 +10,15 @@ "50", "50", "50", + "50", + "200", "200" ], "default_acceleration": [ "10000", "10000", + "10000", + "1000", "1000", "1000" ], @@ -22,10 +26,14 @@ "1", "1", "1", + "1", + "0", "0" ], "enable_tower_interface_features": "1", "initial_layer_speed": [ + "50", + "50", "50", "50", "50", @@ -34,53 +42,79 @@ "inner_wall_speed": [ "300", "600", + "600", + "200", "200", "200" ], "internal_solid_infill_speed": [ "250", "600", + "600", + "200", "200", "200" ], "outer_wall_acceleration": [ "5000", "5000", + "5000", + "1000", "1000", "1000" ], "outer_wall_speed": [ "200", "500", + "500", + "50", "50", "50" ], "overhang_3_4_speed": [ "30", "20", + "20", "30", + "20", "20" ], "prime_tower_brim_width": "-1", "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Bowden Standard", - "Bowden High Flow" + "Bowden High Flow", + "Bowden E3D High Flow" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2", + "2" ], "sparse_infill_speed": [ "270", "600", + "600", + "200", "200", "200" ], "top_surface_acceleration": [ "2000", "2000", + "2000", + "1000", "1000", "1000" ], "travel_speed": [ + "1000", + "1000", "1000", "1000", "1000", @@ -88,5 +122,213 @@ ], "compatible_printers": [ "Bambu Lab X2D 0.4 nozzle" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200", + "200", + "200" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150", + "150" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80", + "80" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "overhang_2_4_speed": [ + "50", + "50", + "50", + "50", + "50", + "50" + ], + "overhang_1_4_speed": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105", + "105" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500", + "500" + ], + "gap_infill_speed": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0" ] } diff --git a/resources/profiles/BBL/process/0.20mm Steady @BBL A2L.json b/resources/profiles/BBL/process/0.20mm Steady @BBL A2L.json index cee984c300..826648ffde 100644 --- a/resources/profiles/BBL/process/0.20mm Steady @BBL A2L.json +++ b/resources/profiles/BBL/process/0.20mm Steady @BBL A2L.json @@ -14,7 +14,6 @@ "3500", "6000" ], - "elefant_foot_compensation": "0.075", "enable_arc_fitting": "0", "enable_height_slowdown": [ "1", diff --git a/resources/profiles/BBL/process/0.20mm Strength @BBL A1.json b/resources/profiles/BBL/process/0.20mm Strength @BBL A1.json index e925a545c0..4be40d2ded 100644 --- a/resources/profiles/BBL/process/0.20mm Strength @BBL A1.json +++ b/resources/profiles/BBL/process/0.20mm Strength @BBL A1.json @@ -1,26 +1,26 @@ { - "type": "process", - "name": "0.20mm Strength @BBL A1", - "inherits": "fdm_process_single_0.20", - "from": "system", - "setting_id": "GP080", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "outer_wall_speed": [ - "60" - ], - "sparse_infill_density": "25%", - "skeleton_infill_density": "25%", - "skin_infill_density": "25%", - "travel_speed": [ - "700" - ], - "wall_loops": "6", - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "process", + "name": "0.20mm Strength @BBL A1", + "inherits": "fdm_process_single_0.20", + "from": "system", + "setting_id": "GP080", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "outer_wall_speed": [ + "60" + ], + "sparse_infill_density": "25%", + "skeleton_infill_density": "25%", + "skin_infill_density": "25%", + "travel_speed": [ + "700" + ], + "wall_loops": "6", + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.20mm Strength @BBL A1M.json b/resources/profiles/BBL/process/0.20mm Strength @BBL A1M.json index 4451e8f9c5..5e9a5e1eff 100644 --- a/resources/profiles/BBL/process/0.20mm Strength @BBL A1M.json +++ b/resources/profiles/BBL/process/0.20mm Strength @BBL A1M.json @@ -1,26 +1,26 @@ { - "type": "process", - "name": "0.20mm Strength @BBL A1M", - "inherits": "fdm_process_single_0.20", - "from": "system", - "setting_id": "GP046", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0", - "outer_wall_speed": [ - "60" - ], - "sparse_infill_density": "25%", - "skeleton_infill_density": "25%", - "skin_infill_density": "25%", - "travel_speed": [ - "700" - ], - "wall_loops": "6", - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "process", + "name": "0.20mm Strength @BBL A1M", + "inherits": "fdm_process_single_0.20", + "from": "system", + "setting_id": "GP046", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0", + "outer_wall_speed": [ + "60" + ], + "sparse_infill_density": "25%", + "skeleton_infill_density": "25%", + "skin_infill_density": "25%", + "travel_speed": [ + "700" + ], + "wall_loops": "6", + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.20mm Strength @BBL P1P.json b/resources/profiles/BBL/process/0.20mm Strength @BBL P1P.json index 932890cad3..5e6612b34f 100644 --- a/resources/profiles/BBL/process/0.20mm Strength @BBL P1P.json +++ b/resources/profiles/BBL/process/0.20mm Strength @BBL P1P.json @@ -26,10 +26,6 @@ "250", "250" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ "50", "50" @@ -42,18 +38,22 @@ "250", "250" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], "outer_wall_speed": [ "60", "60" @@ -93,6 +93,14 @@ "270", "270" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -129,34 +137,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_acceleration": [ - "2000", - "2000" - ], "top_surface_speed": [ "200", "200" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.20mm Strength @BBL X1C.json b/resources/profiles/BBL/process/0.20mm Strength @BBL X1C.json index 3cb1ff5984..e9d90bf509 100644 --- a/resources/profiles/BBL/process/0.20mm Strength @BBL X1C.json +++ b/resources/profiles/BBL/process/0.20mm Strength @BBL X1C.json @@ -26,10 +26,6 @@ "250", "250" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ "50", "50" @@ -42,18 +38,22 @@ "250", "250" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], "outer_wall_speed": [ "60", "60" @@ -93,6 +93,14 @@ "270", "270" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -129,34 +137,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_acceleration": [ - "2000", - "2000" - ], "top_surface_speed": [ "200", "200" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL A2L 0.6 nozzle.json index fe0d6589ac..ec11105a26 100644 --- a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL A2L 0.6 nozzle.json @@ -9,7 +9,7 @@ "default_acceleration": [ "6000" ], - "elefant_foot_compensation": "0.075", + "elefant_foot_compensation": "0.15", "enable_arc_fitting": "0", "enable_height_slowdown": [ "1" diff --git a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL A2L 0.8 nozzle.json index d776a52d25..656ab5fe10 100644 --- a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL A2L 0.8 nozzle.json @@ -9,7 +9,7 @@ "default_acceleration": [ "6000" ], - "elefant_foot_compensation": "0.075", + "elefant_foot_compensation": "0.15", "enable_arc_fitting": "0", "enable_height_slowdown": [ "1" diff --git a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2C 0.6 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2C 0.6 nozzle.json new file mode 100644 index 0000000000..4498589015 --- /dev/null +++ b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2C 0.6 nozzle.json @@ -0,0 +1,295 @@ +{ + "type": "process", + "name": "0.24mm Balanced Quality @BBL H2C 0.6 nozzle", + "inherits": "fdm_process_dual_0.24_nozzle_0.6", + "from": "system", + "setting_id": "GP163", + "instantiation": "true", + "description": "Strength profile for 0.6mm nozzle, prioritizing strength.", + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000", + "8000" + ], + "enable_tower_interface_features": "1", + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105" + ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "250", + "250", + "250", + "250" + ], + "outer_wall_speed": [ + "200", + "200", + "200", + "200", + "200" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30", + "30" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "sparse_infill_speed": [ + "350", + "350", + "350", + "350", + "350" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200", + "200" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0" + ], + "bridge_speed": [ + "30", + "30", + "30", + "30", + "30" + ], + "overhang_2_4_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "overhang_1_4_speed": [ + "0", + "0", + "0", + "0", + "0" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0" + ], + "gap_infill_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "outer_wall_acceleration": [ + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2" + ], + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive E3D High Flow", + "Direct Drive Standard", + "Direct Drive High Flow" + ] +} diff --git a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2C 0.8 nozzle.json index 0a32a82a86..e9bfa96c5e 100644 --- a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2C 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2C 0.8 nozzle.json @@ -1,81 +1,81 @@ { - "type": "process", - "name": "0.24mm Balanced Quality @BBL H2C 0.8 nozzle", - "inherits": "fdm_process_dual_0.24_nozzle_0.8", - "from": "system", - "setting_id": "GP253", - "instantiation": "true", - "description": "High quality profile for 0.8mm nozzle, prioritizing print quality.", - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "enable_tower_interface_features": "1", - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105" - ], - "initial_layer_speed": [ - "50", - "50", - "50", - "50" - ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300" - ], - "internal_solid_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200" - ], - "overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ - "350", - "350", - "350", - "350" - ], - "top_surface_speed": [ - "200", - "200", - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.8 nozzle" - ] -} + "type": "process", + "name": "0.24mm Balanced Quality @BBL H2C 0.8 nozzle", + "inherits": "fdm_process_dual_0.24_nozzle_0.8", + "from": "system", + "setting_id": "GP253", + "instantiation": "true", + "description": "High quality profile for 0.8mm nozzle, prioritizing print quality.", + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "enable_tower_interface_features": "1", + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105" + ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "outer_wall_speed": [ + "200", + "200", + "200", + "200" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "sparse_infill_speed": [ + "350", + "350", + "350", + "350" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2D 0.8 nozzle.json index c904c653f6..a70f768b16 100644 --- a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2D 0.8 nozzle.json @@ -1,92 +1,93 @@ { - "type": "process", - "name": "0.24mm Balanced Quality @BBL H2D 0.8 nozzle", - "inherits": "fdm_process_dual_0.24_nozzle_0.8", - "from": "system", - "setting_id": "GP138", - "instantiation": "true", - "description": "High quality profile for 0.8mm nozzle, prioritizing print quality.", - "bridge_speed": [ - "50", - "50", - "50", - "50" - ], - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "gap_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105" - ], - "initial_layer_speed": [ - "50", - "50", - "50", - "50" - ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300" - ], - "internal_solid_infill_speed": [ - "250", - "300", - "250", - "300" - ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200" - ], - "overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600" - ], - "top_surface_speed": [ - "200", - "200", - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.8 nozzle" - ] -} + "type": "process", + "name": "0.24mm Balanced Quality @BBL H2D 0.8 nozzle", + "inherits": "fdm_process_dual_0.24_nozzle_0.8", + "from": "system", + "setting_id": "GP138", + "instantiation": "true", + "description": "High quality profile for 0.8mm nozzle, prioritizing print quality.", + "bridge_speed": [ + "50", + "50", + "50", + "50" + ], + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "enable_tower_interface_features": "1", + "gap_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105" + ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "250", + "300" + ], + "outer_wall_speed": [ + "200", + "200", + "200", + "200" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "sparse_infill_speed": [ + "350", + "600", + "350", + "600" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2DP 0.8 nozzle.json index 9ca80b6acc..c8800dd913 100644 --- a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2DP 0.8 nozzle.json @@ -1,92 +1,92 @@ { - "type": "process", - "name": "0.24mm Balanced Quality @BBL H2DP 0.8 nozzle", - "inherits": "fdm_process_dual_0.24_nozzle_0.8", - "from": "system", - "setting_id": "GP141", - "instantiation": "true", - "description": "High quality profile for 0.8mm nozzle, prioritizing print quality.", - "bridge_speed": [ - "50", - "50", - "50", - "50" - ], - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "gap_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_speed": [ - "50", - "50", - "50", - "50" - ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300" - ], - "internal_solid_infill_speed": [ - "250", - "300", - "250", - "300" - ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105" - ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200" - ], - "overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "prime_tower_width": "60", - "prime_tower_brim_width": "-1", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600" - ], - "top_surface_speed": [ - "200", - "200", - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.8 nozzle" - ] -} + "type": "process", + "name": "0.24mm Balanced Quality @BBL H2DP 0.8 nozzle", + "inherits": "fdm_process_dual_0.24_nozzle_0.8", + "from": "system", + "setting_id": "GP141", + "instantiation": "true", + "description": "High quality profile for 0.8mm nozzle, prioritizing print quality.", + "bridge_speed": [ + "50", + "50", + "50", + "50" + ], + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "gap_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "250", + "300" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105" + ], + "outer_wall_speed": [ + "200", + "200", + "200", + "200" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", + "sparse_infill_speed": [ + "350", + "600", + "350", + "600" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2S 0.6 nozzle.json index 373149f7ee..022974ff89 100644 --- a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2S 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2S 0.6 nozzle.json @@ -7,162 +7,211 @@ "instantiation": "true", "description": "Strength profile for 0.6mm nozzle, prioritizing strength.", "bridge_speed": [ + "30", "30", "30" ], "default_acceleration": [ + "10000", "10000", "10000" ], + "elefant_foot_compensation": "0.15", + "enable_height_slowdown": [ + "0", + "0", + "0" + ], + "enable_overhang_speed": [ + "1", + "1", + "1" + ], "gap_infill_speed": [ + "50", "50", "50" ], + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], "initial_layer_infill_speed": [ + "105", "105", "105" ], "initial_layer_speed": [ + "50", "50", "50" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0" + ], "inner_wall_speed": [ + "300", "300", "300" ], "internal_solid_infill_speed": [ + "250", "250", "250" ], - "outer_wall_speed": [ - "200", - "200" - ], - "overhang_3_4_speed": [ - "30", - "30" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ - "350", - "350" - ], - "top_surface_speed": [ - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.6 nozzle" - ], - "elefant_foot_compensation": "0.15", - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], - "travel_acceleration": [ - "10000", - "10000" - ], - "enable_overhang_speed": [ - "1", - "1" - ], - "enable_height_slowdown": [ - "0", - "0" - ], - "slowdown_start_height": [ - "0", - "0" - ], - "slowdown_start_speed": [ - "1000", - "1000" - ], - "slowdown_start_acc": [ - "100000", - "100000" - ], - "slowdown_end_height": [ - "400", - "400" - ], - "slowdown_end_speed": [ - "1000", - "1000" - ], - "slowdown_end_acc": [ - "100000", - "100000" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], + "monotonic_travel_into_wall": "45.0", "outer_wall_acceleration": [ + "5000", "5000", "5000" ], + "outer_wall_speed": [ + "200", + "200", + "200" + ], "overhang_1_4_speed": [ + "0", "0", "0" ], "overhang_2_4_speed": [ + "50", "50", "50" ], + "overhang_3_4_speed": [ + "30", + "30", + "30" + ], "overhang_4_4_speed": [ + "10", "10", "10" ], + "prime_tower_brim_width": "-1", + "prime_tower_flat_ironing": "1", + "prime_tower_width": "60", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000" + ], + "slowdown_start_height": [ + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000" ], "small_perimeter_speed": [ + "50%", "50%", "50%" ], "small_perimeter_threshold": [ + "0", "0", "0" ], "sparse_infill_acceleration": [ + "100%", "100%", "100%" ], + "sparse_infill_speed": [ + "350", + "350", + "350" + ], "support_interface_speed": [ + "80", "80", "80" ], "support_speed": [ + "150", "150", "150" ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" + ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], + "top_surface_speed": [ + "200", + "200", + "200" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000" + ], "travel_speed_z": [ + "0", "0", "0" ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], - "prime_tower_flat_ironing": "1" + "compatible_printers": [ + "Bambu Lab H2S 0.6 nozzle" + ] } diff --git a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2S 0.8 nozzle.json index f9b4a1ab8d..9ef8388102 100644 --- a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2S 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL H2S 0.8 nozzle.json @@ -14,14 +14,19 @@ "10000", "10000" ], + "elefant_foot_compensation": "0.15", + "enable_overhang_speed": [ + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0" + ], "gap_infill_speed": [ "50", "50" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ "50", "50" @@ -34,10 +39,38 @@ "250", "250" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000" + ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "105", + "105" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], "outer_wall_speed": [ "200", "200" ], + "outer_wall_acceleration": [ + "5000", + "5000" + ], + "overhang_1_4_speed": [ + "0", + "0" + ], + "overhang_2_4_speed": [ + "50", + "50" + ], "overhang_3_4_speed": [ "30", "30" @@ -46,39 +79,28 @@ "10", "10" ], - "prime_tower_brim_width": "-1", "prime_tower_width": "60", + "prime_tower_brim_width": "-1", + "prime_tower_flat_ironing": "1", + "print_extruder_id": [ + "1", + "1" + ], + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], "sparse_infill_speed": [ "350", "350" ], - "top_surface_speed": [ - "200", - "200" + "support_interface_speed": [ + "80", + "80" ], - "travel_speed": [ - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.8 nozzle" - ], - "elefant_foot_compensation": "0.15", - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], - "travel_acceleration": [ - "10000", - "10000" - ], - "enable_overhang_speed": [ - "1", - "1" - ], - "enable_height_slowdown": [ - "0", - "0" + "support_speed": [ + "150", + "150" ], "slowdown_start_height": [ "0", @@ -104,34 +126,6 @@ "100000", "100000" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], - "outer_wall_acceleration": [ - "5000", - "5000" - ], - "overhang_1_4_speed": [ - "0", - "0" - ], - "overhang_2_4_speed": [ - "50", - "50" - ], - "print_extruder_id": [ - "1", - "1" - ], - "print_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], "small_perimeter_speed": [ "50%", "50%" @@ -144,13 +138,25 @@ "100%", "100%" ], - "support_interface_speed": [ - "80", - "80" + "top_surface_speed": [ + "200", + "200" ], - "support_speed": [ - "150", - "150" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000" ], "top_surface_acceleration": [ "2000", @@ -164,5 +170,8 @@ "80%", "80%" ], - "prime_tower_flat_ironing": "1" + "monotonic_travel_into_wall": "45.0", + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ] } diff --git a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL P2S 0.6 nozzle.json index 6ec3215684..24f35fc875 100644 --- a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL P2S 0.6 nozzle.json @@ -6,163 +6,210 @@ "setting_id": "GP213", "instantiation": "true", "description": "Strength profile for 0.6mm nozzle, prioritizing strength.", - "bottom_surface_pattern": "monotonicline", "bridge_speed": [ + "30", "30", "30" ], - "enable_arc_fitting": "0", "default_acceleration": [ + "10000", "10000", "10000" ], "enable_overhang_speed": [ + "1", "1", "1" ], "enable_height_slowdown": [ + "0", "0", "0" ], "gap_infill_speed": [ + "50", "50", "50" ], + "initial_layer_speed": [ + "35", + "35", + "35" + ], "inner_wall_speed": [ + "300", "300", "300" ], "internal_solid_infill_speed": [ + "250", "250", "250" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], - "initial_layer_speed": [ - "35", - "35" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "initial_layer_travel_acceleration": [ + "6000", "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "55", + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0" + ], "outer_wall_speed": [ + "200", "200", "200" ], - "overhang_3_4_speed": [ - "15", - "15" - ], "outer_wall_acceleration": [ + "5000", "5000", "5000" ], "overhang_1_4_speed": [ + "0", "0", "0" ], "overhang_2_4_speed": [ + "50", "50", "50" ], + "overhang_3_4_speed": [ + "15", + "15", + "15" + ], "overhang_4_4_speed": [ + "10", "10", "10" ], - "prime_tower_brim_width": "-1", "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" ], + "prime_tower_flat_ironing": "1", "sparse_infill_speed": [ + "270", "270", "270" ], + "support_interface_speed": [ + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150" + ], "slowdown_start_height": [ + "0", "0", "0" ], "slowdown_start_speed": [ + "1000", "1000", "1000" ], "slowdown_start_acc": [ + "100000", "100000", "100000" ], "slowdown_end_height": [ + "400", "400", "400" ], "slowdown_end_speed": [ + "1000", "1000", "1000" ], "slowdown_end_acc": [ + "100000", "100000", "100000" ], "small_perimeter_speed": [ + "50%", "50%", "50%" ], "small_perimeter_threshold": [ + "0", "0", "0" ], "sparse_infill_acceleration": [ + "100%", "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_pattern": "monotonic", - "travel_speed": [ - "600", - "600" - ], "top_surface_speed": [ + "150", "150", "150" ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000" + ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], "travel_speed_z": [ + "0", "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab P2S 0.6 nozzle" ] diff --git a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL P2S 0.8 nozzle.json index 1a925b86c3..64c46e6414 100644 --- a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL P2S 0.8 nozzle.json @@ -6,12 +6,10 @@ "setting_id": "GP212", "instantiation": "true", "description": "High quality profile for 0.8mm nozzle, prioritizing print quality.", - "bottom_surface_pattern": "monotonicline", "bridge_speed": [ "30", "30" ], - "enable_arc_fitting": "0", "default_acceleration": [ "10000", "10000" @@ -28,6 +26,10 @@ "50", "50" ], + "initial_layer_speed": [ + "35", + "35" + ], "inner_wall_speed": [ "300", "300" @@ -36,38 +38,26 @@ "250", "250" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], - "initial_layer_speed": [ - "35", - "35" + "initial_layer_travel_acceleration": [ + "6000", + "6000" ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "55", + "55" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], "outer_wall_speed": [ "200", "200" ], - "overhang_3_4_speed": [ - "15", - "15" - ], - "overhang_4_4_speed": [ - "10", - "10" - ], "outer_wall_acceleration": [ "5000", "5000" @@ -80,8 +70,16 @@ "50", "50" ], - "prime_tower_brim_width": "-1", + "overhang_3_4_speed": [ + "15", + "15" + ], + "overhang_4_4_speed": [ + "10", + "10" + ], "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1" @@ -90,10 +88,19 @@ "Direct Drive Standard", "Direct Drive High Flow" ], + "prime_tower_flat_ironing": "1", "sparse_infill_speed": [ "270", "270" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -130,22 +137,27 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "travel_speed": [ - "600", - "600" - ], + "top_surface_pattern": "monotonicline", "top_surface_speed": [ "150", "150" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000" + ], "top_surface_acceleration": [ "2000", "2000" @@ -154,14 +166,11 @@ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab P2S 0.8 nozzle" ] diff --git a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL X2D 0.6 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL X2D 0.6 nozzle.json index 28b6e84f97..f14acdfadb 100644 --- a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL X2D 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL X2D 0.6 nozzle.json @@ -9,12 +9,16 @@ "bridge_speed": [ "30", "50", + "50", + "30", "30", "30" ], "default_acceleration": [ "10000", "8000", + "8000", + "4000", "4000", "4000" ], @@ -22,42 +26,56 @@ "gap_infill_speed": [ "50", "250", + "250", + "50", "50", "50" ], "initial_layer_infill_speed": [ "55", "105", + "105", + "55", "55", "55" ], "initial_layer_speed": [ "35", "50", + "50", + "20", "20", "20" ], "inner_wall_speed": [ "300", "300", + "300", + "150", "150", "150" ], "internal_solid_infill_speed": [ "250", "300", + "300", + "150", "150", "150" ], "outer_wall_speed": [ "200", "200", + "200", + "50", "50", "50" ], "overhang_3_4_speed": [ "15", "30", + "30", + "15", "15", "15" ], @@ -66,22 +84,38 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Bowden Standard", - "Bowden High Flow" + "Bowden High Flow", + "Bowden E3D High Flow" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2", + "2" ], "sparse_infill_speed": [ "270", "600", + "600", + "100", "100", "100" ], "top_surface_speed": [ "150", "200", + "200", + "150", "150", "150" ], "travel_speed": [ + "1000", + "1000", "1000", "1000", "1000", @@ -89,5 +123,213 @@ ], "compatible_printers": [ "Bambu Lab X2D 0.6 nozzle" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150", + "150" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80", + "80" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "overhang_2_4_speed": [ + "50", + "50", + "50", + "50", + "50", + "50" + ], + "overhang_1_4_speed": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "outer_wall_acceleration": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500", + "500" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0" ] } diff --git a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL X2D 0.8 nozzle.json index 8656248052..da2a8b86c3 100644 --- a/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL X2D 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Balanced Quality @BBL X2D 0.8 nozzle.json @@ -1,100 +1,100 @@ { - "type": "process", - "name": "0.24mm Balanced Quality @BBL X2D 0.8 nozzle", - "inherits": "fdm_process_dual_0.24_nozzle_0.8", - "from": "system", - "setting_id": "GP226", - "instantiation": "true", - "description": "High quality profile for 0.8mm nozzle, prioritizing print quality.", - "bridge_speed": [ - "30", - "50", - "30", - "30" - ], - "default_acceleration": [ - "10000", - "8000", - "4000", - "4000" - ], - "enable_tower_interface_features": "1", - "gap_infill_speed": [ - "50", - "250", - "50", - "50" - ], - "initial_layer_infill_speed": [ - "55", - "105", - "55", - "55" - ], - "initial_layer_speed": [ - "35", - "50", - "20", - "20" - ], - "inner_wall_speed": [ - "300", - "300", - "150", - "150" - ], - "internal_solid_infill_speed": [ - "250", - "300", - "150", - "150" - ], - "outer_wall_speed": [ - "200", - "200", - "50", - "50" - ], - "overhang_3_4_speed": [ - "15", - "30", - "25", - "25" - ], - "overhang_4_4_speed": [ - "10", - "10", - "5", - "5" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "print_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "sparse_infill_speed": [ - "270", - "600", - "100", - "100" - ], - "top_surface_pattern": "monotonicline", - "top_surface_speed": [ - "150", - "200", - "150", - "150" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.8 nozzle" - ] -} + "type": "process", + "name": "0.24mm Balanced Quality @BBL X2D 0.8 nozzle", + "inherits": "fdm_process_dual_0.24_nozzle_0.8", + "from": "system", + "setting_id": "GP226", + "instantiation": "true", + "description": "High quality profile for 0.8mm nozzle, prioritizing print quality.", + "bridge_speed": [ + "30", + "50", + "30", + "30" + ], + "default_acceleration": [ + "10000", + "8000", + "4000", + "4000" + ], + "enable_tower_interface_features": "1", + "gap_infill_speed": [ + "50", + "250", + "50", + "50" + ], + "initial_layer_infill_speed": [ + "55", + "105", + "55", + "55" + ], + "initial_layer_speed": [ + "35", + "50", + "20", + "20" + ], + "inner_wall_speed": [ + "300", + "300", + "150", + "150" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "150", + "150" + ], + "outer_wall_speed": [ + "200", + "200", + "50", + "50" + ], + "overhang_3_4_speed": [ + "15", + "30", + "25", + "25" + ], + "overhang_4_4_speed": [ + "10", + "10", + "5", + "5" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_speed": [ + "270", + "600", + "100", + "100" + ], + "top_surface_pattern": "monotonicline", + "top_surface_speed": [ + "150", + "200", + "150", + "150" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.24mm Balanced Strength @BBL H2C 0.6 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Strength @BBL H2C 0.6 nozzle.json index e66b7ee039..2514a1e537 100644 --- a/resources/profiles/BBL/process/0.24mm Balanced Strength @BBL H2C 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Balanced Strength @BBL H2C 0.6 nozzle.json @@ -1,87 +1,87 @@ { - "type": "process", - "name": "0.24mm Balanced Strength @BBL H2C 0.6 nozzle", - "inherits": "fdm_process_dual_0.24_nozzle_0.6", - "from": "system", - "setting_id": "GP254", - "instantiation": "true", - "description": "Strength profile for 0.6mm nozzle, prioritizing strength.", - "bridge_speed": [ - "50", - "50", - "50", - "50" - ], - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "enable_tower_interface_features": "1", - "gap_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105" - ], - "initial_layer_speed": [ - "50", - "50", - "50", - "50" - ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300" - ], - "internal_solid_infill_speed": [ - "250", - "300", - "250", - "300" - ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200" - ], - "overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600" - ], - "top_surface_speed": [ - "200", - "200", - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.6 nozzle" - ] -} + "type": "process", + "name": "0.24mm Balanced Strength @BBL H2C 0.6 nozzle", + "inherits": "fdm_process_dual_0.24_nozzle_0.6", + "from": "system", + "setting_id": "GP254", + "instantiation": "true", + "description": "Strength profile for 0.6mm nozzle, prioritizing strength.", + "bridge_speed": [ + "50", + "50", + "50", + "50" + ], + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "enable_tower_interface_features": "1", + "gap_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105" + ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "250", + "300" + ], + "outer_wall_speed": [ + "200", + "200", + "200", + "200" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "sparse_infill_speed": [ + "350", + "600", + "350", + "600" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.24mm Balanced Strength @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Strength @BBL H2D 0.6 nozzle.json index 63063d0d3c..a6939904e4 100644 --- a/resources/profiles/BBL/process/0.24mm Balanced Strength @BBL H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Balanced Strength @BBL H2D 0.6 nozzle.json @@ -11,6 +11,8 @@ "50", "50", "50", + "50", + "50", "50" ], "default_acceleration": [ @@ -18,27 +20,45 @@ "8000", "8000", "8000", + "8000", + "8000", "8000" ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "enable_tower_interface_features": "1", "gap_infill_speed": [ "250", "250", "250", "250", + "250", + "250", "250" ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105", - "105" - ], "initial_layer_speed": [ "50", "50", "50", "50", + "50", + "50", "50" ], "inner_wall_speed": [ @@ -46,88 +66,71 @@ "300", "300", "300", + "300", + "300", "300" ], "internal_solid_infill_speed": [ "250", "300", + "300", "250", "300", + "300", "300" ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "overhang_3_4_speed": [ - "30", - "30", - "30", - "30", - "30" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600", - "600" - ], - "top_surface_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.6 nozzle" - ], - "enable_overhang_speed": [ - "1", - "1", - "1", - "1", - "1" - ], - "initial_layer_acceleration": [ - "500", - "500", - "500", - "500", - "500" - ], "initial_layer_travel_acceleration": [ "6000", "6000", "6000", "6000", + "6000", + "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105", + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0", "0", "0", + "0", + "0", "0" ], + "outer_wall_speed": [ + "200", + "200", + "200", + "200", + "200", + "200", + "200" + ], "outer_wall_acceleration": [ "5000", "5000", "5000", "5000", + "5000", + "5000", "5000" ], "overhang_1_4_speed": [ @@ -135,6 +138,8 @@ "0", "0", "0", + "0", + "0", "0" ], "overhang_2_4_speed": [ @@ -142,18 +147,35 @@ "50", "50", "50", + "50", + "50", "50" ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30", + "30", + "30", + "30" + ], "overhang_4_4_speed": [ "10", "10", "10", "10", + "10", + "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", + "1", + "2", "2", "2", "2" @@ -161,36 +183,28 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Direct Drive Standard", "Direct Drive High Flow", - "Direct Drive TPU High Flow" + "Direct Drive TPU High Flow", + "Direct Drive E3D High Flow" ], - "small_perimeter_speed": [ - "50%", - "50%", - "50%", - "50%", - "50%" - ], - "small_perimeter_threshold": [ - "0", - "0", - "0", - "0", - "0" - ], - "sparse_infill_acceleration": [ - "100%", - "100%", - "100%", - "100%", - "100%" + "sparse_infill_speed": [ + "350", + "600", + "600", + "350", + "600", + "600", + "600" ], "support_interface_speed": [ "80", "80", "80", "80", + "80", + "80", "80" ], "support_speed": [ @@ -198,27 +212,164 @@ "150", "150", "150", + "150", + "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200", + "200", + "200", + "200" ], "travel_acceleration": [ "10000", "10000", "10000", "10000", + "10000", + "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1", + "1" + ], "travel_speed_z": [ "0", "0", "0", "0", + "0", + "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.24mm Balanced Strength @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/process/0.24mm Balanced Strength @BBL H2DP 0.6 nozzle.json index 0f138b0cc6..250df469d2 100644 --- a/resources/profiles/BBL/process/0.24mm Balanced Strength @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Balanced Strength @BBL H2DP 0.6 nozzle.json @@ -20,6 +20,20 @@ "8000", "8000" ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], "gap_infill_speed": [ "250", "250", @@ -48,59 +62,12 @@ "300", "300" ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105", - "105" - ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "overhang_3_4_speed": [ - "30", - "30", - "30", - "30", - "30" - ], - "prime_tower_width": "60", - "prime_tower_brim_width": "-1", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600", - "600" - ], - "top_surface_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle" - ], - "enable_overhang_speed": [ - "1", - "1", - "1", - "1", - "1" + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" ], "initial_layer_acceleration": [ "500", @@ -109,12 +76,12 @@ "500", "500" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000", - "6000", - "6000", - "6000" + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105" ], "inner_wall_acceleration": [ "0", @@ -123,6 +90,13 @@ "0", "0" ], + "outer_wall_speed": [ + "200", + "200", + "200", + "200", + "200" + ], "outer_wall_acceleration": [ "5000", "5000", @@ -144,6 +118,13 @@ "50", "50" ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30", + "30" + ], "overhang_4_4_speed": [ "10", "10", @@ -151,6 +132,8 @@ "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", @@ -165,6 +148,69 @@ "Direct Drive High Flow", "Direct Drive TPU High Flow" ], + "sparse_infill_speed": [ + "350", + "600", + "350", + "600", + "600" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], "small_perimeter_speed": [ "50%", "50%", @@ -186,26 +232,19 @@ "100%", "100%" ], - "support_interface_speed": [ - "80", - "80", - "80", - "80", - "80" + "top_surface_speed": [ + "200", + "200", + "200", + "200", + "200" ], - "support_speed": [ - "150", - "150", - "150", - "150", - "150" - ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" ], "travel_acceleration": [ "10000", @@ -214,11 +253,42 @@ "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], "travel_speed_z": [ "0", "0", "0", "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.24mm Draft @BBL A1.json b/resources/profiles/BBL/process/0.24mm Draft @BBL A1.json index 70c8df6513..637e5f031c 100644 --- a/resources/profiles/BBL/process/0.24mm Draft @BBL A1.json +++ b/resources/profiles/BBL/process/0.24mm Draft @BBL A1.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.24mm Draft @BBL A1", - "inherits": "fdm_process_single_0.24", - "from": "system", - "setting_id": "GP081", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "process", + "name": "0.24mm Draft @BBL A1", + "inherits": "fdm_process_single_0.24", + "from": "system", + "setting_id": "GP081", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.24mm Draft @BBL A1M.json b/resources/profiles/BBL/process/0.24mm Draft @BBL A1M.json index 510e60bd3a..f85bfbfd56 100644 --- a/resources/profiles/BBL/process/0.24mm Draft @BBL A1M.json +++ b/resources/profiles/BBL/process/0.24mm Draft @BBL A1M.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.24mm Draft @BBL A1M", - "inherits": "fdm_process_single_0.24", - "from": "system", - "setting_id": "GP047", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "process", + "name": "0.24mm Draft @BBL A1M", + "inherits": "fdm_process_single_0.24", + "from": "system", + "setting_id": "GP047", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.24mm Draft @BBL P1P.json b/resources/profiles/BBL/process/0.24mm Draft @BBL P1P.json index f59e06d60b..9df641f1a7 100644 --- a/resources/profiles/BBL/process/0.24mm Draft @BBL P1P.json +++ b/resources/profiles/BBL/process/0.24mm Draft @BBL P1P.json @@ -26,10 +26,6 @@ "230", "230" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ "50", "50" @@ -42,18 +38,22 @@ "230", "230" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], "outer_wall_speed": [ "200", "200" @@ -90,6 +90,14 @@ "230", "230" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -126,34 +134,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_acceleration": [ - "2000", - "2000" - ], "top_surface_speed": [ "200", "200" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.24mm Draft @BBL X1C.json b/resources/profiles/BBL/process/0.24mm Draft @BBL X1C.json index 5a32b21d55..ab68c44ca7 100644 --- a/resources/profiles/BBL/process/0.24mm Draft @BBL X1C.json +++ b/resources/profiles/BBL/process/0.24mm Draft @BBL X1C.json @@ -26,10 +26,6 @@ "230", "230" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ "50", "50" @@ -42,18 +38,22 @@ "230", "230" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], "outer_wall_speed": [ "200", "200" @@ -90,6 +90,14 @@ "230", "230" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -126,34 +134,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_acceleration": [ - "2000", - "2000" - ], "top_surface_speed": [ "200", "200" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.24mm Fine @BBL A1 0.8 nozzle.json b/resources/profiles/BBL/process/0.24mm Fine @BBL A1 0.8 nozzle.json index 52b75c5f3a..044b7b95eb 100644 --- a/resources/profiles/BBL/process/0.24mm Fine @BBL A1 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Fine @BBL A1 0.8 nozzle.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.24mm Fine @BBL A1 0.8 nozzle", - "inherits": "fdm_process_single_0.24_nozzle_0.8", - "from": "system", - "setting_id": "GP092", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "process", + "name": "0.24mm Fine @BBL A1 0.8 nozzle", + "inherits": "fdm_process_single_0.24_nozzle_0.8", + "from": "system", + "setting_id": "GP092", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.24mm Fine @BBL A1M 0.8 nozzle.json b/resources/profiles/BBL/process/0.24mm Fine @BBL A1M 0.8 nozzle.json index 617a01b57b..8581ea849e 100644 --- a/resources/profiles/BBL/process/0.24mm Fine @BBL A1M 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Fine @BBL A1M 0.8 nozzle.json @@ -1,18 +1,18 @@ { - "type": "process", - "name": "0.24mm Fine @BBL A1M 0.8 nozzle", - "inherits": "fdm_process_single_0.24_nozzle_0.8", - "from": "system", - "setting_id": "GP057", - "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.", - "default_acceleration": [ - "6000" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "process", + "name": "0.24mm Fine @BBL A1M 0.8 nozzle", + "inherits": "fdm_process_single_0.24_nozzle_0.8", + "from": "system", + "setting_id": "GP057", + "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.", + "default_acceleration": [ + "6000" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.24mm Fine @BBL P1P 0.8 nozzle.json b/resources/profiles/BBL/process/0.24mm Fine @BBL P1P 0.8 nozzle.json index dc80b360fa..468c46d138 100644 --- a/resources/profiles/BBL/process/0.24mm Fine @BBL P1P 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Fine @BBL P1P 0.8 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,13 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "25", - "25" + "initial_layer_acceleration": [ + "500", + "500" ], - "overhang_4_4_speed": [ - "5", - "5" + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -75,9 +71,13 @@ "50", "50" ], - "outer_wall_speed": [ - "120", - "120" + "overhang_3_4_speed": [ + "25", + "25" + ], + "overhang_4_4_speed": [ + "5", + "5" ], "print_extruder_id": [ "1", @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.24mm Optimal @BBL A1 0.6 nozzle.json b/resources/profiles/BBL/process/0.24mm Optimal @BBL A1 0.6 nozzle.json index 41aad2f0a4..aa437c7811 100644 --- a/resources/profiles/BBL/process/0.24mm Optimal @BBL A1 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Optimal @BBL A1 0.6 nozzle.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.24mm Optimal @BBL A1 0.6 nozzle", - "inherits": "fdm_process_single_0.24_nozzle_0.6", - "from": "system", - "setting_id": "GP089", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.6 nozzle" - ] -} + "type": "process", + "name": "0.24mm Optimal @BBL A1 0.6 nozzle", + "inherits": "fdm_process_single_0.24_nozzle_0.6", + "from": "system", + "setting_id": "GP089", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.24mm Optimal @BBL A1M 0.6 nozzle.json b/resources/profiles/BBL/process/0.24mm Optimal @BBL A1M 0.6 nozzle.json index b0c88937e6..c5503c4eab 100644 --- a/resources/profiles/BBL/process/0.24mm Optimal @BBL A1M 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Optimal @BBL A1M 0.6 nozzle.json @@ -1,18 +1,18 @@ { - "type": "process", - "name": "0.24mm Optimal @BBL A1M 0.6 nozzle", - "inherits": "fdm_process_single_0.24_nozzle_0.6", - "from": "system", - "setting_id": "GP054", - "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.", - "default_acceleration": [ - "6000" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.6 nozzle" - ] -} + "type": "process", + "name": "0.24mm Optimal @BBL A1M 0.6 nozzle", + "inherits": "fdm_process_single_0.24_nozzle_0.6", + "from": "system", + "setting_id": "GP054", + "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.", + "default_acceleration": [ + "6000" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.24mm Optimal @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/process/0.24mm Optimal @BBL P1P 0.6 nozzle.json index a8eb1b516b..9b22c38074 100644 --- a/resources/profiles/BBL/process/0.24mm Optimal @BBL P1P 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Optimal @BBL P1P 0.6 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,9 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "15", - "15" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -71,14 +71,14 @@ "50", "50" ], + "overhang_3_4_speed": [ + "15", + "15" + ], "overhang_4_4_speed": [ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.24mm Standard @BBL A2L.json b/resources/profiles/BBL/process/0.24mm Standard @BBL A2L.json index 920c0743fd..045d75a74f 100644 --- a/resources/profiles/BBL/process/0.24mm Standard @BBL A2L.json +++ b/resources/profiles/BBL/process/0.24mm Standard @BBL A2L.json @@ -9,7 +9,6 @@ "default_acceleration": [ "6000" ], - "elefant_foot_compensation": "0.075", "enable_arc_fitting": "0", "enable_height_slowdown": [ "1" @@ -27,9 +26,6 @@ "slowdown_start_acc": [ "8000" ], - "slowdown_start_height": [ - "0" - ], "slowdown_start_speed": [ "500" ], diff --git a/resources/profiles/BBL/process/0.24mm Standard @BBL H2C.json b/resources/profiles/BBL/process/0.24mm Standard @BBL H2C.json index 3f58cdbc04..b87fa9df45 100644 --- a/resources/profiles/BBL/process/0.24mm Standard @BBL H2C.json +++ b/resources/profiles/BBL/process/0.24mm Standard @BBL H2C.json @@ -9,6 +9,7 @@ "8000", "8000", "8000", + "8000", "8000" ], "enable_tower_interface_features": "1", @@ -16,11 +17,13 @@ "50", "50", "50", + "50", "50" ], "internal_solid_infill_speed": [ "250", "300", + "300", "250", "300" ], @@ -28,6 +31,7 @@ "200", "200", "200", + "200", "200" ], "prime_tower_brim_width": "-1", @@ -35,6 +39,7 @@ "sparse_infill_speed": [ "350", "600", + "600", "350", "600" ], @@ -42,9 +47,248 @@ "1000", "1000", "1000", + "1000", "1000" ], "compatible_printers": [ "Bambu Lab H2C 0.4 nozzle" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300", + "300" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30", + "30" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0" + ], + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "overhang_2_4_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "overhang_1_4_speed": [ + "0", + "0", + "0", + "0", + "0" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0" + ], + "gap_infill_speed": [ + "250", + "250", + "250", + "250", + "250" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200", + "200" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "outer_wall_acceleration": [ + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2" + ], + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive E3D High Flow", + "Direct Drive Standard", + "Direct Drive High Flow" ] } diff --git a/resources/profiles/BBL/process/0.24mm Standard @BBL H2D.json b/resources/profiles/BBL/process/0.24mm Standard @BBL H2D.json index b01b963193..d0645ccde5 100644 --- a/resources/profiles/BBL/process/0.24mm Standard @BBL H2D.json +++ b/resources/profiles/BBL/process/0.24mm Standard @BBL H2D.json @@ -5,79 +5,95 @@ "from": "system", "setting_id": "GP144", "instantiation": "true", + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50" + ], "default_acceleration": [ "8000", "8000", "8000", "8000", + "8000", + "8000", "8000" ], - "initial_layer_speed": [ - "50", - "50", - "50", - "50", - "50" - ], - "internal_solid_infill_speed": [ - "250", - "300", - "250", - "300", - "300" - ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600", - "600" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.4 nozzle" - ], - "bridge_speed": [ - "50", - "50", - "50", - "50", - "50" - ], "enable_overhang_speed": [ "1", "1", "1", "1", + "1", + "1", "1" ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "enable_tower_interface_features": "1", "gap_infill_speed": [ "250", "250", "250", "250", + "250", + "250", "250" ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "300", + "250", + "300", + "300", + "300" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000", + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500", "500", "500", + "500", + "500", "500" ], "initial_layer_infill_speed": [ @@ -85,34 +101,35 @@ "105", "105", "105", + "105", + "105", "105" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000", - "6000", - "6000", - "6000" - ], "inner_wall_acceleration": [ "0", "0", "0", "0", + "0", + "0", "0" ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300", - "300" + "outer_wall_speed": [ + "200", + "200", + "200", + "200", + "200", + "200", + "200" ], "outer_wall_acceleration": [ "5000", "5000", "5000", "5000", + "5000", + "5000", "5000" ], "overhang_1_4_speed": [ @@ -120,6 +137,8 @@ "0", "0", "0", + "0", + "0", "0" ], "overhang_2_4_speed": [ @@ -127,6 +146,8 @@ "50", "50", "50", + "50", + "50", "50" ], "overhang_3_4_speed": [ @@ -134,6 +155,8 @@ "30", "30", "30", + "30", + "30", "30" ], "overhang_4_4_speed": [ @@ -141,11 +164,17 @@ "10", "10", "10", + "10", + "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", + "1", + "2", "2", "2", "2" @@ -153,36 +182,28 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Direct Drive Standard", "Direct Drive High Flow", - "Direct Drive TPU High Flow" + "Direct Drive TPU High Flow", + "Direct Drive E3D High Flow" ], - "small_perimeter_speed": [ - "50%", - "50%", - "50%", - "50%", - "50%" - ], - "small_perimeter_threshold": [ - "0", - "0", - "0", - "0", - "0" - ], - "sparse_infill_acceleration": [ - "100%", - "100%", - "100%", - "100%", - "100%" + "sparse_infill_speed": [ + "350", + "600", + "600", + "350", + "600", + "600", + "600" ], "support_interface_speed": [ "80", "80", "80", "80", + "80", + "80", "80" ], "support_speed": [ @@ -190,20 +211,98 @@ "150", "150", "150", + "150", + "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" ], "top_surface_speed": [ "200", "200", "200", "200", + "200", + "200", "200" ], "travel_acceleration": [ @@ -211,13 +310,65 @@ "10000", "10000", "10000", + "10000", + "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1", + "1" + ], "travel_speed_z": [ "0", "0", "0", "0", + "0", + "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.4 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.24mm Standard @BBL H2DP.json b/resources/profiles/BBL/process/0.24mm Standard @BBL H2DP.json index fb06e53278..190c95ab87 100644 --- a/resources/profiles/BBL/process/0.24mm Standard @BBL H2DP.json +++ b/resources/profiles/BBL/process/0.24mm Standard @BBL H2DP.json @@ -5,53 +5,6 @@ "from": "system", "setting_id": "GP132", "instantiation": "true", - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000", - "8000" - ], - "initial_layer_speed": [ - "50", - "50", - "50", - "50", - "50" - ], - "internal_solid_infill_speed": [ - "250", - "300", - "250", - "300", - "300" - ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "prime_tower_width": "60", - "prime_tower_brim_width": "-1", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600", - "600" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle" - ], "bridge_speed": [ "50", "50", @@ -59,6 +12,13 @@ "50", "50" ], + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000", + "8000" + ], "enable_overhang_speed": [ "1", "1", @@ -66,6 +26,13 @@ "1", "1" ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], "gap_infill_speed": [ "250", "250", @@ -73,6 +40,34 @@ "250", "250" ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "250", + "300", + "300" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500", @@ -87,13 +82,6 @@ "105", "105" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000", - "6000", - "6000", - "6000" - ], "inner_wall_acceleration": [ "0", "0", @@ -101,12 +89,12 @@ "0", "0" ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300", - "300" + "outer_wall_speed": [ + "200", + "200", + "200", + "200", + "200" ], "outer_wall_acceleration": [ "5000", @@ -143,6 +131,8 @@ "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", @@ -157,6 +147,69 @@ "Direct Drive High Flow", "Direct Drive TPU High Flow" ], + "sparse_infill_speed": [ + "350", + "600", + "350", + "600", + "600" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], "small_perimeter_speed": [ "50%", "50%", @@ -178,27 +231,6 @@ "100%", "100%" ], - "support_interface_speed": [ - "80", - "80", - "80", - "80", - "80" - ], - "support_speed": [ - "150", - "150", - "150", - "150", - "150" - ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" - ], "top_surface_speed": [ "200", "200", @@ -213,11 +245,49 @@ "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" + ], "travel_speed_z": [ "0", "0", "0", "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.4 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.24mm Standard @BBL H2S.json b/resources/profiles/BBL/process/0.24mm Standard @BBL H2S.json index 11717ad604..c1907cf933 100644 --- a/resources/profiles/BBL/process/0.24mm Standard @BBL H2S.json +++ b/resources/profiles/BBL/process/0.24mm Standard @BBL H2S.json @@ -5,162 +5,211 @@ "from": "system", "setting_id": "GP241", "instantiation": "true", - "default_acceleration": [ - "10000", - "10000" - ], - "initial_layer_speed": [ + "bridge_speed": [ + "50", "50", "50" ], - "internal_solid_infill_speed": [ - "250", - "300" + "default_acceleration": [ + "10000", + "10000", + "10000" ], - "outer_wall_speed": [ - "200", - "200" + "enable_height_slowdown": [ + "0", + "0", + "0" ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ - "350", - "600" - ], - "travel_speed": [ - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.4 nozzle" + "enable_overhang_speed": [ + "1", + "1", + "1" ], "gap_infill_speed": [ + "250", "250", "250" ], - "inner_wall_speed": [ - "300", - "300" + "initial_layer_acceleration": [ + "500", + "500", + "500" ], "initial_layer_infill_speed": [ + "105", "105", "105" ], - "bridge_speed": [ + "initial_layer_speed": [ + "50", "50", "50" ], "initial_layer_travel_acceleration": [ + "6000", "6000", "6000" ], - "travel_acceleration": [ - "10000", - "10000" - ], - "enable_overhang_speed": [ - "1", - "1" - ], - "enable_height_slowdown": [ - "0", - "0" - ], - "slowdown_start_height": [ - "0", - "0" - ], - "slowdown_start_speed": [ - "1000", - "1000" - ], - "slowdown_start_acc": [ - "100000", - "100000" - ], - "slowdown_end_height": [ - "400", - "400" - ], - "slowdown_end_speed": [ - "1000", - "1000" - ], - "slowdown_end_acc": [ - "100000", - "100000" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], "inner_wall_acceleration": [ + "0", "0", "0" ], + "inner_wall_speed": [ + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "300" + ], + "monotonic_travel_into_wall": "45.0", "outer_wall_acceleration": [ + "5000", "5000", "5000" ], + "outer_wall_speed": [ + "200", + "200", + "200" + ], "overhang_1_4_speed": [ + "0", "0", "0" ], "overhang_2_4_speed": [ + "50", "50", "50" ], "overhang_3_4_speed": [ + "30", "30", "30" ], "overhang_4_4_speed": [ + "10", "10", "10" ], + "prime_tower_brim_width": "-1", + "prime_tower_flat_ironing": "1", + "prime_tower_width": "60", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000" + ], + "slowdown_start_height": [ + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000" ], "small_perimeter_speed": [ + "50%", "50%", "50%" ], "small_perimeter_threshold": [ + "0", "0", "0" ], "sparse_infill_acceleration": [ + "100%", "100%", "100%" ], + "sparse_infill_speed": [ + "350", + "600", + "600" + ], "support_interface_speed": [ + "80", "80", "80" ], "support_speed": [ + "150", "150", "150" ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" + ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], "top_surface_speed": [ + "200", "200", "200" ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000" + ], "travel_speed_z": [ + "0", "0", "0" ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], - "prime_tower_flat_ironing": "1" + "compatible_printers": [ + "Bambu Lab H2S 0.4 nozzle" + ] } diff --git a/resources/profiles/BBL/process/0.24mm Standard @BBL P2S.json b/resources/profiles/BBL/process/0.24mm Standard @BBL P2S.json index b0655b0f55..bec3147a16 100644 --- a/resources/profiles/BBL/process/0.24mm Standard @BBL P2S.json +++ b/resources/profiles/BBL/process/0.24mm Standard @BBL P2S.json @@ -5,163 +5,210 @@ "from": "system", "setting_id": "GP214", "instantiation": "true", - "bottom_surface_pattern": "monotonicline", "bridge_speed": [ + "50", "50", "50" ], - "enable_arc_fitting": "0", "default_acceleration": [ + "10000", "10000", "10000" ], "enable_overhang_speed": [ + "1", "1", "1" ], "enable_height_slowdown": [ + "0", "0", "0" ], "gap_infill_speed": [ "250", - "250" - ], - "internal_solid_infill_speed": [ "250", "250" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ + "50", "50", "50" ], "inner_wall_speed": [ + "230", "230", "230" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" + "internal_solid_infill_speed": [ + "250", + "250", + "250" ], "initial_layer_travel_acceleration": [ + "6000", "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0" + ], "outer_wall_speed": [ + "200", "200", "200" ], "outer_wall_acceleration": [ + "5000", "5000", "5000" ], "overhang_1_4_speed": [ + "0", "0", "0" ], "overhang_2_4_speed": [ + "50", "50", "50" ], "overhang_3_4_speed": [ + "30", "30", "30" ], "overhang_4_4_speed": [ + "10", "10", "10" ], - "prime_tower_brim_width": "-1", "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" ], + "prime_tower_flat_ironing": "1", "sparse_infill_speed": [ + "270", "270", "270" ], + "support_interface_speed": [ + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150" + ], "slowdown_start_height": [ + "0", "0", "0" ], "slowdown_start_speed": [ + "1000", "1000", "1000" ], "slowdown_start_acc": [ + "100000", "100000", "100000" ], "slowdown_end_height": [ + "400", "400", "400" ], "slowdown_end_speed": [ + "1000", "1000", "1000" ], "slowdown_end_acc": [ + "100000", "100000", "100000" ], "small_perimeter_speed": [ + "50%", "50%", "50%" ], "small_perimeter_threshold": [ + "0", "0", "0" ], "sparse_infill_acceleration": [ + "100%", "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_pattern": "monotonic", - "travel_speed": [ - "600", - "600" - ], - "top_surface_acceleration": [ - "2000", - "2000" - ], "top_surface_speed": [ + "200", "200", "200" ], - "travel_speed_z": [ - "0", - "0" + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" ], "travel_acceleration": [ + "10000", "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000" + ], + "travel_speed_z": [ + "0", + "0", + "0" + ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab P2S 0.4 nozzle" ] diff --git a/resources/profiles/BBL/process/0.24mm Standard @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/process/0.24mm Standard @BBL X1C 0.6 nozzle.json index 7b3f2d2293..6f3e2666a1 100644 --- a/resources/profiles/BBL/process/0.24mm Standard @BBL X1C 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Standard @BBL X1C 0.6 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,9 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "15", - "15" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -71,14 +71,14 @@ "50", "50" ], + "overhang_3_4_speed": [ + "15", + "15" + ], "overhang_4_4_speed": [ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.24mm Standard @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/process/0.24mm Standard @BBL X1C 0.8 nozzle.json index 9f3bd73c59..5a7d89eea4 100644 --- a/resources/profiles/BBL/process/0.24mm Standard @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.24mm Standard @BBL X1C 0.8 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,13 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "25", - "25" + "initial_layer_acceleration": [ + "500", + "500" ], - "overhang_4_4_speed": [ - "5", - "5" + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -75,9 +71,13 @@ "50", "50" ], - "outer_wall_speed": [ - "120", - "120" + "overhang_3_4_speed": [ + "25", + "25" + ], + "overhang_4_4_speed": [ + "5", + "5" ], "print_extruder_id": [ "1", @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.24mm Standard @BBL X2D.json b/resources/profiles/BBL/process/0.24mm Standard @BBL X2D.json index fa06724591..80f9fb0384 100644 --- a/resources/profiles/BBL/process/0.24mm Standard @BBL X2D.json +++ b/resources/profiles/BBL/process/0.24mm Standard @BBL X2D.json @@ -8,11 +8,15 @@ "default_acceleration": [ "10000", "8000", + "8000", + "1000", "1000", "1000" ], "enable_tower_interface_features": "1", "initial_layer_speed": [ + "50", + "50", "50", "50", "50", @@ -21,12 +25,16 @@ "internal_solid_infill_speed": [ "250", "300", + "300", + "100", "100", "100" ], "outer_wall_speed": [ "200", "200", + "200", + "50", "50", "50" ], @@ -35,16 +43,30 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Bowden Standard", - "Bowden High Flow" + "Bowden High Flow", + "Bowden E3D High Flow" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2", + "2" ], "sparse_infill_speed": [ "270", "600", + "600", + "100", "100", "100" ], "travel_speed": [ + "1000", + "1000", "1000", "1000", "1000", @@ -52,5 +74,261 @@ ], "compatible_printers": [ "Bambu Lab X2D 0.4 nozzle" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200", + "200", + "200" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150", + "150" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80", + "80" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30", + "30", + "30" + ], + "overhang_2_4_speed": [ + "50", + "50", + "50", + "50", + "50", + "50" + ], + "overhang_1_4_speed": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "outer_wall_acceleration": [ + "5000", + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300", + "300", + "300" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105", + "105" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500", + "500" + ], + "gap_infill_speed": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "bridge_speed": [ + "50", + "50", + "50", + "50", + "50", + "50" ] } diff --git a/resources/profiles/BBL/process/0.28mm Extra Draft @BBL A1.json b/resources/profiles/BBL/process/0.28mm Extra Draft @BBL A1.json index 48c3a62ef0..b21713ffde 100644 --- a/resources/profiles/BBL/process/0.28mm Extra Draft @BBL A1.json +++ b/resources/profiles/BBL/process/0.28mm Extra Draft @BBL A1.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.28mm Extra Draft @BBL A1", - "inherits": "fdm_process_single_0.28", - "from": "system", - "setting_id": "GP082", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.4 nozzle" - ] -} + "type": "process", + "name": "0.28mm Extra Draft @BBL A1", + "inherits": "fdm_process_single_0.28", + "from": "system", + "setting_id": "GP082", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.28mm Extra Draft @BBL A1M.json b/resources/profiles/BBL/process/0.28mm Extra Draft @BBL A1M.json index b6d2e920e5..a4d1cd337e 100644 --- a/resources/profiles/BBL/process/0.28mm Extra Draft @BBL A1M.json +++ b/resources/profiles/BBL/process/0.28mm Extra Draft @BBL A1M.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.28mm Extra Draft @BBL A1M", - "inherits": "fdm_process_single_0.28", - "from": "system", - "setting_id": "GP048", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.4 nozzle" - ] -} + "type": "process", + "name": "0.28mm Extra Draft @BBL A1M", + "inherits": "fdm_process_single_0.28", + "from": "system", + "setting_id": "GP048", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.28mm Extra Draft @BBL P1P.json b/resources/profiles/BBL/process/0.28mm Extra Draft @BBL P1P.json index 92fadb9054..ed36d640ec 100644 --- a/resources/profiles/BBL/process/0.28mm Extra Draft @BBL P1P.json +++ b/resources/profiles/BBL/process/0.28mm Extra Draft @BBL P1P.json @@ -26,10 +26,6 @@ "200", "200" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ "50", "50" @@ -42,18 +38,22 @@ "200", "200" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], "outer_wall_speed": [ "200", "200" @@ -90,6 +90,14 @@ "200", "200" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -126,34 +134,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_acceleration": [ - "2000", - "2000" - ], "top_surface_speed": [ "200", "200" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.28mm Extra Draft @BBL X1C.json b/resources/profiles/BBL/process/0.28mm Extra Draft @BBL X1C.json index 255d2a806a..c7fb145bfb 100644 --- a/resources/profiles/BBL/process/0.28mm Extra Draft @BBL X1C.json +++ b/resources/profiles/BBL/process/0.28mm Extra Draft @BBL X1C.json @@ -26,10 +26,6 @@ "200", "200" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ "50", "50" @@ -42,18 +38,22 @@ "200", "200" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000" + ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], "outer_wall_speed": [ "200", "200" @@ -90,6 +90,14 @@ "200", "200" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -126,34 +134,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_acceleration": [ - "2000", - "2000" - ], "top_surface_speed": [ "200", "200" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.30mm Standard @BBL A1 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Standard @BBL A1 0.6 nozzle.json index 7ace7d3b69..99dfef5693 100644 --- a/resources/profiles/BBL/process/0.30mm Standard @BBL A1 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.30mm Standard @BBL A1 0.6 nozzle.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.30mm Standard @BBL A1 0.6 nozzle", - "inherits": "fdm_process_single_0.30_nozzle_0.6", - "from": "system", - "setting_id": "GP096", - "instantiation": "true", - "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.6 nozzle" - ] -} + "type": "process", + "name": "0.30mm Standard @BBL A1 0.6 nozzle", + "inherits": "fdm_process_single_0.30_nozzle_0.6", + "from": "system", + "setting_id": "GP096", + "instantiation": "true", + "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.30mm Standard @BBL A1M 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Standard @BBL A1M 0.6 nozzle.json index ab1491afdd..fa570e3115 100644 --- a/resources/profiles/BBL/process/0.30mm Standard @BBL A1M 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.30mm Standard @BBL A1M 0.6 nozzle.json @@ -1,18 +1,18 @@ { - "type": "process", - "name": "0.30mm Standard @BBL A1M 0.6 nozzle", - "inherits": "fdm_process_single_0.30_nozzle_0.6", - "from": "system", - "setting_id": "GP038", - "instantiation": "true", - "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", - "default_acceleration": [ - "6000" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.6 nozzle" - ] -} + "type": "process", + "name": "0.30mm Standard @BBL A1M 0.6 nozzle", + "inherits": "fdm_process_single_0.30_nozzle_0.6", + "from": "system", + "setting_id": "GP038", + "instantiation": "true", + "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", + "default_acceleration": [ + "6000" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.30mm Standard @BBL A2L 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Standard @BBL A2L 0.6 nozzle.json index 800dad889c..63cc41d61f 100644 --- a/resources/profiles/BBL/process/0.30mm Standard @BBL A2L 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.30mm Standard @BBL A2L 0.6 nozzle.json @@ -9,7 +9,7 @@ "default_acceleration": [ "6000" ], - "elefant_foot_compensation": "0.075", + "elefant_foot_compensation": "0.15", "enable_arc_fitting": "0", "enable_height_slowdown": [ "1" diff --git a/resources/profiles/BBL/process/0.30mm Standard @BBL H2C 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Standard @BBL H2C 0.6 nozzle.json index b86a58762a..ff61238230 100644 --- a/resources/profiles/BBL/process/0.30mm Standard @BBL H2C 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.30mm Standard @BBL H2C 0.6 nozzle.json @@ -10,6 +10,7 @@ "8000", "8000", "8000", + "8000", "8000" ], "enable_tower_interface_features": "1", @@ -17,29 +18,34 @@ "105", "105", "105", + "105", "105" ], "initial_layer_speed": [ "50", "50", "50", + "50", "50" ], "inner_wall_speed": [ "300", "600", + "600", "300", "600" ], "internal_solid_infill_speed": [ "250", "600", + "600", "250", "600" ], "outer_wall_speed": [ "200", "500", + "500", "200", "500" ], @@ -47,6 +53,7 @@ "30", "30", "30", + "30", "30" ], "prime_tower_brim_width": "-1", @@ -54,6 +61,7 @@ "sparse_infill_speed": [ "350", "600", + "600", "350", "600" ], @@ -61,16 +69,228 @@ "200", "200", "200", + "200", "200" ], "travel_speed": [ "1000", "1000", "1000", + "1000", "1000" ], "top_shell_layers": "4", "compatible_printers": [ "Bambu Lab H2C 0.6 nozzle" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0" + ], + "bridge_speed": [ + "30", + "30", + "30", + "30", + "30" + ], + "overhang_2_4_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "overhang_1_4_speed": [ + "0", + "0", + "0", + "0", + "0" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0" + ], + "gap_infill_speed": [ + "50", + "50", + "50", + "50", + "50" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "outer_wall_acceleration": [ + "5000", + "5000", + "5000", + "5000", + "5000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2" + ], + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Direct Drive E3D High Flow", + "Direct Drive Standard", + "Direct Drive High Flow" ] } diff --git a/resources/profiles/BBL/process/0.30mm Standard @BBL H2D 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Standard @BBL H2D 0.6 nozzle.json index ce7e10a14d..85fec57c8b 100644 --- a/resources/profiles/BBL/process/0.30mm Standard @BBL H2D 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.30mm Standard @BBL H2D 0.6 nozzle.json @@ -11,6 +11,8 @@ "50", "50", "50", + "50", + "50", "50" ], "default_acceleration": [ @@ -18,27 +20,45 @@ "8000", "8000", "8000", + "8000", + "8000", "8000" ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "enable_tower_interface_features": "1", "gap_infill_speed": [ "250", "250", "250", "250", + "250", + "250", "250" ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105", - "105" - ], "initial_layer_speed": [ "50", "50", "50", "50", + "50", + "50", "50" ], "inner_wall_speed": [ @@ -46,88 +66,71 @@ "300", "300", "300", + "300", + "300", "300" ], "internal_solid_infill_speed": [ "250", "300", + "300", "250", "300", + "300", "300" ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "overhang_3_4_speed": [ - "30", - "30", - "30", - "30", - "30" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600", - "600" - ], - "top_surface_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.6 nozzle" - ], - "enable_overhang_speed": [ - "1", - "1", - "1", - "1", - "1" - ], - "initial_layer_acceleration": [ - "500", - "500", - "500", - "500", - "500" - ], "initial_layer_travel_acceleration": [ "6000", "6000", "6000", "6000", + "6000", + "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105", + "105", + "105" + ], "inner_wall_acceleration": [ "0", "0", "0", "0", + "0", + "0", "0" ], + "outer_wall_speed": [ + "200", + "200", + "200", + "200", + "200", + "200", + "200" + ], "outer_wall_acceleration": [ "5000", "5000", "5000", "5000", + "5000", + "5000", "5000" ], "overhang_1_4_speed": [ @@ -135,6 +138,8 @@ "0", "0", "0", + "0", + "0", "0" ], "overhang_2_4_speed": [ @@ -142,18 +147,35 @@ "50", "50", "50", + "50", + "50", "50" ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30", + "30", + "30", + "30" + ], "overhang_4_4_speed": [ "10", "10", "10", "10", + "10", + "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", + "1", + "2", "2", "2", "2" @@ -161,36 +183,28 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Direct Drive Standard", "Direct Drive High Flow", - "Direct Drive TPU High Flow" + "Direct Drive TPU High Flow", + "Direct Drive E3D High Flow" ], - "small_perimeter_speed": [ - "50%", - "50%", - "50%", - "50%", - "50%" - ], - "small_perimeter_threshold": [ - "0", - "0", - "0", - "0", - "0" - ], - "sparse_infill_acceleration": [ - "100%", - "100%", - "100%", - "100%", - "100%" + "sparse_infill_speed": [ + "350", + "600", + "600", + "350", + "600", + "600", + "600" ], "support_interface_speed": [ "80", "80", "80", "80", + "80", + "80", "80" ], "support_speed": [ @@ -198,27 +212,164 @@ "150", "150", "150", + "150", + "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0", + "0" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200", + "200", + "200", + "200" ], "travel_acceleration": [ "10000", "10000", "10000", "10000", + "10000", + "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1.09", + "1.09" + ], "travel_speed_z": [ "0", "0", "0", "0", + "0", + "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.6 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.30mm Standard @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Standard @BBL H2DP 0.6 nozzle.json index c141b81adf..3ff700eb52 100644 --- a/resources/profiles/BBL/process/0.30mm Standard @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.30mm Standard @BBL H2DP 0.6 nozzle.json @@ -20,6 +20,20 @@ "8000", "8000" ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0" + ], "gap_infill_speed": [ "250", "250", @@ -48,59 +62,12 @@ "300", "300" ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105", - "105" - ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "overhang_3_4_speed": [ - "30", - "30", - "30", - "30", - "30" - ], - "prime_tower_width": "60", - "prime_tower_brim_width": "-1", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600", - "600" - ], - "top_surface_speed": [ - "200", - "200", - "200", - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle" - ], - "enable_overhang_speed": [ - "1", - "1", - "1", - "1", - "1" + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000" ], "initial_layer_acceleration": [ "500", @@ -109,12 +76,12 @@ "500", "500" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000", - "6000", - "6000", - "6000" + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105", + "105" ], "inner_wall_acceleration": [ "0", @@ -123,6 +90,13 @@ "0", "0" ], + "outer_wall_speed": [ + "200", + "200", + "200", + "200", + "200" + ], "outer_wall_acceleration": [ "5000", "5000", @@ -144,6 +118,13 @@ "50", "50" ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30", + "30" + ], "overhang_4_4_speed": [ "10", "10", @@ -151,6 +132,8 @@ "10", "10" ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1", @@ -165,6 +148,69 @@ "Direct Drive High Flow", "Direct Drive TPU High Flow" ], + "sparse_infill_speed": [ + "350", + "600", + "350", + "600", + "600" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000" + ], "small_perimeter_speed": [ "50%", "50%", @@ -186,26 +232,12 @@ "100%", "100%" ], - "support_interface_speed": [ - "80", - "80", - "80", - "80", - "80" - ], - "support_speed": [ - "150", - "150", - "150", - "150", - "150" - ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000", - "2000" + "top_surface_speed": [ + "200", + "200", + "200", + "200", + "200" ], "travel_acceleration": [ "10000", @@ -214,11 +246,49 @@ "10000", "10000" ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1.09" + ], "travel_speed_z": [ "0", "0", "0", "0", "0" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.6 nozzle" ] } diff --git a/resources/profiles/BBL/process/0.30mm Standard @BBL H2S 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Standard @BBL H2S 0.6 nozzle.json index 1e4493c397..89319e5662 100644 --- a/resources/profiles/BBL/process/0.30mm Standard @BBL H2S 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.30mm Standard @BBL H2S 0.6 nozzle.json @@ -7,160 +7,210 @@ "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "bridge_speed": [ + "30", "30", "30" ], "default_acceleration": [ + "10000", "10000", "10000" ], "elefant_foot_compensation": "0.15", "enable_overhang_speed": [ + "1", "1", "1" ], "enable_height_slowdown": [ + "0", "0", "0" ], "gap_infill_speed": [ "50", - "50" - ], - "initial_layer_infill_speed": [ - "105", - "105" - ], - "initial_layer_speed": [ "50", "50" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" + "initial_layer_speed": [ + "50", + "50", + "50" ], "inner_wall_speed": [ "300", + "600", "600" ], "internal_solid_infill_speed": [ "250", + "600", "600" ], "initial_layer_travel_acceleration": [ + "6000", "6000", "6000" ], - "overhang_3_4_speed": [ - "30", - "30" + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0" + ], + "outer_wall_speed": [ + "200", + "500", + "500" ], "outer_wall_acceleration": [ + "5000", "5000", "5000" ], "overhang_1_4_speed": [ + "0", "0", "0" ], "overhang_2_4_speed": [ + "50", "50", "50" ], + "overhang_3_4_speed": [ + "30", + "30", + "30" + ], "overhang_4_4_speed": [ + "10", "10", "10" ], - "outer_wall_speed": [ - "120", - "500" - ], - "prime_tower_flat_ironing": "1", "prime_tower_width": "60", + "prime_tower_flat_ironing": "1", "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" ], "sparse_infill_speed": [ "350", + "600", "600" ], - "small_perimeter_speed": [ - "50%", - "50%" - ], - "small_perimeter_threshold": [ - "0", - "0" - ], - "sparse_infill_acceleration": [ - "100%", - "100%" + "support_interface_speed": [ + "80", + "80", + "80" ], "support_speed": [ + "150", "150", "150" ], "slowdown_start_height": [ + "0", "0", "0" ], "slowdown_start_speed": [ + "1000", "1000", "1000" ], "slowdown_start_acc": [ + "100000", "100000", "100000" ], "slowdown_end_height": [ + "400", "400", "400" ], "slowdown_end_speed": [ + "1000", "1000", "1000" ], "slowdown_end_acc": [ + "100000", "100000", "100000" ], - "support_interface_speed": [ - "80", - "80" + "small_perimeter_speed": [ + "50%", + "50%", + "50%" ], - "travel_speed": [ - "1000", - "1000" + "small_perimeter_threshold": [ + "0", + "0", + "0" ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%" + ], + "top_shell_layers": "4", "top_surface_speed": [ + "200", "200", "200" ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000" + ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], "travel_speed_z": [ + "0", "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab H2S 0.6 nozzle" ] diff --git a/resources/profiles/BBL/process/0.30mm Standard @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Standard @BBL P1P 0.6 nozzle.json index 66a2c3a007..91a3c1fcf7 100644 --- a/resources/profiles/BBL/process/0.30mm Standard @BBL P1P 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.30mm Standard @BBL P1P 0.6 nozzle.json @@ -25,39 +25,39 @@ ], "gap_infill_speed": [ "50", - "50" - ], - "initial_layer_infill_speed": [ - "55", - "55" + "30" ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", - "150" + "180" ], "internal_solid_infill_speed": [ "150", - "150" + "250" ], "initial_layer_travel_acceleration": [ "6000", "6000" ], - "overhang_3_4_speed": [ - "15", - "15" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "150" ], "outer_wall_acceleration": [ "5000", @@ -71,14 +71,14 @@ "50", "50" ], + "overhang_3_4_speed": [ + "15", + "15" + ], "overhang_4_4_speed": [ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -89,7 +89,15 @@ ], "sparse_infill_speed": [ "100", - "100" + "200" + ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" ], "slowdown_start_height": [ "0", @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", - "150" + "80" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.30mm Standard @BBL P2S 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Standard @BBL P2S 0.6 nozzle.json index b10573aa5e..d745625988 100644 --- a/resources/profiles/BBL/process/0.30mm Standard @BBL P2S 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.30mm Standard @BBL P2S 0.6 nozzle.json @@ -6,162 +6,209 @@ "setting_id": "GP160", "instantiation": "true", "description": "Standard profile for 0.6mm nozzle, prioritizing speed.", - "bottom_surface_pattern": "monotonicline", "bridge_speed": [ + "30", "30", "30" ], - "enable_arc_fitting": "0", "default_acceleration": [ + "10000", "10000", "10000" ], "elefant_foot_compensation": "0.15", "enable_overhang_speed": [ + "1", "1", "1" ], "enable_height_slowdown": [ + "0", "0", "0" ], "gap_infill_speed": [ + "50", "50", "50" ], + "initial_layer_speed": [ + "35", + "35", + "35" + ], "inner_wall_speed": [ "300", + "600", "600" ], "internal_solid_infill_speed": [ "250", + "600", "600" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], - "initial_layer_speed": [ - "35", - "35" - ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "initial_layer_travel_acceleration": [ + "6000", "6000", "6000" ], + "initial_layer_acceleration": [ + "500", + "500", + "500" + ], + "initial_layer_infill_speed": [ + "55", + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0" + ], "outer_wall_speed": [ "200", + "500", "500" ], - "overhang_3_4_speed": [ - "15", - "15" - ], "outer_wall_acceleration": [ + "5000", "5000", "5000" ], "overhang_1_4_speed": [ + "0", "0", "0" ], "overhang_2_4_speed": [ + "50", "50", "50" ], + "overhang_3_4_speed": [ + "15", + "15", + "15" + ], "overhang_4_4_speed": [ + "10", "10", "10" ], "print_extruder_id": [ + "1", "1", "1" ], "print_extruder_variant": [ "Direct Drive Standard", - "Direct Drive High Flow" + "Direct Drive High Flow", + "Direct Drive E3D High Flow" ], + "prime_tower_flat_ironing": "1", "sparse_infill_speed": [ "270", + "600", "600" ], + "support_interface_speed": [ + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150" + ], "slowdown_start_height": [ + "0", "0", "0" ], "slowdown_start_speed": [ + "1000", "1000", "1000" ], "slowdown_start_acc": [ + "100000", "100000", "100000" ], "slowdown_end_height": [ + "400", "400", "400" ], "slowdown_end_speed": [ + "1000", "1000", "1000" ], "slowdown_end_acc": [ + "100000", "100000", "100000" ], "small_perimeter_speed": [ + "50%", "50%", "50%" ], "small_perimeter_threshold": [ + "0", "0", "0" ], "sparse_infill_acceleration": [ + "100%", "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "top_surface_pattern": "monotonic", - "travel_speed": [ - "600", - "600" - ], "top_surface_speed": [ + "150", "150", "150" ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000", + "1000" + ], "top_surface_acceleration": [ + "2000", "2000", "2000" ], "travel_speed_z": [ + "0", "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ + "80%", "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab P2S 0.6 nozzle" ] diff --git a/resources/profiles/BBL/process/0.30mm Standard @BBL X1 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Standard @BBL X1 0.6 nozzle.json index f4f72db014..035a7fbbed 100644 --- a/resources/profiles/BBL/process/0.30mm Standard @BBL X1 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.30mm Standard @BBL X1 0.6 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,9 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "15", - "15" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -71,14 +71,14 @@ "50", "50" ], + "overhang_3_4_speed": [ + "15", + "15" + ], "overhang_4_4_speed": [ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.30mm Standard @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Standard @BBL X1C 0.6 nozzle.json index 7b04010bf2..85508a9021 100644 --- a/resources/profiles/BBL/process/0.30mm Standard @BBL X1C 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.30mm Standard @BBL X1C 0.6 nozzle.json @@ -25,39 +25,39 @@ ], "gap_infill_speed": [ "50", - "50" - ], - "initial_layer_infill_speed": [ - "55", - "55" + "30" ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", - "150" + "180" ], "internal_solid_infill_speed": [ "150", - "150" + "250" ], "initial_layer_travel_acceleration": [ "6000", "6000" ], - "overhang_3_4_speed": [ - "15", - "15" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "150" ], "outer_wall_acceleration": [ "5000", @@ -71,14 +71,14 @@ "50", "50" ], + "overhang_3_4_speed": [ + "15", + "15" + ], "overhang_4_4_speed": [ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -89,7 +89,15 @@ ], "sparse_infill_speed": [ "100", - "100" + "200" + ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" ], "slowdown_start_height": [ "0", @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", - "150" + "80" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.30mm Standard @BBL X2D 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Standard @BBL X2D 0.6 nozzle.json index 4ef62cbbdc..b2bcc119e6 100644 --- a/resources/profiles/BBL/process/0.30mm Standard @BBL X2D 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.30mm Standard @BBL X2D 0.6 nozzle.json @@ -9,6 +9,8 @@ "default_acceleration": [ "10000", "10000", + "10000", + "4000", "4000", "4000" ], @@ -16,30 +18,40 @@ "initial_layer_speed": [ "35", "35", + "35", + "20", "20", "20" ], "inner_wall_speed": [ "300", "600", + "600", + "150", "150", "150" ], "internal_solid_infill_speed": [ "250", "600", + "600", + "150", "150", "150" ], "outer_wall_acceleration": [ "5000", "5000", + "5000", + "4000", "4000", "4000" ], "outer_wall_speed": [ "200", "500", + "500", + "50", "50", "50" ], @@ -47,16 +59,30 @@ "print_extruder_variant": [ "Direct Drive Standard", "Direct Drive High Flow", + "Direct Drive E3D High Flow", "Bowden Standard", - "Bowden High Flow" + "Bowden High Flow", + "Bowden E3D High Flow" + ], + "print_extruder_id": [ + "1", + "1", + "1", + "2", + "2", + "2" ], "sparse_infill_speed": [ "270", "600", + "600", + "100", "100", "100" ], "travel_speed": [ + "1000", + "1000", "1000", "1000", "1000", @@ -64,5 +90,245 @@ ], "compatible_printers": [ "Bambu Lab X2D 0.6 nozzle" + ], + "vertical_shell_speed": [ + "80%", + "80%", + "80%", + "80%", + "80%", + "80%" + ], + "travel_speed_z": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250", + "250", + "250" + ], + "travel_acceleration": [ + "10000", + "10000", + "10000", + "10000", + "10000", + "10000" + ], + "top_surface_speed": [ + "150", + "150", + "150", + "150", + "150", + "150" + ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000", + "2000", + "2000" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "support_speed": [ + "150", + "150", + "150", + "150", + "150", + "150" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80", + "80", + "80" + ], + "sparse_infill_acceleration": [ + "100%", + "100%", + "100%", + "100%", + "100%", + "100%" + ], + "small_perimeter_threshold": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "small_perimeter_speed": [ + "50%", + "50%", + "50%", + "50%", + "50%", + "50%" + ], + "slowdown_start_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_start_height": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "slowdown_start_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "slowdown_end_speed": [ + "1000", + "1000", + "1000", + "1000", + "1000", + "1000" + ], + "slowdown_end_height": [ + "400", + "400", + "400", + "400", + "400", + "400" + ], + "slowdown_end_acc": [ + "100000", + "100000", + "100000", + "100000", + "100000", + "100000" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10", + "10", + "10" + ], + "overhang_3_4_speed": [ + "15", + "15", + "15", + "15", + "15", + "15" + ], + "overhang_2_4_speed": [ + "50", + "50", + "50", + "50", + "50", + "50" + ], + "overhang_1_4_speed": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "inner_wall_acceleration": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "initial_layer_travel_acceleration": [ + "6000", + "6000", + "6000", + "6000", + "6000", + "6000" + ], + "initial_layer_infill_speed": [ + "55", + "55", + "55", + "55", + "55", + "55" + ], + "initial_layer_acceleration": [ + "500", + "500", + "500", + "500", + "500", + "500" + ], + "gap_infill_speed": [ + "50", + "50", + "50", + "50", + "50", + "50" + ], + "enable_overhang_speed": [ + "1", + "1", + "1", + "1", + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0", + "0", + "0", + "0", + "0" + ], + "bridge_speed": [ + "30", + "30", + "30", + "30", + "30", + "30" ] } diff --git a/resources/profiles/BBL/process/0.30mm Strength @BBL A1 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Strength @BBL A1 0.6 nozzle.json index cccc2ff9f9..0c3818df5f 100644 --- a/resources/profiles/BBL/process/0.30mm Strength @BBL A1 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.30mm Strength @BBL A1 0.6 nozzle.json @@ -1,23 +1,23 @@ { - "type": "process", - "name": "0.30mm Strength @BBL A1 0.6 nozzle", - "inherits": "fdm_process_single_0.30_nozzle_0.6", - "from": "system", - "setting_id": "GP097", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "sparse_infill_density": "25%", - "skeleton_infill_density": "25%", - "skin_infill_density": "25%", - "travel_speed": [ - "700" - ], - "wall_loops": "4", - "compatible_printers": [ - "Bambu Lab A1 0.6 nozzle" - ] -} + "type": "process", + "name": "0.30mm Strength @BBL A1 0.6 nozzle", + "inherits": "fdm_process_single_0.30_nozzle_0.6", + "from": "system", + "setting_id": "GP097", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "sparse_infill_density": "25%", + "skeleton_infill_density": "25%", + "skin_infill_density": "25%", + "travel_speed": [ + "700" + ], + "wall_loops": "4", + "compatible_printers": [ + "Bambu Lab A1 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.30mm Strength @BBL A1M 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Strength @BBL A1M 0.6 nozzle.json index 111348a26c..53ca56dde6 100644 --- a/resources/profiles/BBL/process/0.30mm Strength @BBL A1M 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.30mm Strength @BBL A1M 0.6 nozzle.json @@ -1,18 +1,18 @@ { - "type": "process", - "name": "0.30mm Strength @BBL A1M 0.6 nozzle", - "inherits": "fdm_process_single_0.30_nozzle_0.6", - "from": "system", - "setting_id": "GP061", - "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.", - "default_acceleration": [ - "6000" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.6 nozzle" - ] -} + "type": "process", + "name": "0.30mm Strength @BBL A1M 0.6 nozzle", + "inherits": "fdm_process_single_0.30_nozzle_0.6", + "from": "system", + "setting_id": "GP061", + "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.", + "default_acceleration": [ + "6000" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.30mm Strength @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Strength @BBL P1P 0.6 nozzle.json index 4394c363d0..92598e6ea0 100644 --- a/resources/profiles/BBL/process/0.30mm Strength @BBL P1P 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.30mm Strength @BBL P1P 0.6 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,9 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "15", - "15" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -71,14 +71,14 @@ "50", "50" ], + "overhang_3_4_speed": [ + "15", + "15" + ], "overhang_4_4_speed": [ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -94,6 +94,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -130,34 +138,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.30mm Strength @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/process/0.30mm Strength @BBL X1C 0.6 nozzle.json index 99b2f43361..30c7a5b091 100644 --- a/resources/profiles/BBL/process/0.30mm Strength @BBL X1C 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.30mm Strength @BBL X1C 0.6 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,9 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "15", - "15" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -71,14 +71,14 @@ "50", "50" ], + "overhang_3_4_speed": [ + "15", + "15" + ], "overhang_4_4_speed": [ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -94,6 +94,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -130,34 +138,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL A2L 0.8 nozzle.json index 1e60033ace..520fb58498 100644 --- a/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL A2L 0.8 nozzle.json @@ -9,7 +9,7 @@ "default_acceleration": [ "6000" ], - "elefant_foot_compensation": "0.075", + "elefant_foot_compensation": "0.15", "enable_arc_fitting": "0", "enable_height_slowdown": [ "1" diff --git a/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL H2C 0.8 nozzle.json new file mode 100644 index 0000000000..e1ef4deb01 --- /dev/null +++ b/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL H2C 0.8 nozzle.json @@ -0,0 +1,81 @@ +{ + "type": "process", + "name": "0.32mm Balanced Quality @BBL H2C 0.8 nozzle", + "inherits": "fdm_process_dual_0.32_nozzle_0.8", + "from": "system", + "setting_id": "GP164", + "instantiation": "true", + "description": "Strength profile for 0.8mm nozzle, prioritizing strength.", + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "enable_tower_interface_features": "1", + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105" + ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "outer_wall_speed": [ + "200", + "200", + "200", + "200" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "sparse_infill_speed": [ + "350", + "350", + "350", + "350" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ] +} diff --git a/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL H2S 0.8 nozzle.json index cd60ebe8af..56ddf4cc97 100644 --- a/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL H2S 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL H2S 0.8 nozzle.json @@ -14,14 +14,19 @@ "10000", "10000" ], + "elefant_foot_compensation": "0.15", + "enable_overhang_speed": [ + "1", + "1" + ], + "enable_height_slowdown": [ + "0", + "0" + ], "gap_infill_speed": [ "50", "50" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ "50", "50" @@ -34,10 +39,38 @@ "250", "250" ], + "initial_layer_travel_acceleration": [ + "6000", + "6000" + ], + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "105", + "105" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], "outer_wall_speed": [ "200", "200" ], + "outer_wall_acceleration": [ + "5000", + "5000" + ], + "overhang_1_4_speed": [ + "0", + "0" + ], + "overhang_2_4_speed": [ + "50", + "50" + ], "overhang_3_4_speed": [ "30", "30" @@ -46,39 +79,28 @@ "10", "10" ], - "prime_tower_brim_width": "-1", "prime_tower_width": "60", + "prime_tower_brim_width": "-1", + "prime_tower_flat_ironing": "1", + "print_extruder_id": [ + "1", + "1" + ], + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow" + ], "sparse_infill_speed": [ "350", "350" ], - "top_surface_speed": [ - "200", - "200" + "support_interface_speed": [ + "80", + "80" ], - "travel_speed": [ - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2S 0.8 nozzle" - ], - "elefant_foot_compensation": "0.15", - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], - "travel_acceleration": [ - "10000", - "10000" - ], - "enable_overhang_speed": [ - "1", - "1" - ], - "enable_height_slowdown": [ - "0", - "0" + "support_speed": [ + "150", + "150" ], "slowdown_start_height": [ "0", @@ -104,34 +126,6 @@ "100000", "100000" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], - "outer_wall_acceleration": [ - "5000", - "5000" - ], - "overhang_1_4_speed": [ - "0", - "0" - ], - "overhang_2_4_speed": [ - "50", - "50" - ], - "print_extruder_id": [ - "1", - "1" - ], - "print_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow" - ], "small_perimeter_speed": [ "50%", "50%" @@ -144,13 +138,25 @@ "100%", "100%" ], - "support_interface_speed": [ - "80", - "80" + "top_surface_speed": [ + "200", + "200" ], - "support_speed": [ - "150", - "150" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000" ], "top_surface_acceleration": [ "2000", @@ -164,5 +170,8 @@ "80%", "80%" ], - "prime_tower_flat_ironing": "1" + "monotonic_travel_into_wall": "45.0", + "compatible_printers": [ + "Bambu Lab H2S 0.8 nozzle" + ] } diff --git a/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL P2S 0.8 nozzle.json index f0049b42e3..979edcca6e 100644 --- a/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL P2S 0.8 nozzle.json @@ -6,12 +6,10 @@ "setting_id": "GP215", "instantiation": "true", "description": "Strength profile for 0.8mm nozzle, prioritizing strength.", - "bottom_surface_pattern": "monotonicline", "bridge_speed": [ "30", "30" ], - "enable_arc_fitting": "0", "default_acceleration": [ "10000", "10000" @@ -28,6 +26,10 @@ "50", "50" ], + "initial_layer_speed": [ + "35", + "35" + ], "inner_wall_speed": [ "300", "300" @@ -36,38 +38,26 @@ "250", "250" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], - "initial_layer_speed": [ - "35", - "35" + "initial_layer_travel_acceleration": [ + "6000", + "6000" ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "55", + "55" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], "outer_wall_speed": [ "200", "200" ], - "overhang_3_4_speed": [ - "15", - "15" - ], - "overhang_4_4_speed": [ - "10", - "10" - ], "outer_wall_acceleration": [ "5000", "5000" @@ -80,8 +70,16 @@ "50", "50" ], - "prime_tower_brim_width": "-1", + "overhang_3_4_speed": [ + "15", + "15" + ], + "overhang_4_4_speed": [ + "10", + "10" + ], "prime_tower_width": "60", + "prime_tower_brim_width": "-1", "print_extruder_id": [ "1", "1" @@ -90,10 +88,19 @@ "Direct Drive Standard", "Direct Drive High Flow" ], + "prime_tower_flat_ironing": "1", "sparse_infill_speed": [ "270", "270" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -130,22 +137,27 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "travel_speed": [ - "600", - "600" - ], + "top_surface_pattern": "monotonicline", "top_surface_speed": [ "150", "150" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000" + ], "top_surface_acceleration": [ "2000", "2000" @@ -154,14 +166,11 @@ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab P2S 0.8 nozzle" ] diff --git a/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL X2D 0.8 nozzle.json index 5d1cf50bc4..42f062b60c 100644 --- a/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL X2D 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.32mm Balanced Quality @BBL X2D 0.8 nozzle.json @@ -1,100 +1,100 @@ { - "type": "process", - "name": "0.32mm Balanced Quality @BBL X2D 0.8 nozzle", - "inherits": "fdm_process_dual_0.32_nozzle_0.8", - "from": "system", - "setting_id": "GP230", - "instantiation": "true", - "description": "Strength profile for 0.8mm nozzle, prioritizing strength.", - "bridge_speed": [ - "30", - "50", - "30", - "30" - ], - "default_acceleration": [ - "10000", - "8000", - "4000", - "4000" - ], - "enable_tower_interface_features": "1", - "gap_infill_speed": [ - "50", - "250", - "50", - "50" - ], - "initial_layer_infill_speed": [ - "55", - "105", - "55", - "55" - ], - "initial_layer_speed": [ - "35", - "50", - "20", - "20" - ], - "inner_wall_speed": [ - "300", - "300", - "150", - "150" - ], - "internal_solid_infill_speed": [ - "250", - "300", - "150", - "150" - ], - "outer_wall_speed": [ - "200", - "200", - "50", - "50" - ], - "overhang_3_4_speed": [ - "15", - "30", - "25", - "25" - ], - "overhang_4_4_speed": [ - "10", - "10", - "5", - "5" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "print_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "sparse_infill_speed": [ - "270", - "600", - "100", - "100" - ], - "top_surface_pattern": "monotonicline", - "top_surface_speed": [ - "150", - "200", - "150", - "150" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.8 nozzle" - ] -} + "type": "process", + "name": "0.32mm Balanced Quality @BBL X2D 0.8 nozzle", + "inherits": "fdm_process_dual_0.32_nozzle_0.8", + "from": "system", + "setting_id": "GP230", + "instantiation": "true", + "description": "Strength profile for 0.8mm nozzle, prioritizing strength.", + "bridge_speed": [ + "30", + "50", + "30", + "30" + ], + "default_acceleration": [ + "10000", + "8000", + "4000", + "4000" + ], + "enable_tower_interface_features": "1", + "gap_infill_speed": [ + "50", + "250", + "50", + "50" + ], + "initial_layer_infill_speed": [ + "55", + "105", + "55", + "55" + ], + "initial_layer_speed": [ + "35", + "50", + "20", + "20" + ], + "inner_wall_speed": [ + "300", + "300", + "150", + "150" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "150", + "150" + ], + "outer_wall_speed": [ + "200", + "200", + "50", + "50" + ], + "overhang_3_4_speed": [ + "15", + "30", + "25", + "25" + ], + "overhang_4_4_speed": [ + "10", + "10", + "5", + "5" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_speed": [ + "270", + "600", + "100", + "100" + ], + "top_surface_pattern": "monotonicline", + "top_surface_speed": [ + "150", + "200", + "150", + "150" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.32mm Balanced Strength @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/process/0.32mm Balanced Strength @BBL H2C 0.8 nozzle.json index 512bd79982..4b9b3c263c 100644 --- a/resources/profiles/BBL/process/0.32mm Balanced Strength @BBL H2C 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.32mm Balanced Strength @BBL H2C 0.8 nozzle.json @@ -1,93 +1,93 @@ { - "type": "process", - "name": "0.32mm Balanced Strength @BBL H2C 0.8 nozzle", - "inherits": "fdm_process_dual_0.32_nozzle_0.8", - "from": "system", - "setting_id": "GP257", - "instantiation": "true", - "description": "Strength profile for 0.8mm nozzle, prioritizing strength.", - "bridge_speed": [ - "50", - "50", - "50", - "50" - ], - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "enable_tower_interface_features": "1", - "gap_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105" - ], - "initial_layer_speed": [ - "50", - "50", - "50", - "50" - ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300" - ], - "internal_solid_infill_speed": [ - "250", - "300", - "250", - "300" - ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200" - ], - "overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600" - ], - "top_surface_speed": [ - "200", - "200", - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2C 0.8 nozzle" - ] -} + "type": "process", + "name": "0.32mm Balanced Strength @BBL H2C 0.8 nozzle", + "inherits": "fdm_process_dual_0.32_nozzle_0.8", + "from": "system", + "setting_id": "GP257", + "instantiation": "true", + "description": "Strength profile for 0.8mm nozzle, prioritizing strength.", + "bridge_speed": [ + "50", + "50", + "50", + "50" + ], + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "enable_tower_interface_features": "1", + "gap_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105" + ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "250", + "300" + ], + "outer_wall_speed": [ + "200", + "200", + "200", + "200" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "sparse_infill_speed": [ + "350", + "600", + "350", + "600" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.32mm Balanced Strength @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/process/0.32mm Balanced Strength @BBL H2D 0.8 nozzle.json index a108887ebf..41901a7069 100644 --- a/resources/profiles/BBL/process/0.32mm Balanced Strength @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.32mm Balanced Strength @BBL H2D 0.8 nozzle.json @@ -1,92 +1,93 @@ { - "type": "process", - "name": "0.32mm Balanced Strength @BBL H2D 0.8 nozzle", - "inherits": "fdm_process_dual_0.32_nozzle_0.8", - "from": "system", - "setting_id": "GP149", - "instantiation": "true", - "description": "Strength profile for 0.8mm nozzle, prioritizing strength.", - "bridge_speed": [ - "50", - "50", - "50", - "50" - ], - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "gap_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105" - ], - "initial_layer_speed": [ - "50", - "50", - "50", - "50" - ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300" - ], - "internal_solid_infill_speed": [ - "250", - "300", - "250", - "300" - ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200" - ], - "overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600" - ], - "top_surface_speed": [ - "200", - "200", - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.8 nozzle" - ] -} + "type": "process", + "name": "0.32mm Balanced Strength @BBL H2D 0.8 nozzle", + "inherits": "fdm_process_dual_0.32_nozzle_0.8", + "from": "system", + "setting_id": "GP149", + "instantiation": "true", + "description": "Strength profile for 0.8mm nozzle, prioritizing strength.", + "bridge_speed": [ + "50", + "50", + "50", + "50" + ], + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "enable_tower_interface_features": "1", + "gap_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105" + ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "250", + "300" + ], + "outer_wall_speed": [ + "200", + "200", + "200", + "200" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "sparse_infill_speed": [ + "350", + "600", + "350", + "600" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.32mm Balanced Strength @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/process/0.32mm Balanced Strength @BBL H2DP 0.8 nozzle.json index f276560d67..af06eed31e 100644 --- a/resources/profiles/BBL/process/0.32mm Balanced Strength @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.32mm Balanced Strength @BBL H2DP 0.8 nozzle.json @@ -1,92 +1,92 @@ { - "type": "process", - "name": "0.32mm Balanced Strength @BBL H2DP 0.8 nozzle", - "inherits": "fdm_process_dual_0.32_nozzle_0.8", - "from": "system", - "setting_id": "GP145", - "instantiation": "true", - "description": "Strength profile for 0.8mm nozzle, prioritizing strength.", - "bridge_speed": [ - "50", - "50", - "50", - "50" - ], - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "gap_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_speed": [ - "50", - "50", - "50", - "50" - ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300" - ], - "internal_solid_infill_speed": [ - "250", - "300", - "250", - "300" - ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105" - ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200" - ], - "overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "prime_tower_width": "60", - "prime_tower_brim_width": "-1", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600" - ], - "top_surface_speed": [ - "200", - "200", - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.8 nozzle" - ] -} + "type": "process", + "name": "0.32mm Balanced Strength @BBL H2DP 0.8 nozzle", + "inherits": "fdm_process_dual_0.32_nozzle_0.8", + "from": "system", + "setting_id": "GP145", + "instantiation": "true", + "description": "Strength profile for 0.8mm nozzle, prioritizing strength.", + "bridge_speed": [ + "50", + "50", + "50", + "50" + ], + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "gap_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "250", + "300" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105" + ], + "outer_wall_speed": [ + "200", + "200", + "200", + "200" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", + "sparse_infill_speed": [ + "350", + "600", + "350", + "600" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.32mm Optimal @BBL A1 0.8 nozzle.json b/resources/profiles/BBL/process/0.32mm Optimal @BBL A1 0.8 nozzle.json index 06c01c966c..3e3dd51698 100644 --- a/resources/profiles/BBL/process/0.32mm Optimal @BBL A1 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.32mm Optimal @BBL A1 0.8 nozzle.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.32mm Optimal @BBL A1 0.8 nozzle", - "inherits": "fdm_process_single_0.32_nozzle_0.8", - "from": "system", - "setting_id": "GP093", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "process", + "name": "0.32mm Optimal @BBL A1 0.8 nozzle", + "inherits": "fdm_process_single_0.32_nozzle_0.8", + "from": "system", + "setting_id": "GP093", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.32mm Optimal @BBL A1M 0.8 nozzle.json b/resources/profiles/BBL/process/0.32mm Optimal @BBL A1M 0.8 nozzle.json index 7ca6b47420..883bc8c2ef 100644 --- a/resources/profiles/BBL/process/0.32mm Optimal @BBL A1M 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.32mm Optimal @BBL A1M 0.8 nozzle.json @@ -1,18 +1,18 @@ { - "type": "process", - "name": "0.32mm Optimal @BBL A1M 0.8 nozzle", - "inherits": "fdm_process_single_0.32_nozzle_0.8", - "from": "system", - "setting_id": "GP058", - "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.", - "default_acceleration": [ - "6000" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "process", + "name": "0.32mm Optimal @BBL A1M 0.8 nozzle", + "inherits": "fdm_process_single_0.32_nozzle_0.8", + "from": "system", + "setting_id": "GP058", + "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.", + "default_acceleration": [ + "6000" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.32mm Optimal @BBL P1P 0.8 nozzle.json b/resources/profiles/BBL/process/0.32mm Optimal @BBL P1P 0.8 nozzle.json index 8100421664..d3448ba1d6 100644 --- a/resources/profiles/BBL/process/0.32mm Optimal @BBL P1P 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.32mm Optimal @BBL P1P 0.8 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,13 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "25", - "25" + "initial_layer_acceleration": [ + "500", + "500" ], - "overhang_4_4_speed": [ - "5", - "5" + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -75,9 +71,13 @@ "50", "50" ], - "outer_wall_speed": [ - "120", - "120" + "overhang_3_4_speed": [ + "25", + "25" + ], + "overhang_4_4_speed": [ + "5", + "5" ], "print_extruder_id": [ "1", @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.32mm Standard @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/process/0.32mm Standard @BBL X1C 0.8 nozzle.json index 304b99974a..8f195d7dbe 100644 --- a/resources/profiles/BBL/process/0.32mm Standard @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.32mm Standard @BBL X1C 0.8 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,13 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "25", - "25" + "initial_layer_acceleration": [ + "500", + "500" ], - "overhang_4_4_speed": [ - "5", - "5" + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -75,9 +71,13 @@ "50", "50" ], - "outer_wall_speed": [ - "120", - "120" + "overhang_3_4_speed": [ + "25", + "25" + ], + "overhang_4_4_speed": [ + "5", + "5" ], "print_extruder_id": [ "1", @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.36mm Draft @BBL A1 0.6 nozzle.json b/resources/profiles/BBL/process/0.36mm Draft @BBL A1 0.6 nozzle.json index 40deac5ead..73abfd9df9 100644 --- a/resources/profiles/BBL/process/0.36mm Draft @BBL A1 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.36mm Draft @BBL A1 0.6 nozzle.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.36mm Draft @BBL A1 0.6 nozzle", - "inherits": "fdm_process_single_0.36_nozzle_0.6", - "from": "system", - "setting_id": "GP090", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.6 nozzle" - ] -} + "type": "process", + "name": "0.36mm Draft @BBL A1 0.6 nozzle", + "inherits": "fdm_process_single_0.36_nozzle_0.6", + "from": "system", + "setting_id": "GP090", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.36mm Draft @BBL A1M 0.6 nozzle.json b/resources/profiles/BBL/process/0.36mm Draft @BBL A1M 0.6 nozzle.json index 0b1a9b9cd8..3ced1815f0 100644 --- a/resources/profiles/BBL/process/0.36mm Draft @BBL A1M 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.36mm Draft @BBL A1M 0.6 nozzle.json @@ -1,18 +1,18 @@ { - "type": "process", - "name": "0.36mm Draft @BBL A1M 0.6 nozzle", - "inherits": "fdm_process_single_0.36_nozzle_0.6", - "from": "system", - "setting_id": "GP055", - "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.", - "default_acceleration": [ - "6000" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.6 nozzle" - ] -} + "type": "process", + "name": "0.36mm Draft @BBL A1M 0.6 nozzle", + "inherits": "fdm_process_single_0.36_nozzle_0.6", + "from": "system", + "setting_id": "GP055", + "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.", + "default_acceleration": [ + "6000" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.36mm Draft @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/process/0.36mm Draft @BBL P1P 0.6 nozzle.json index a36c99978a..6774911b11 100644 --- a/resources/profiles/BBL/process/0.36mm Draft @BBL P1P 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.36mm Draft @BBL P1P 0.6 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,9 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "15", - "15" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -71,14 +71,14 @@ "50", "50" ], + "overhang_3_4_speed": [ + "15", + "15" + ], "overhang_4_4_speed": [ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.36mm Standard @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/process/0.36mm Standard @BBL X1C 0.6 nozzle.json index 9103a177a7..853ec7ef95 100644 --- a/resources/profiles/BBL/process/0.36mm Standard @BBL X1C 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.36mm Standard @BBL X1C 0.6 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,9 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "15", - "15" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -71,14 +71,14 @@ "50", "50" ], + "overhang_3_4_speed": [ + "15", + "15" + ], "overhang_4_4_speed": [ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.40mm Standard @BBL A1 0.8 nozzle.json b/resources/profiles/BBL/process/0.40mm Standard @BBL A1 0.8 nozzle.json index 0030d939a1..7cfc16647b 100644 --- a/resources/profiles/BBL/process/0.40mm Standard @BBL A1 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.40mm Standard @BBL A1 0.8 nozzle.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.40mm Standard @BBL A1 0.8 nozzle", - "inherits": "fdm_process_single_0.40_nozzle_0.8", - "from": "system", - "setting_id": "GP098", - "instantiation": "true", - "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "process", + "name": "0.40mm Standard @BBL A1 0.8 nozzle", + "inherits": "fdm_process_single_0.40_nozzle_0.8", + "from": "system", + "setting_id": "GP098", + "instantiation": "true", + "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.40mm Standard @BBL A1M 0.8 nozzle.json b/resources/profiles/BBL/process/0.40mm Standard @BBL A1M 0.8 nozzle.json index 175ba969eb..7d5a5e2f8a 100644 --- a/resources/profiles/BBL/process/0.40mm Standard @BBL A1M 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.40mm Standard @BBL A1M 0.8 nozzle.json @@ -1,18 +1,18 @@ { - "type": "process", - "name": "0.40mm Standard @BBL A1M 0.8 nozzle", - "inherits": "fdm_process_single_0.40_nozzle_0.8", - "from": "system", - "setting_id": "GP037", - "instantiation": "true", - "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", - "default_acceleration": [ - "6000" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "process", + "name": "0.40mm Standard @BBL A1M 0.8 nozzle", + "inherits": "fdm_process_single_0.40_nozzle_0.8", + "from": "system", + "setting_id": "GP037", + "instantiation": "true", + "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", + "default_acceleration": [ + "6000" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.40mm Standard @BBL A2L 0.8 nozzle.json b/resources/profiles/BBL/process/0.40mm Standard @BBL A2L 0.8 nozzle.json index 74c452d588..14352053a6 100644 --- a/resources/profiles/BBL/process/0.40mm Standard @BBL A2L 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.40mm Standard @BBL A2L 0.8 nozzle.json @@ -9,7 +9,7 @@ "default_acceleration": [ "6000" ], - "elefant_foot_compensation": "0.075", + "elefant_foot_compensation": "0.15", "enable_arc_fitting": "0", "enable_height_slowdown": [ "1" diff --git a/resources/profiles/BBL/process/0.40mm Standard @BBL H2C 0.8 nozzle.json b/resources/profiles/BBL/process/0.40mm Standard @BBL H2C 0.8 nozzle.json index 535f1f1a2f..c95e58755b 100644 --- a/resources/profiles/BBL/process/0.40mm Standard @BBL H2C 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.40mm Standard @BBL H2C 0.8 nozzle.json @@ -1,82 +1,82 @@ { - "type": "process", - "name": "0.40mm Standard @BBL H2C 0.8 nozzle", - "inherits": "fdm_process_dual_0.40_nozzle_0.8", - "from": "system", - "setting_id": "GP258", - "instantiation": "true", - "description": "Standard profile for 0.8mm nozzle, prioritizing speed.", - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "enable_tower_interface_features": "1", - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105" - ], - "initial_layer_speed": [ - "50", - "50", - "50", - "50" - ], - "inner_wall_speed": [ - "300", - "600", - "300", - "600" - ], - "internal_solid_infill_speed": [ - "250", - "600", - "250", - "600" - ], - "outer_wall_speed": [ - "200", - "500", - "200", - "500" - ], - "overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600" - ], - "top_surface_speed": [ - "200", - "200", - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "top_shell_layers": "4", - "compatible_printers": [ - "Bambu Lab H2C 0.8 nozzle" - ] -} + "type": "process", + "name": "0.40mm Standard @BBL H2C 0.8 nozzle", + "inherits": "fdm_process_dual_0.40_nozzle_0.8", + "from": "system", + "setting_id": "GP258", + "instantiation": "true", + "description": "Standard profile for 0.8mm nozzle, prioritizing speed.", + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "enable_tower_interface_features": "1", + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105" + ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "600", + "300", + "600" + ], + "internal_solid_infill_speed": [ + "250", + "600", + "250", + "600" + ], + "outer_wall_speed": [ + "200", + "500", + "200", + "500" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "sparse_infill_speed": [ + "350", + "600", + "350", + "600" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "top_shell_layers": "4", + "compatible_printers": [ + "Bambu Lab H2C 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.40mm Standard @BBL H2D 0.8 nozzle.json b/resources/profiles/BBL/process/0.40mm Standard @BBL H2D 0.8 nozzle.json index 3766a598a9..13b605e998 100644 --- a/resources/profiles/BBL/process/0.40mm Standard @BBL H2D 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.40mm Standard @BBL H2D 0.8 nozzle.json @@ -1,92 +1,93 @@ { - "type": "process", - "name": "0.40mm Standard @BBL H2D 0.8 nozzle", - "inherits": "fdm_process_dual_0.40_nozzle_0.8", - "from": "system", - "setting_id": "GP126", - "instantiation": "true", - "description": "Standard profile for 0.8mm nozzle, prioritizing speed.", - "bridge_speed": [ - "50", - "50", - "50", - "50" - ], - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "gap_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105" - ], - "initial_layer_speed": [ - "50", - "50", - "50", - "50" - ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300" - ], - "internal_solid_infill_speed": [ - "250", - "300", - "250", - "300" - ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200" - ], - "overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "prime_tower_brim_width": "-1", - "prime_tower_width": "60", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600" - ], - "top_surface_speed": [ - "200", - "200", - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D 0.8 nozzle" - ] -} + "type": "process", + "name": "0.40mm Standard @BBL H2D 0.8 nozzle", + "inherits": "fdm_process_dual_0.40_nozzle_0.8", + "from": "system", + "setting_id": "GP126", + "instantiation": "true", + "description": "Standard profile for 0.8mm nozzle, prioritizing speed.", + "bridge_speed": [ + "50", + "50", + "50", + "50" + ], + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "enable_tower_interface_features": "1", + "gap_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105" + ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "250", + "300" + ], + "outer_wall_speed": [ + "200", + "200", + "200", + "200" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "prime_tower_brim_width": "-1", + "prime_tower_width": "60", + "sparse_infill_speed": [ + "350", + "600", + "350", + "600" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2D 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.40mm Standard @BBL H2DP 0.8 nozzle.json b/resources/profiles/BBL/process/0.40mm Standard @BBL H2DP 0.8 nozzle.json index 57ba9e85b0..47f003e5cf 100644 --- a/resources/profiles/BBL/process/0.40mm Standard @BBL H2DP 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.40mm Standard @BBL H2DP 0.8 nozzle.json @@ -1,92 +1,92 @@ { - "type": "process", - "name": "0.40mm Standard @BBL H2DP 0.8 nozzle", - "inherits": "fdm_process_dual_0.40_nozzle_0.8", - "from": "system", - "setting_id": "GP147", - "instantiation": "true", - "description": "Standard profile for 0.8mm nozzle, prioritizing speed.", - "bridge_speed": [ - "50", - "50", - "50", - "50" - ], - "default_acceleration": [ - "8000", - "8000", - "8000", - "8000" - ], - "gap_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_speed": [ - "50", - "50", - "50", - "50" - ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300" - ], - "internal_solid_infill_speed": [ - "250", - "300", - "250", - "300" - ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105" - ], - "outer_wall_speed": [ - "200", - "200", - "200", - "200" - ], - "overhang_3_4_speed": [ - "30", - "30", - "30", - "30" - ], - "overhang_4_4_speed": [ - "10", - "10", - "10", - "10" - ], - "prime_tower_width": "60", - "prime_tower_brim_width": "-1", - "sparse_infill_speed": [ - "350", - "600", - "350", - "600" - ], - "top_surface_speed": [ - "200", - "200", - "200", - "200" - ], - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab H2D Pro 0.8 nozzle" - ] -} + "type": "process", + "name": "0.40mm Standard @BBL H2DP 0.8 nozzle", + "inherits": "fdm_process_dual_0.40_nozzle_0.8", + "from": "system", + "setting_id": "GP147", + "instantiation": "true", + "description": "Standard profile for 0.8mm nozzle, prioritizing speed.", + "bridge_speed": [ + "50", + "50", + "50", + "50" + ], + "default_acceleration": [ + "8000", + "8000", + "8000", + "8000" + ], + "gap_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_speed": [ + "50", + "50", + "50", + "50" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "300", + "250", + "300" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105" + ], + "outer_wall_speed": [ + "200", + "200", + "200", + "200" + ], + "overhang_3_4_speed": [ + "30", + "30", + "30", + "30" + ], + "overhang_4_4_speed": [ + "10", + "10", + "10", + "10" + ], + "prime_tower_width": "60", + "prime_tower_brim_width": "-1", + "sparse_infill_speed": [ + "350", + "600", + "350", + "600" + ], + "top_surface_speed": [ + "200", + "200", + "200", + "200" + ], + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab H2D Pro 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.40mm Standard @BBL H2S 0.8 nozzle.json b/resources/profiles/BBL/process/0.40mm Standard @BBL H2S 0.8 nozzle.json index 9f8035e903..8fd37314df 100644 --- a/resources/profiles/BBL/process/0.40mm Standard @BBL H2S 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.40mm Standard @BBL H2S 0.8 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "105", - "105" - ], "initial_layer_speed": [ "50", "50" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "300", "600" @@ -55,13 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "30", - "30" + "initial_layer_acceleration": [ + "500", + "500" ], - "overhang_4_4_speed": [ - "10", - "10" + "initial_layer_infill_speed": [ + "105", + "105" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "500" ], "outer_wall_acceleration": [ "5000", @@ -75,12 +71,16 @@ "50", "50" ], - "outer_wall_speed": [ - "120", - "500" + "overhang_3_4_speed": [ + "30", + "30" + ], + "overhang_4_4_speed": [ + "10", + "10" ], - "prime_tower_flat_ironing": "1", "prime_tower_width": "60", + "prime_tower_flat_ironing": "1", "print_extruder_id": [ "1", "1" @@ -93,17 +93,9 @@ "350", "600" ], - "small_perimeter_speed": [ - "50%", - "50%" - ], - "small_perimeter_threshold": [ - "0", - "0" - ], - "sparse_infill_acceleration": [ - "100%", - "100%" + "support_interface_speed": [ + "80", + "80" ], "support_speed": [ "150", @@ -133,18 +125,39 @@ "100000", "100000" ], - "support_interface_speed": [ - "80", - "80" + "small_perimeter_speed": [ + "50%", + "50%" + ], + "small_perimeter_threshold": [ + "0", + "0" + ], + "sparse_infill_acceleration": [ + "100%", + "100%" + ], + "top_shell_layers": "4", + "top_surface_speed": [ + "200", + "200" + ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "1000", "1000" ], - "top_surface_speed": [ - "200", - "200" - ], "top_surface_acceleration": [ "2000", "2000" @@ -153,14 +166,11 @@ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab H2S 0.8 nozzle" ] diff --git a/resources/profiles/BBL/process/0.40mm Standard @BBL P1P 0.8 nozzle.json b/resources/profiles/BBL/process/0.40mm Standard @BBL P1P 0.8 nozzle.json index b6596c47d5..f7926a63c8 100644 --- a/resources/profiles/BBL/process/0.40mm Standard @BBL P1P 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.40mm Standard @BBL P1P 0.8 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,13 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "25", - "25" + "initial_layer_acceleration": [ + "500", + "500" ], - "overhang_4_4_speed": [ - "5", - "5" + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -75,9 +71,13 @@ "50", "50" ], - "outer_wall_speed": [ - "120", - "120" + "overhang_3_4_speed": [ + "25", + "25" + ], + "overhang_4_4_speed": [ + "5", + "5" ], "print_extruder_id": [ "1", @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.40mm Standard @BBL P2S 0.8 nozzle.json b/resources/profiles/BBL/process/0.40mm Standard @BBL P2S 0.8 nozzle.json index eee70ed075..d3aaa84887 100644 --- a/resources/profiles/BBL/process/0.40mm Standard @BBL P2S 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.40mm Standard @BBL P2S 0.8 nozzle.json @@ -6,12 +6,10 @@ "setting_id": "GP157", "instantiation": "true", "description": "Standard profile for 0.8mm nozzle, prioritizing speed.", - "bottom_surface_pattern": "monotonicline", "bridge_speed": [ "30", "30" ], - "enable_arc_fitting": "0", "default_acceleration": [ "10000", "10000" @@ -29,6 +27,10 @@ "50", "50" ], + "initial_layer_speed": [ + "35", + "35" + ], "inner_wall_speed": [ "300", "600" @@ -37,34 +39,22 @@ "250", "600" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], - "initial_layer_speed": [ - "35", - "35" + "initial_layer_travel_acceleration": [ + "6000", + "6000" ], "initial_layer_acceleration": [ "500", "500" ], + "initial_layer_infill_speed": [ + "55", + "55" + ], "inner_wall_acceleration": [ "0", "0" ], - "initial_layer_travel_acceleration": [ - "6000", - "6000" - ], - "overhang_3_4_speed": [ - "15", - "15" - ], - "overhang_4_4_speed": [ - "10", - "10" - ], "outer_wall_speed": [ "200", "500" @@ -81,6 +71,14 @@ "50", "50" ], + "overhang_3_4_speed": [ + "15", + "15" + ], + "overhang_4_4_speed": [ + "10", + "10" + ], "print_extruder_id": [ "1", "1" @@ -89,10 +87,19 @@ "Direct Drive Standard", "Direct Drive High Flow" ], + "prime_tower_flat_ironing": "1", "sparse_infill_speed": [ "270", "600" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -129,22 +136,27 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], - "travel_speed": [ - "600", - "600" - ], + "top_surface_pattern": "monotonicline", "top_surface_speed": [ "150", "150" ], + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" + ], + "travel_speed": [ + "1000", + "1000" + ], "top_surface_acceleration": [ "2000", "2000" @@ -153,14 +165,11 @@ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "compatible_printers": [ "Bambu Lab P2S 0.8 nozzle" ] diff --git a/resources/profiles/BBL/process/0.40mm Standard @BBL X1 0.8 nozzle.json b/resources/profiles/BBL/process/0.40mm Standard @BBL X1 0.8 nozzle.json index dabf9e5308..3fe093f4f7 100644 --- a/resources/profiles/BBL/process/0.40mm Standard @BBL X1 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.40mm Standard @BBL X1 0.8 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,13 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "25", - "25" + "initial_layer_acceleration": [ + "500", + "500" ], - "overhang_4_4_speed": [ - "5", - "5" + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -75,9 +71,13 @@ "50", "50" ], - "outer_wall_speed": [ - "120", - "120" + "overhang_3_4_speed": [ + "25", + "25" + ], + "overhang_4_4_speed": [ + "5", + "5" ], "print_extruder_id": [ "1", @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.40mm Standard @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/process/0.40mm Standard @BBL X1C 0.8 nozzle.json index f15e9e7a91..a032a0ce4d 100644 --- a/resources/profiles/BBL/process/0.40mm Standard @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.40mm Standard @BBL X1C 0.8 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,13 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "25", - "25" + "initial_layer_acceleration": [ + "500", + "500" ], - "overhang_4_4_speed": [ - "5", - "5" + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -75,9 +71,13 @@ "50", "50" ], - "outer_wall_speed": [ - "120", - "120" + "overhang_3_4_speed": [ + "25", + "25" + ], + "overhang_4_4_speed": [ + "5", + "5" ], "print_extruder_id": [ "1", @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.40mm Standard @BBL X2D 0.8 nozzle.json b/resources/profiles/BBL/process/0.40mm Standard @BBL X2D 0.8 nozzle.json index 43b4034653..e40e7677f1 100644 --- a/resources/profiles/BBL/process/0.40mm Standard @BBL X2D 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.40mm Standard @BBL X2D 0.8 nozzle.json @@ -1,81 +1,81 @@ { - "type": "process", - "name": "0.40mm Standard @BBL X2D 0.8 nozzle", - "inherits": "fdm_process_dual_0.40_nozzle_0.8", - "from": "system", - "setting_id": "GP150", - "instantiation": "true", - "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", - "default_acceleration": [ - "10000", - "10000", - "4000", - "4000" - ], - "enable_tower_interface_features": "1", - "initial_layer_speed": [ - "35", - "35", - "20", - "20" - ], - "inner_wall_speed": [ - "300", - "600", - "150", - "150" - ], - "internal_solid_infill_speed": [ - "250", - "600", - "150", - "150" - ], - "outer_wall_acceleration": [ - "5000", - "5000", - "4000", - "4000" - ], - "outer_wall_speed": [ - "200", - "500", - "50", - "50" - ], - "overhang_3_4_speed": [ - "15", - "25", - "25", - "25" - ], - "overhang_4_4_speed": [ - "10", - "5", - "5", - "5" - ], - "prime_tower_brim_width": "-1", - "print_extruder_variant": [ - "Direct Drive Standard", - "Direct Drive High Flow", - "Bowden Standard", - "Bowden High Flow" - ], - "sparse_infill_speed": [ - "270", - "600", - "100", - "100" - ], - "top_surface_pattern": "monotonicline", - "travel_speed": [ - "1000", - "1000", - "1000", - "1000" - ], - "compatible_printers": [ - "Bambu Lab X2D 0.8 nozzle" - ] -} + "type": "process", + "name": "0.40mm Standard @BBL X2D 0.8 nozzle", + "inherits": "fdm_process_dual_0.40_nozzle_0.8", + "from": "system", + "setting_id": "GP150", + "instantiation": "true", + "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", + "default_acceleration": [ + "10000", + "10000", + "4000", + "4000" + ], + "enable_tower_interface_features": "1", + "initial_layer_speed": [ + "35", + "35", + "20", + "20" + ], + "inner_wall_speed": [ + "300", + "600", + "150", + "150" + ], + "internal_solid_infill_speed": [ + "250", + "600", + "150", + "150" + ], + "outer_wall_acceleration": [ + "5000", + "5000", + "4000", + "4000" + ], + "outer_wall_speed": [ + "200", + "500", + "50", + "50" + ], + "overhang_3_4_speed": [ + "15", + "25", + "25", + "25" + ], + "overhang_4_4_speed": [ + "10", + "5", + "5", + "5" + ], + "prime_tower_brim_width": "-1", + "print_extruder_variant": [ + "Direct Drive Standard", + "Direct Drive High Flow", + "Bowden Standard", + "Bowden High Flow" + ], + "sparse_infill_speed": [ + "270", + "600", + "100", + "100" + ], + "top_surface_pattern": "monotonicline", + "travel_speed": [ + "1000", + "1000", + "1000", + "1000" + ], + "compatible_printers": [ + "Bambu Lab X2D 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.42mm Extra Draft @BBL A1 0.6 nozzle.json b/resources/profiles/BBL/process/0.42mm Extra Draft @BBL A1 0.6 nozzle.json index 5ec42977f7..9a1a12c2d5 100644 --- a/resources/profiles/BBL/process/0.42mm Extra Draft @BBL A1 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.42mm Extra Draft @BBL A1 0.6 nozzle.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.42mm Extra Draft @BBL A1 0.6 nozzle", - "inherits": "fdm_process_single_0.42_nozzle_0.6", - "from": "system", - "setting_id": "GP091", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.6 nozzle" - ] -} + "type": "process", + "name": "0.42mm Extra Draft @BBL A1 0.6 nozzle", + "inherits": "fdm_process_single_0.42_nozzle_0.6", + "from": "system", + "setting_id": "GP091", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.42mm Extra Draft @BBL A1M 0.6 nozzle.json b/resources/profiles/BBL/process/0.42mm Extra Draft @BBL A1M 0.6 nozzle.json index a47a365981..995e7946b1 100644 --- a/resources/profiles/BBL/process/0.42mm Extra Draft @BBL A1M 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.42mm Extra Draft @BBL A1M 0.6 nozzle.json @@ -1,18 +1,18 @@ { - "type": "process", - "name": "0.42mm Extra Draft @BBL A1M 0.6 nozzle", - "inherits": "fdm_process_single_0.42_nozzle_0.6", - "from": "system", - "setting_id": "GP056", - "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.", - "default_acceleration": [ - "6000" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.6 nozzle" - ] -} + "type": "process", + "name": "0.42mm Extra Draft @BBL A1M 0.6 nozzle", + "inherits": "fdm_process_single_0.42_nozzle_0.6", + "from": "system", + "setting_id": "GP056", + "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.", + "default_acceleration": [ + "6000" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.6 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.42mm Extra Draft @BBL P1P 0.6 nozzle.json b/resources/profiles/BBL/process/0.42mm Extra Draft @BBL P1P 0.6 nozzle.json index e4a31d3d12..7179f43bd6 100644 --- a/resources/profiles/BBL/process/0.42mm Extra Draft @BBL P1P 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.42mm Extra Draft @BBL P1P 0.6 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,9 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "15", - "15" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -71,14 +71,14 @@ "50", "50" ], + "overhang_3_4_speed": [ + "15", + "15" + ], "overhang_4_4_speed": [ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.42mm Standard @BBL X1C 0.6 nozzle.json b/resources/profiles/BBL/process/0.42mm Standard @BBL X1C 0.6 nozzle.json index ebc423cf93..7b0306c0af 100644 --- a/resources/profiles/BBL/process/0.42mm Standard @BBL X1C 0.6 nozzle.json +++ b/resources/profiles/BBL/process/0.42mm Standard @BBL X1C 0.6 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,9 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "15", - "15" + "initial_layer_acceleration": [ + "500", + "500" + ], + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -71,14 +71,14 @@ "50", "50" ], + "overhang_3_4_speed": [ + "15", + "15" + ], "overhang_4_4_speed": [ "10", "10" ], - "outer_wall_speed": [ - "120", - "120" - ], "print_extruder_id": [ "1", "1" @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.48mm Draft @BBL A1 0.8 nozzle.json b/resources/profiles/BBL/process/0.48mm Draft @BBL A1 0.8 nozzle.json index 2131a39875..4e46c6aa0b 100644 --- a/resources/profiles/BBL/process/0.48mm Draft @BBL A1 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.48mm Draft @BBL A1 0.8 nozzle.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.48mm Draft @BBL A1 0.8 nozzle", - "inherits": "fdm_process_single_0.48_nozzle_0.8", - "from": "system", - "setting_id": "GP094", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "process", + "name": "0.48mm Draft @BBL A1 0.8 nozzle", + "inherits": "fdm_process_single_0.48_nozzle_0.8", + "from": "system", + "setting_id": "GP094", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.48mm Draft @BBL A1M 0.8 nozzle.json b/resources/profiles/BBL/process/0.48mm Draft @BBL A1M 0.8 nozzle.json index 0f059c59b2..cd95a8ce15 100644 --- a/resources/profiles/BBL/process/0.48mm Draft @BBL A1M 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.48mm Draft @BBL A1M 0.8 nozzle.json @@ -1,18 +1,18 @@ { - "type": "process", - "name": "0.48mm Draft @BBL A1M 0.8 nozzle", - "inherits": "fdm_process_single_0.48_nozzle_0.8", - "from": "system", - "setting_id": "GP059", - "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.", - "default_acceleration": [ - "6000" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "process", + "name": "0.48mm Draft @BBL A1M 0.8 nozzle", + "inherits": "fdm_process_single_0.48_nozzle_0.8", + "from": "system", + "setting_id": "GP059", + "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.", + "default_acceleration": [ + "6000" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.48mm Draft @BBL P1P 0.8 nozzle.json b/resources/profiles/BBL/process/0.48mm Draft @BBL P1P 0.8 nozzle.json index cf788c3832..aad6cf2dfd 100644 --- a/resources/profiles/BBL/process/0.48mm Draft @BBL P1P 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.48mm Draft @BBL P1P 0.8 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,13 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "25", - "25" + "initial_layer_acceleration": [ + "500", + "500" ], - "overhang_4_4_speed": [ - "5", - "5" + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -75,9 +71,13 @@ "50", "50" ], - "outer_wall_speed": [ - "120", - "120" + "overhang_3_4_speed": [ + "25", + "25" + ], + "overhang_4_4_speed": [ + "5", + "5" ], "print_extruder_id": [ "1", @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.48mm Standard @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/process/0.48mm Standard @BBL X1C 0.8 nozzle.json index 12de9a8108..f620fea934 100644 --- a/resources/profiles/BBL/process/0.48mm Standard @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.48mm Standard @BBL X1C 0.8 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,13 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "25", - "25" + "initial_layer_acceleration": [ + "500", + "500" ], - "overhang_4_4_speed": [ - "5", - "5" + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -75,9 +71,13 @@ "50", "50" ], - "outer_wall_speed": [ - "120", - "120" + "overhang_3_4_speed": [ + "25", + "25" + ], + "overhang_4_4_speed": [ + "5", + "5" ], "print_extruder_id": [ "1", @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.56mm Extra Draft @BBL A1 0.8 nozzle.json b/resources/profiles/BBL/process/0.56mm Extra Draft @BBL A1 0.8 nozzle.json index 1114b908fa..bb2888bdd0 100644 --- a/resources/profiles/BBL/process/0.56mm Extra Draft @BBL A1 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.56mm Extra Draft @BBL A1 0.8 nozzle.json @@ -1,19 +1,19 @@ { - "type": "process", - "name": "0.56mm Extra Draft @BBL A1 0.8 nozzle", - "inherits": "fdm_process_single_0.56_nozzle_0.8", - "from": "system", - "setting_id": "GP095", - "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.", - "default_acceleration": [ - "6000" - ], - "elefant_foot_compensation": "0.075", - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 0.8 nozzle" - ] -} + "type": "process", + "name": "0.56mm Extra Draft @BBL A1 0.8 nozzle", + "inherits": "fdm_process_single_0.56_nozzle_0.8", + "from": "system", + "setting_id": "GP095", + "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.", + "default_acceleration": [ + "6000" + ], + "elefant_foot_compensation": "0.075", + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.56mm Extra Draft @BBL A1M 0.8 nozzle.json b/resources/profiles/BBL/process/0.56mm Extra Draft @BBL A1M 0.8 nozzle.json index c2b0a10848..0ab9ba9245 100644 --- a/resources/profiles/BBL/process/0.56mm Extra Draft @BBL A1M 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.56mm Extra Draft @BBL A1M 0.8 nozzle.json @@ -1,18 +1,18 @@ { - "type": "process", - "name": "0.56mm Extra Draft @BBL A1M 0.8 nozzle", - "inherits": "fdm_process_single_0.56_nozzle_0.8", - "from": "system", - "setting_id": "GP060", - "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.", - "default_acceleration": [ - "6000" - ], - "travel_speed": [ - "700" - ], - "compatible_printers": [ - "Bambu Lab A1 mini 0.8 nozzle" - ] -} + "type": "process", + "name": "0.56mm Extra Draft @BBL A1M 0.8 nozzle", + "inherits": "fdm_process_single_0.56_nozzle_0.8", + "from": "system", + "setting_id": "GP060", + "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.", + "default_acceleration": [ + "6000" + ], + "travel_speed": [ + "700" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.8 nozzle" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/0.56mm Extra Draft @BBL P1P 0.8 nozzle.json b/resources/profiles/BBL/process/0.56mm Extra Draft @BBL P1P 0.8 nozzle.json index 1b4d5ee0c3..538a4ea1e6 100644 --- a/resources/profiles/BBL/process/0.56mm Extra Draft @BBL P1P 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.56mm Extra Draft @BBL P1P 0.8 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,13 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "25", - "25" + "initial_layer_acceleration": [ + "500", + "500" ], - "overhang_4_4_speed": [ - "5", - "5" + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -75,9 +71,13 @@ "50", "50" ], - "outer_wall_speed": [ - "120", - "120" + "overhang_3_4_speed": [ + "25", + "25" + ], + "overhang_4_4_speed": [ + "5", + "5" ], "print_extruder_id": [ "1", @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/0.56mm Standard @BBL X1C 0.8 nozzle.json b/resources/profiles/BBL/process/0.56mm Standard @BBL X1C 0.8 nozzle.json index 2745935c6c..10244b33ba 100644 --- a/resources/profiles/BBL/process/0.56mm Standard @BBL X1C 0.8 nozzle.json +++ b/resources/profiles/BBL/process/0.56mm Standard @BBL X1C 0.8 nozzle.json @@ -27,22 +27,10 @@ "50", "50" ], - "initial_layer_infill_speed": [ - "55", - "55" - ], "initial_layer_speed": [ "35", "35" ], - "initial_layer_acceleration": [ - "500", - "500" - ], - "inner_wall_acceleration": [ - "0", - "0" - ], "inner_wall_speed": [ "150", "150" @@ -55,13 +43,21 @@ "6000", "6000" ], - "overhang_3_4_speed": [ - "25", - "25" + "initial_layer_acceleration": [ + "500", + "500" ], - "overhang_4_4_speed": [ - "5", - "5" + "initial_layer_infill_speed": [ + "55", + "55" + ], + "inner_wall_acceleration": [ + "0", + "0" + ], + "outer_wall_speed": [ + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -75,9 +71,13 @@ "50", "50" ], - "outer_wall_speed": [ - "120", - "120" + "overhang_3_4_speed": [ + "25", + "25" + ], + "overhang_4_4_speed": [ + "5", + "5" ], "print_extruder_id": [ "1", @@ -91,6 +91,14 @@ "100", "100" ], + "support_interface_speed": [ + "80", + "80" + ], + "support_speed": [ + "150", + "150" + ], "slowdown_start_height": [ "0", "0" @@ -127,34 +135,34 @@ "100%", "100%" ], - "support_speed": [ - "150", - "150" - ], - "support_interface_speed": [ - "80", - "80" - ], "top_surface_speed": [ "150", "150" ], - "top_surface_acceleration": [ - "2000", - "2000" + "top_solid_infill_flow_ratio": [ + "1", + "1" + ], + "travel_acceleration": [ + "10000", + "10000" + ], + "travel_short_distance_acceleration": [ + "250", + "250" ], "travel_speed": [ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000" + ], "travel_speed_z": [ "0", "0" ], - "travel_acceleration": [ - "10000", - "10000" - ], "vertical_shell_speed": [ "80%", "80%" diff --git a/resources/profiles/BBL/process/fdm_process_common.json b/resources/profiles/BBL/process/fdm_process_common.json index 5af292b424..ecb2956698 100644 --- a/resources/profiles/BBL/process/fdm_process_common.json +++ b/resources/profiles/BBL/process/fdm_process_common.json @@ -7,6 +7,7 @@ "bottom_color_penetration_layers": "3", "bottom_shell_thickness": "0", "bottom_surface_pattern": "monotonic", + "bottom_surface_density": "100", "bridge_flow": "0.95", "bridge_no_support": "0", "bridge_speed": [ @@ -36,7 +37,9 @@ "infill_combination": "0", "infill_direction": "45", "infill_wall_overlap": "15%", + "monotonic_travel_into_wall": "0.0", "initial_layer_line_width": "0.5", + "initial_layer_infill_line_width": "0.5", "initial_layer_print_height": "0.2", "initial_layer_speed": [ "20" @@ -69,6 +72,7 @@ "locked_skeleton_infill_pattern": "zigzag", "max_bridge_length": "0", "max_travel_detour_distance": "0", + "avoid_crossing_wall_includes_support": "0", "minimum_sparse_infill_area": "15", "only_one_wall_top": "1", "outer_wall_line_width": "0.42", @@ -88,26 +92,26 @@ "prime_tower_lift_height": "-1", "prime_tower_max_speed": "90", "prime_tower_flat_ironing": "0", - "enable_tower_interface_features": "0", - "enable_tower_interface_cooldown_during_tower": "0", "raft_layers": "0", "reduce_crossing_wall": "0", - "reduce_infill_retraction": "1", + "reduce_infill_retraction_mode": "Auto", "resolution": "0.012", "scarf_angle_threshold": "155", "seam_position": "aligned", "seam_placement_away_from_overhangs": "0", "skirt_distance": "2", + "skirt_per_object": "1", "skirt_height": "1", "skirt_loops": "0", "sparse_infill_density": "15%", + "fill_multiline": "1", "skeleton_infill_density": "15%", "skin_infill_density": "15%", "sparse_infill_line_width": "0.45", "skin_infill_line_width": "0.45", "skin_infill_depth": "2.0", "skeleton_infill_line_width": "0.45", - "sparse_infill_pattern": "crosshatch", + "sparse_infill_pattern": "grid", "sparse_infill_speed": [ "50" ], @@ -137,33 +141,63 @@ "support_threshold_angle": "30", "support_top_z_distance": "0.2", "support_type": "tree(auto)", + "enable_support_ironing": "0", + "support_ironing_pattern": "zig-zag", + "support_ironing_speed": "30", + "support_ironing_flow": "10%", + "support_ironing_spacing": "0.15", + "support_ironing_inset": "0.0", + "support_ironing_direction": "0", "seam_slope_type": "none", "seam_slope_start_height": "10%", "seam_slope_gap": "0", "seam_slope_min_length": "10", "symmetric_infill_y_axis": "0", + "sparse_infill_lattice_angle_1": "-45", + "sparse_infill_lattice_angle_2": "45", "top_shell_layers": "3", "top_color_penetration_layers": "3", "top_shell_thickness": "0.8", "top_surface_line_width": "0.42", "top_surface_pattern": "monotonicline", + "top_surface_density": "100", "top_surface_speed": [ "30" ], + "top_solid_infill_flow_ratio": [ + "1" + ], "travel_acceleration": [ "10000" ], + "travel_short_distance_acceleration": [ + "250" + ], "travel_speed": [ "400" ], "tree_support_branch_angle": "45", "tree_support_branch_diameter": "2", - "tree_support_wall_count": "0", + "tree_support_wall_count": "-1", "wall_generator": "classic", "wall_infill_order": "inner wall/outer wall/infill", "wall_loops": "2", "wipe_tower_no_sparse_layers": "0", "xy_contour_compensation": "0", "xy_hole_compensation": "0", - "z_direction_outwall_speed_continuous": "0" + "z_direction_outwall_speed_continuous": "0", + "enable_tower_interface_features": "0", + "sparse_infill_filament": "0", + "wall_filament": "0", + "solid_infill_filament": "0", + "infill_instead_top_bottom_surfaces": "0", + "fuzzy_skin": "none", + "fuzzy_skin_thickness": "0.3", + "fuzzy_skin_point_distance": "0.8", + "fuzzy_skin_first_layer": "0", + "fuzzy_skin_noise_type": "classic", + "fuzzy_skin_mode": "displacement", + "fuzzy_skin_scale": "1.0", + "fuzzy_skin_octaves": "4", + "fuzzy_skin_persistence": "0.5" } diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.06_nozzle_0.2.json b/resources/profiles/BBL/process/fdm_process_dual_0.06_nozzle_0.2.json index 466b5f3a11..de31d5a7d4 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.06_nozzle_0.2.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.06_nozzle_0.2.json @@ -1,53 +1,54 @@ { - "type": "process", - "name": "fdm_process_dual_0.06_nozzle_0.2", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bottom_shell_layers": "5", - "bottom_color_penetration_layers": "5", - "bridge_flow": "1", - "elefant_foot_compensation": "0.15", - "initial_layer_line_width": "0.25", - "initial_layer_print_height": "0.1", - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_line_width": "0.22", - "internal_solid_infill_line_width": "0.22", - "ironing_inset": "0.11", - "initial_layer_infill_speed": [ - "70", - "70", - "70", - "70" - ], - "layer_height": "0.06", - "line_width": "0.22", - "outer_wall_line_width": "0.22", - "sparse_infill_line_width": "0.22", - "skin_infill_line_width": "0.22", - "skeleton_infill_line_width": "0.22", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100" - ], - "support_bottom_z_distance": "0.06", - "support_line_width": "0.22", - "support_top_z_distance": "0.06", - "top_shell_layers": "7", - "top_color_penetration_layers": "7", - "top_surface_line_width": "0.22", - "top_surface_speed": [ - "150", - "150", - "150", - "150" - ], - "wall_loops": "4" -} + "type": "process", + "name": "fdm_process_dual_0.06_nozzle_0.2", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bottom_shell_layers": "5", + "bottom_color_penetration_layers": "5", + "bridge_flow": "1", + "elefant_foot_compensation": "0.15", + "initial_layer_line_width": "0.25", + "initial_layer_infill_line_width": "0.25", + "initial_layer_print_height": "0.1", + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_line_width": "0.22", + "internal_solid_infill_line_width": "0.22", + "ironing_inset": "0.11", + "initial_layer_infill_speed": [ + "70", + "70", + "70", + "70" + ], + "layer_height": "0.06", + "line_width": "0.22", + "outer_wall_line_width": "0.22", + "sparse_infill_line_width": "0.22", + "skin_infill_line_width": "0.22", + "skeleton_infill_line_width": "0.22", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100" + ], + "support_bottom_z_distance": "0.06", + "support_line_width": "0.22", + "support_top_z_distance": "0.06", + "top_shell_layers": "7", + "top_color_penetration_layers": "7", + "top_surface_line_width": "0.22", + "top_surface_speed": [ + "150", + "150", + "150", + "150" + ], + "wall_loops": "4" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.08_nozzle_0.2.json b/resources/profiles/BBL/process/fdm_process_dual_0.08_nozzle_0.2.json index 512a0e6c7d..10a7c041b2 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.08_nozzle_0.2.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.08_nozzle_0.2.json @@ -1,53 +1,54 @@ { - "type": "process", - "name": "fdm_process_dual_0.08_nozzle_0.2", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bottom_shell_layers": "5", - "bottom_color_penetration_layers": "5", - "bridge_flow": "1", - "elefant_foot_compensation": "0.15", - "initial_layer_line_width": "0.25", - "initial_layer_print_height": "0.1", - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_line_width": "0.22", - "internal_solid_infill_line_width": "0.22", - "ironing_inset": "0.11", - "initial_layer_infill_speed": [ - "70", - "70", - "70", - "70" - ], - "layer_height": "0.08", - "line_width": "0.22", - "outer_wall_line_width": "0.22", - "sparse_infill_line_width": "0.22", - "skin_infill_line_width": "0.22", - "skeleton_infill_line_width": "0.22", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100" - ], - "support_bottom_z_distance": "0.08", - "support_line_width": "0.22", - "support_top_z_distance": "0.08", - "top_shell_layers": "7", - "top_color_penetration_layers": "7", - "top_surface_line_width": "0.22", - "top_surface_speed": [ - "150", - "150", - "150", - "150" - ], - "wall_loops": "4" -} + "type": "process", + "name": "fdm_process_dual_0.08_nozzle_0.2", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bottom_shell_layers": "5", + "bottom_color_penetration_layers": "5", + "bridge_flow": "1", + "elefant_foot_compensation": "0.15", + "initial_layer_line_width": "0.25", + "initial_layer_infill_line_width": "0.25", + "initial_layer_print_height": "0.1", + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_line_width": "0.22", + "internal_solid_infill_line_width": "0.22", + "ironing_inset": "0.11", + "initial_layer_infill_speed": [ + "70", + "70", + "70", + "70" + ], + "layer_height": "0.08", + "line_width": "0.22", + "outer_wall_line_width": "0.22", + "sparse_infill_line_width": "0.22", + "skin_infill_line_width": "0.22", + "skeleton_infill_line_width": "0.22", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100" + ], + "support_bottom_z_distance": "0.08", + "support_line_width": "0.22", + "support_top_z_distance": "0.08", + "top_shell_layers": "7", + "top_color_penetration_layers": "7", + "top_surface_line_width": "0.22", + "top_surface_speed": [ + "150", + "150", + "150", + "150" + ], + "wall_loops": "4" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.08_nozzle_0.4.json b/resources/profiles/BBL/process/fdm_process_dual_0.08_nozzle_0.4.json index 609bfd598f..8484f99833 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.08_nozzle_0.4.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.08_nozzle_0.4.json @@ -1,55 +1,55 @@ { - "type": "process", - "name": "fdm_process_dual_0.08_nozzle_0.4", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bottom_shell_layers": "7", - "bottom_color_penetration_layers": "7", - "bridge_flow": "1", - "elefant_foot_compensation": "0.15", - "gap_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300" - ], - "internal_solid_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "ironing_flow": "8%", - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105" - ], - "layer_height": "0.08", - "sparse_infill_speed": [ - "270", - "270", - "270", - "270" - ], - "support_bottom_z_distance": "0.08", - "support_threshold_angle": "15", - "support_top_z_distance": "0.08", - "top_shell_layers": "9", - "top_color_penetration_layers": "9", - "top_shell_thickness": "1.0" -} + "type": "process", + "name": "fdm_process_dual_0.08_nozzle_0.4", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bottom_shell_layers": "7", + "bottom_color_penetration_layers": "7", + "bridge_flow": "1", + "elefant_foot_compensation": "0.15", + "gap_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "ironing_flow": "8%", + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105" + ], + "layer_height": "0.08", + "sparse_infill_speed": [ + "270", + "270", + "270", + "270" + ], + "support_bottom_z_distance": "0.08", + "support_threshold_angle": "15", + "support_top_z_distance": "0.08", + "top_shell_layers": "9", + "top_color_penetration_layers": "9", + "top_shell_thickness": "1.0" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.10_nozzle_0.2.json b/resources/profiles/BBL/process/fdm_process_dual_0.10_nozzle_0.2.json index a39481dde0..dd333ca246 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.10_nozzle_0.2.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.10_nozzle_0.2.json @@ -1,53 +1,54 @@ { - "type": "process", - "name": "fdm_process_dual_0.10_nozzle_0.2", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bottom_shell_layers": "5", - "bottom_color_penetration_layers": "5", - "bridge_flow": "1", - "elefant_foot_compensation": "0.15", - "initial_layer_line_width": "0.25", - "initial_layer_print_height": "0.1", - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_line_width": "0.22", - "internal_solid_infill_line_width": "0.22", - "ironing_inset": "0.11", - "initial_layer_infill_speed": [ - "70", - "70", - "70", - "70" - ], - "layer_height": "0.1", - "line_width": "0.22", - "outer_wall_line_width": "0.22", - "sparse_infill_line_width": "0.22", - "skin_infill_line_width": "0.22", - "skeleton_infill_line_width": "0.22", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100" - ], - "support_bottom_z_distance": "0.1", - "support_line_width": "0.22", - "support_top_z_distance": "0.1", - "top_shell_layers": "7", - "top_color_penetration_layers": "7", - "top_surface_line_width": "0.22", - "top_surface_speed": [ - "150", - "150", - "150", - "150" - ], - "wall_loops": "4" -} + "type": "process", + "name": "fdm_process_dual_0.10_nozzle_0.2", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bottom_shell_layers": "5", + "bottom_color_penetration_layers": "5", + "bridge_flow": "1", + "elefant_foot_compensation": "0.15", + "initial_layer_line_width": "0.25", + "initial_layer_infill_line_width": "0.25", + "initial_layer_print_height": "0.1", + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_line_width": "0.22", + "internal_solid_infill_line_width": "0.22", + "ironing_inset": "0.11", + "initial_layer_infill_speed": [ + "70", + "70", + "70", + "70" + ], + "layer_height": "0.1", + "line_width": "0.22", + "outer_wall_line_width": "0.22", + "sparse_infill_line_width": "0.22", + "skin_infill_line_width": "0.22", + "skeleton_infill_line_width": "0.22", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100" + ], + "support_bottom_z_distance": "0.1", + "support_line_width": "0.22", + "support_top_z_distance": "0.1", + "top_shell_layers": "7", + "top_color_penetration_layers": "7", + "top_surface_line_width": "0.22", + "top_surface_speed": [ + "150", + "150", + "150", + "150" + ], + "wall_loops": "4" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.12_nozzle_0.2.json b/resources/profiles/BBL/process/fdm_process_dual_0.12_nozzle_0.2.json index 58ad34feff..cc9f8b2012 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.12_nozzle_0.2.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.12_nozzle_0.2.json @@ -1,53 +1,54 @@ { - "type": "process", - "name": "fdm_process_dual_0.12_nozzle_0.2", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bottom_shell_layers": "5", - "bottom_color_penetration_layers": "5", - "bridge_flow": "1", - "elefant_foot_compensation": "0.15", - "initial_layer_line_width": "0.25", - "initial_layer_print_height": "0.1", - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_line_width": "0.22", - "internal_solid_infill_line_width": "0.22", - "ironing_inset": "0.11", - "initial_layer_infill_speed": [ - "70", - "70", - "70", - "70" - ], - "layer_height": "0.12", - "line_width": "0.22", - "outer_wall_line_width": "0.22", - "sparse_infill_line_width": "0.22", - "skin_infill_line_width": "0.22", - "skeleton_infill_line_width": "0.22", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100" - ], - "support_bottom_z_distance": "0.12", - "support_line_width": "0.22", - "support_top_z_distance": "0.12", - "top_shell_layers": "7", - "top_color_penetration_layers": "7", - "top_surface_line_width": "0.22", - "top_surface_speed": [ - "150", - "150", - "150", - "150" - ], - "wall_loops": "4" -} + "type": "process", + "name": "fdm_process_dual_0.12_nozzle_0.2", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bottom_shell_layers": "5", + "bottom_color_penetration_layers": "5", + "bridge_flow": "1", + "elefant_foot_compensation": "0.15", + "initial_layer_line_width": "0.25", + "initial_layer_infill_line_width": "0.25", + "initial_layer_print_height": "0.1", + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_line_width": "0.22", + "internal_solid_infill_line_width": "0.22", + "ironing_inset": "0.11", + "initial_layer_infill_speed": [ + "70", + "70", + "70", + "70" + ], + "layer_height": "0.12", + "line_width": "0.22", + "outer_wall_line_width": "0.22", + "sparse_infill_line_width": "0.22", + "skin_infill_line_width": "0.22", + "skeleton_infill_line_width": "0.22", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100" + ], + "support_bottom_z_distance": "0.12", + "support_line_width": "0.22", + "support_top_z_distance": "0.12", + "top_shell_layers": "7", + "top_color_penetration_layers": "7", + "top_surface_line_width": "0.22", + "top_surface_speed": [ + "150", + "150", + "150", + "150" + ], + "wall_loops": "4" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.12_nozzle_0.4.json b/resources/profiles/BBL/process/fdm_process_dual_0.12_nozzle_0.4.json index 60ee09e135..63b4fd4eb5 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.12_nozzle_0.4.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.12_nozzle_0.4.json @@ -1,54 +1,54 @@ { - "type": "process", - "name": "fdm_process_dual_0.12_nozzle_0.4", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bottom_shell_layers": "5", - "bottom_color_penetration_layers": "5", - "bridge_flow": "1", - "elefant_foot_compensation": "0.15", - "gap_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300" - ], - "internal_solid_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105" - ], - "layer_height": "0.12", - "sparse_infill_speed": [ - "270", - "270", - "270", - "270" - ], - "support_bottom_z_distance": "0.12", - "support_threshold_angle": "20", - "support_top_z_distance": "0.12", - "top_shell_layers": "5", - "top_color_penetration_layers": "5", - "top_shell_thickness": "0.6" -} + "type": "process", + "name": "fdm_process_dual_0.12_nozzle_0.4", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bottom_shell_layers": "5", + "bottom_color_penetration_layers": "5", + "bridge_flow": "1", + "elefant_foot_compensation": "0.15", + "gap_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105" + ], + "layer_height": "0.12", + "sparse_infill_speed": [ + "270", + "270", + "270", + "270" + ], + "support_bottom_z_distance": "0.12", + "support_threshold_angle": "20", + "support_top_z_distance": "0.12", + "top_shell_layers": "5", + "top_color_penetration_layers": "5", + "top_shell_thickness": "0.6" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.14_nozzle_0.2.json b/resources/profiles/BBL/process/fdm_process_dual_0.14_nozzle_0.2.json index 8e4e1c88c3..c1475f0de9 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.14_nozzle_0.2.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.14_nozzle_0.2.json @@ -1,53 +1,54 @@ { - "type": "process", - "name": "fdm_process_dual_0.14_nozzle_0.2", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bottom_shell_layers": "5", - "bottom_color_penetration_layers": "5", - "bridge_flow": "1", - "elefant_foot_compensation": "0.15", - "initial_layer_line_width": "0.25", - "initial_layer_print_height": "0.1", - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_line_width": "0.22", - "internal_solid_infill_line_width": "0.22", - "ironing_inset": "0.11", - "initial_layer_infill_speed": [ - "70", - "70", - "70", - "70" - ], - "layer_height": "0.14", - "line_width": "0.22", - "outer_wall_line_width": "0.22", - "sparse_infill_line_width": "0.22", - "skin_infill_line_width": "0.22", - "skeleton_infill_line_width": "0.22", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100" - ], - "support_bottom_z_distance": "0.14", - "support_line_width": "0.22", - "support_top_z_distance": "0.14", - "top_shell_layers": "7", - "top_color_penetration_layers": "7", - "top_surface_line_width": "0.22", - "top_surface_speed": [ - "150", - "150", - "150", - "150" - ], - "wall_loops": "4" -} + "type": "process", + "name": "fdm_process_dual_0.14_nozzle_0.2", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bottom_shell_layers": "5", + "bottom_color_penetration_layers": "5", + "bridge_flow": "1", + "elefant_foot_compensation": "0.15", + "initial_layer_line_width": "0.25", + "initial_layer_infill_line_width": "0.25", + "initial_layer_print_height": "0.1", + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_line_width": "0.22", + "internal_solid_infill_line_width": "0.22", + "ironing_inset": "0.11", + "initial_layer_infill_speed": [ + "70", + "70", + "70", + "70" + ], + "layer_height": "0.14", + "line_width": "0.22", + "outer_wall_line_width": "0.22", + "sparse_infill_line_width": "0.22", + "skin_infill_line_width": "0.22", + "skeleton_infill_line_width": "0.22", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100" + ], + "support_bottom_z_distance": "0.14", + "support_line_width": "0.22", + "support_top_z_distance": "0.14", + "top_shell_layers": "7", + "top_color_penetration_layers": "7", + "top_surface_line_width": "0.22", + "top_surface_speed": [ + "150", + "150", + "150", + "150" + ], + "wall_loops": "4" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.16_nozzle_0.4.json b/resources/profiles/BBL/process/fdm_process_dual_0.16_nozzle_0.4.json index 227709be64..e898f696ba 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.16_nozzle_0.4.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.16_nozzle_0.4.json @@ -1,54 +1,54 @@ { - "type": "process", - "name": "fdm_process_dual_0.16_nozzle_0.4", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bottom_shell_layers": "4", - "bottom_color_penetration_layers": "4", - "bridge_flow": "1", - "elefant_foot_compensation": "0.15", - "gap_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300" - ], - "internal_solid_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105" - ], - "layer_height": "0.16", - "sparse_infill_speed": [ - "270", - "270", - "270", - "270" - ], - "support_bottom_z_distance": "0.16", - "support_threshold_angle": "25", - "support_top_z_distance": "0.16", - "top_shell_layers": "6", - "top_color_penetration_layers": "6", - "top_shell_thickness": "1.0" -} + "type": "process", + "name": "fdm_process_dual_0.16_nozzle_0.4", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bottom_shell_layers": "4", + "bottom_color_penetration_layers": "4", + "bridge_flow": "1", + "elefant_foot_compensation": "0.15", + "gap_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105" + ], + "layer_height": "0.16", + "sparse_infill_speed": [ + "270", + "270", + "270", + "270" + ], + "support_bottom_z_distance": "0.16", + "support_threshold_angle": "25", + "support_top_z_distance": "0.16", + "top_shell_layers": "6", + "top_color_penetration_layers": "6", + "top_shell_thickness": "1.0" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.18_nozzle_0.6.json b/resources/profiles/BBL/process/fdm_process_dual_0.18_nozzle_0.6.json index 0bb23d17ef..cd7d35631f 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.18_nozzle_0.6.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.18_nozzle_0.6.json @@ -1,60 +1,61 @@ { - "type": "process", - "name": "fdm_process_dual_0.18_nozzle_0.6", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30", - "30", - "30", - "30" - ], - "elefant_foot_compensation": "0.15", - "initial_layer_line_width": "0.62", - "initial_layer_print_height": "0.3", - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_line_width": "0.62", - "internal_solid_infill_line_width": "0.62", - "ironing_inset": "0.31", - "initial_layer_infill_speed": [ - "55", - "55", - "55", - "55" - ], - "layer_height": "0.18", - "line_width": "0.62", - "outer_wall_line_width": "0.62", - "overhang_3_4_speed": [ - "15", - "15", - "15", - "15" - ], - "sparse_infill_line_width": "0.62", - "skin_infill_line_width": "0.62", - "skeleton_infill_line_width": "0.62", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100" - ], - "support_bottom_z_distance": "0.18", - "support_line_width": "0.62", - "support_top_z_distance": "0.18", - "top_surface_line_width": "0.62", - "top_surface_speed": [ - "150", - "150", - "150", - "150" - ] -} + "type": "process", + "name": "fdm_process_dual_0.18_nozzle_0.6", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30", + "30", + "30", + "30" + ], + "elefant_foot_compensation": "0.15", + "initial_layer_line_width": "0.62", + "initial_layer_infill_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_line_width": "0.62", + "internal_solid_infill_line_width": "0.62", + "ironing_inset": "0.31", + "initial_layer_infill_speed": [ + "55", + "55", + "55", + "55" + ], + "layer_height": "0.18", + "line_width": "0.62", + "outer_wall_line_width": "0.62", + "overhang_3_4_speed": [ + "15", + "15", + "15", + "15" + ], + "sparse_infill_line_width": "0.62", + "skin_infill_line_width": "0.62", + "skeleton_infill_line_width": "0.62", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100" + ], + "support_bottom_z_distance": "0.18", + "support_line_width": "0.62", + "support_top_z_distance": "0.18", + "top_surface_line_width": "0.62", + "top_surface_speed": [ + "150", + "150", + "150", + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.20_nozzle_0.4.json b/resources/profiles/BBL/process/fdm_process_dual_0.20_nozzle_0.4.json index c05b0d9b98..32599695e7 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.20_nozzle_0.4.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.20_nozzle_0.4.json @@ -1,48 +1,48 @@ { - "type": "process", - "name": "fdm_process_dual_0.20_nozzle_0.4", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "elefant_foot_compensation": "0.15", - "gap_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300" - ], - "internal_solid_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105" - ], - "sparse_infill_speed": [ - "270", - "270", - "270", - "270" - ], - "top_shell_layers": "5", - "top_color_penetration_layers": "5", - "top_shell_thickness": "1.0" -} + "type": "process", + "name": "fdm_process_dual_0.20_nozzle_0.4", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "elefant_foot_compensation": "0.15", + "gap_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105" + ], + "sparse_infill_speed": [ + "270", + "270", + "270", + "270" + ], + "top_shell_layers": "5", + "top_color_penetration_layers": "5", + "top_shell_thickness": "1.0" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.24_nozzle_0.4.json b/resources/profiles/BBL/process/fdm_process_dual_0.24_nozzle_0.4.json index 5538af711f..4348c147ac 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.24_nozzle_0.4.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.24_nozzle_0.4.json @@ -1,51 +1,51 @@ { - "type": "process", - "name": "fdm_process_dual_0.24_nozzle_0.4", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "elefant_foot_compensation": "0.15", - "gap_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300" - ], - "internal_solid_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105" - ], - "layer_height": "0.24", - "sparse_infill_speed": [ - "270", - "270", - "270", - "270" - ], - "support_threshold_angle": "35", - "top_shell_layers": "4", - "top_color_penetration_layers": "4", - "top_shell_thickness": "1.0", - "top_surface_line_width": "0.45" -} + "type": "process", + "name": "fdm_process_dual_0.24_nozzle_0.4", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "elefant_foot_compensation": "0.15", + "gap_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105" + ], + "layer_height": "0.24", + "sparse_infill_speed": [ + "270", + "270", + "270", + "270" + ], + "support_threshold_angle": "35", + "top_shell_layers": "4", + "top_color_penetration_layers": "4", + "top_shell_thickness": "1.0", + "top_surface_line_width": "0.45" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.24_nozzle_0.6.json b/resources/profiles/BBL/process/fdm_process_dual_0.24_nozzle_0.6.json index a0cd2198dd..9c46eec3bd 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.24_nozzle_0.6.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.24_nozzle_0.6.json @@ -1,58 +1,59 @@ { - "type": "process", - "name": "fdm_process_dual_0.24_nozzle_0.6", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30", - "30", - "30", - "30" - ], - "elefant_foot_compensation": "0.15", - "initial_layer_line_width": "0.62", - "initial_layer_print_height": "0.3", - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_line_width": "0.62", - "internal_solid_infill_line_width": "0.62", - "ironing_inset": "0.31", - "initial_layer_infill_speed": [ - "55", - "55", - "55", - "55" - ], - "layer_height": "0.24", - "line_width": "0.62", - "outer_wall_line_width": "0.62", - "overhang_3_4_speed": [ - "15", - "15", - "15", - "15" - ], - "sparse_infill_line_width": "0.62", - "skin_infill_line_width": "0.62", - "skeleton_infill_line_width": "0.62", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100" - ], - "support_line_width": "0.62", - "top_surface_line_width": "0.62", - "top_surface_speed": [ - "150", - "150", - "150", - "150" - ] -} + "type": "process", + "name": "fdm_process_dual_0.24_nozzle_0.6", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30", + "30", + "30", + "30" + ], + "elefant_foot_compensation": "0.15", + "initial_layer_line_width": "0.62", + "initial_layer_infill_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_line_width": "0.62", + "internal_solid_infill_line_width": "0.62", + "ironing_inset": "0.31", + "initial_layer_infill_speed": [ + "55", + "55", + "55", + "55" + ], + "layer_height": "0.24", + "line_width": "0.62", + "outer_wall_line_width": "0.62", + "overhang_3_4_speed": [ + "15", + "15", + "15", + "15" + ], + "sparse_infill_line_width": "0.62", + "skin_infill_line_width": "0.62", + "skeleton_infill_line_width": "0.62", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100" + ], + "support_line_width": "0.62", + "top_surface_line_width": "0.62", + "top_surface_speed": [ + "150", + "150", + "150", + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.24_nozzle_0.8.json b/resources/profiles/BBL/process/fdm_process_dual_0.24_nozzle_0.8.json index 2fe366bb68..cf20548536 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.24_nozzle_0.8.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.24_nozzle_0.8.json @@ -1,65 +1,66 @@ { - "type": "process", - "name": "fdm_process_dual_0.24_nozzle_0.8", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30", - "30", - "30", - "30" - ], - "elefant_foot_compensation": "0.15", - "initial_layer_line_width": "0.82", - "initial_layer_print_height": "0.4", - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_line_width": "0.82", - "internal_solid_infill_line_width": "0.82", - "ironing_inset": "0.41", - "initial_layer_infill_speed": [ - "55", - "55", - "55", - "55" - ], - "layer_height": "0.24", - "line_width": "0.82", - "outer_wall_line_width": "0.82", - "overhang_3_4_speed": [ - "25", - "25", - "25", - "25" - ], - "overhang_4_4_speed": [ - "5", - "5", - "5", - "5" - ], - "sparse_infill_line_width": "0.82", - "skin_infill_line_width": "0.82", - "skeleton_infill_line_width": "0.82", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100" - ], - "support_line_width": "0.82", - "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", - "top_surface_speed": [ - "150", - "150", - "150", - "150" - ] -} + "type": "process", + "name": "fdm_process_dual_0.24_nozzle_0.8", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30", + "30", + "30", + "30" + ], + "elefant_foot_compensation": "0.15", + "initial_layer_line_width": "0.82", + "initial_layer_infill_line_width": "0.82", + "initial_layer_print_height": "0.4", + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_line_width": "0.82", + "internal_solid_infill_line_width": "0.82", + "ironing_inset": "0.41", + "initial_layer_infill_speed": [ + "55", + "55", + "55", + "55" + ], + "layer_height": "0.24", + "line_width": "0.82", + "outer_wall_line_width": "0.82", + "overhang_3_4_speed": [ + "25", + "25", + "25", + "25" + ], + "overhang_4_4_speed": [ + "5", + "5", + "5", + "5" + ], + "sparse_infill_line_width": "0.82", + "skin_infill_line_width": "0.82", + "skeleton_infill_line_width": "0.82", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100" + ], + "support_line_width": "0.82", + "top_surface_line_width": "0.82", + "top_surface_pattern": "monotonic", + "top_surface_speed": [ + "150", + "150", + "150", + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.28_nozzle_0.4.json b/resources/profiles/BBL/process/fdm_process_dual_0.28_nozzle_0.4.json index d1b065987b..1124d1fb2c 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.28_nozzle_0.4.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.28_nozzle_0.4.json @@ -1,51 +1,51 @@ { - "type": "process", - "name": "fdm_process_dual_0.28_nozzle_0.4", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "elefant_foot_compensation": "0.15", - "gap_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_speed": [ - "300", - "300", - "300", - "300" - ], - "internal_solid_infill_speed": [ - "250", - "250", - "250", - "250" - ], - "initial_layer_infill_speed": [ - "105", - "105", - "105", - "105" - ], - "layer_height": "0.28", - "sparse_infill_speed": [ - "270", - "270", - "270", - "270" - ], - "support_threshold_angle": "40", - "top_shell_layers": "4", - "top_color_penetration_layers": "4", - "top_shell_thickness": "1.0", - "top_surface_line_width": "0.45" -} + "type": "process", + "name": "fdm_process_dual_0.28_nozzle_0.4", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "elefant_foot_compensation": "0.15", + "gap_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_speed": [ + "300", + "300", + "300", + "300" + ], + "internal_solid_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "initial_layer_infill_speed": [ + "105", + "105", + "105", + "105" + ], + "layer_height": "0.28", + "sparse_infill_speed": [ + "270", + "270", + "270", + "270" + ], + "support_threshold_angle": "40", + "top_shell_layers": "4", + "top_color_penetration_layers": "4", + "top_shell_thickness": "1.0", + "top_surface_line_width": "0.45" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.30_nozzle_0.6.json b/resources/profiles/BBL/process/fdm_process_dual_0.30_nozzle_0.6.json index 3af15e170f..b5c048e4bb 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.30_nozzle_0.6.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.30_nozzle_0.6.json @@ -1,58 +1,59 @@ { - "type": "process", - "name": "fdm_process_dual_0.30_nozzle_0.6", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30", - "30", - "30", - "30" - ], - "elefant_foot_compensation": "0.15", - "initial_layer_line_width": "0.62", - "initial_layer_print_height": "0.3", - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_line_width": "0.62", - "internal_solid_infill_line_width": "0.62", - "ironing_inset": "0.31", - "initial_layer_infill_speed": [ - "55", - "55", - "55", - "55" - ], - "layer_height": "0.3", - "line_width": "0.62", - "outer_wall_line_width": "0.62", - "overhang_3_4_speed": [ - "15", - "15", - "15", - "15" - ], - "sparse_infill_line_width": "0.62", - "skin_infill_line_width": "0.62", - "skeleton_infill_line_width": "0.62", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100" - ], - "support_line_width": "0.62", - "top_surface_line_width": "0.62", - "top_surface_speed": [ - "150", - "150", - "150", - "150" - ] -} + "type": "process", + "name": "fdm_process_dual_0.30_nozzle_0.6", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30", + "30", + "30", + "30" + ], + "elefant_foot_compensation": "0.15", + "initial_layer_line_width": "0.62", + "initial_layer_infill_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_line_width": "0.62", + "internal_solid_infill_line_width": "0.62", + "ironing_inset": "0.31", + "initial_layer_infill_speed": [ + "55", + "55", + "55", + "55" + ], + "layer_height": "0.3", + "line_width": "0.62", + "outer_wall_line_width": "0.62", + "overhang_3_4_speed": [ + "15", + "15", + "15", + "15" + ], + "sparse_infill_line_width": "0.62", + "skin_infill_line_width": "0.62", + "skeleton_infill_line_width": "0.62", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100" + ], + "support_line_width": "0.62", + "top_surface_line_width": "0.62", + "top_surface_speed": [ + "150", + "150", + "150", + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.32_nozzle_0.8.json b/resources/profiles/BBL/process/fdm_process_dual_0.32_nozzle_0.8.json index 96f62ed044..1ada2fc45e 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.32_nozzle_0.8.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.32_nozzle_0.8.json @@ -1,65 +1,66 @@ { - "type": "process", - "name": "fdm_process_dual_0.32_nozzle_0.8", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30", - "30", - "30", - "30" - ], - "elefant_foot_compensation": "0.15", - "initial_layer_line_width": "0.82", - "initial_layer_print_height": "0.4", - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_line_width": "0.82", - "internal_solid_infill_line_width": "0.82", - "ironing_inset": "0.41", - "initial_layer_infill_speed": [ - "55", - "55", - "55", - "55" - ], - "layer_height": "0.32", - "line_width": "0.82", - "outer_wall_line_width": "0.82", - "overhang_3_4_speed": [ - "25", - "25", - "25", - "25" - ], - "overhang_4_4_speed": [ - "5", - "5", - "5", - "5" - ], - "sparse_infill_line_width": "0.82", - "skin_infill_line_width": "0.82", - "skeleton_infill_line_width": "0.82", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100" - ], - "support_line_width": "0.82", - "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", - "top_surface_speed": [ - "150", - "150", - "150", - "150" - ] -} + "type": "process", + "name": "fdm_process_dual_0.32_nozzle_0.8", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30", + "30", + "30", + "30" + ], + "elefant_foot_compensation": "0.15", + "initial_layer_line_width": "0.82", + "initial_layer_infill_line_width": "0.82", + "initial_layer_print_height": "0.4", + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_line_width": "0.82", + "internal_solid_infill_line_width": "0.82", + "ironing_inset": "0.41", + "initial_layer_infill_speed": [ + "55", + "55", + "55", + "55" + ], + "layer_height": "0.32", + "line_width": "0.82", + "outer_wall_line_width": "0.82", + "overhang_3_4_speed": [ + "25", + "25", + "25", + "25" + ], + "overhang_4_4_speed": [ + "5", + "5", + "5", + "5" + ], + "sparse_infill_line_width": "0.82", + "skin_infill_line_width": "0.82", + "skeleton_infill_line_width": "0.82", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100" + ], + "support_line_width": "0.82", + "top_surface_line_width": "0.82", + "top_surface_pattern": "monotonic", + "top_surface_speed": [ + "150", + "150", + "150", + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.36_nozzle_0.6.json b/resources/profiles/BBL/process/fdm_process_dual_0.36_nozzle_0.6.json index 322c77e321..2540101cac 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.36_nozzle_0.6.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.36_nozzle_0.6.json @@ -1,58 +1,59 @@ { - "type": "process", - "name": "fdm_process_dual_0.36_nozzle_0.6", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30", - "30", - "30", - "30" - ], - "elefant_foot_compensation": "0.15", - "initial_layer_line_width": "0.62", - "initial_layer_print_height": "0.3", - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_line_width": "0.62", - "internal_solid_infill_line_width": "0.62", - "ironing_inset": "0.31", - "initial_layer_infill_speed": [ - "55", - "55", - "55", - "55" - ], - "layer_height": "0.36", - "line_width": "0.62", - "outer_wall_line_width": "0.62", - "overhang_3_4_speed": [ - "15", - "15", - "15", - "15" - ], - "sparse_infill_line_width": "0.62", - "skin_infill_line_width": "0.62", - "skeleton_infill_line_width": "0.62", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100" - ], - "support_line_width": "0.62", - "top_surface_line_width": "0.62", - "top_surface_speed": [ - "150", - "150", - "150", - "150" - ] -} + "type": "process", + "name": "fdm_process_dual_0.36_nozzle_0.6", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30", + "30", + "30", + "30" + ], + "elefant_foot_compensation": "0.15", + "initial_layer_line_width": "0.62", + "initial_layer_infill_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_line_width": "0.62", + "internal_solid_infill_line_width": "0.62", + "ironing_inset": "0.31", + "initial_layer_infill_speed": [ + "55", + "55", + "55", + "55" + ], + "layer_height": "0.36", + "line_width": "0.62", + "outer_wall_line_width": "0.62", + "overhang_3_4_speed": [ + "15", + "15", + "15", + "15" + ], + "sparse_infill_line_width": "0.62", + "skin_infill_line_width": "0.62", + "skeleton_infill_line_width": "0.62", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100" + ], + "support_line_width": "0.62", + "top_surface_line_width": "0.62", + "top_surface_speed": [ + "150", + "150", + "150", + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.40_nozzle_0.8.json b/resources/profiles/BBL/process/fdm_process_dual_0.40_nozzle_0.8.json index b99854bb45..6cb42b32ed 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.40_nozzle_0.8.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.40_nozzle_0.8.json @@ -1,65 +1,66 @@ { - "type": "process", - "name": "fdm_process_dual_0.40_nozzle_0.8", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30", - "30", - "30", - "30" - ], - "elefant_foot_compensation": "0.15", - "initial_layer_line_width": "0.82", - "initial_layer_print_height": "0.4", - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_line_width": "0.82", - "internal_solid_infill_line_width": "0.82", - "ironing_inset": "0.41", - "initial_layer_infill_speed": [ - "55", - "55", - "55", - "55" - ], - "layer_height": "0.4", - "line_width": "0.82", - "outer_wall_line_width": "0.82", - "overhang_3_4_speed": [ - "25", - "25", - "25", - "25" - ], - "overhang_4_4_speed": [ - "5", - "5", - "5", - "5" - ], - "sparse_infill_line_width": "0.82", - "skin_infill_line_width": "0.82", - "skeleton_infill_line_width": "0.82", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100" - ], - "support_line_width": "0.82", - "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", - "top_surface_speed": [ - "150", - "150", - "150", - "150" - ] -} + "type": "process", + "name": "fdm_process_dual_0.40_nozzle_0.8", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30", + "30", + "30", + "30" + ], + "elefant_foot_compensation": "0.15", + "initial_layer_line_width": "0.82", + "initial_layer_infill_line_width": "0.82", + "initial_layer_print_height": "0.4", + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_line_width": "0.82", + "internal_solid_infill_line_width": "0.82", + "ironing_inset": "0.41", + "initial_layer_infill_speed": [ + "55", + "55", + "55", + "55" + ], + "layer_height": "0.4", + "line_width": "0.82", + "outer_wall_line_width": "0.82", + "overhang_3_4_speed": [ + "25", + "25", + "25", + "25" + ], + "overhang_4_4_speed": [ + "5", + "5", + "5", + "5" + ], + "sparse_infill_line_width": "0.82", + "skin_infill_line_width": "0.82", + "skeleton_infill_line_width": "0.82", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100" + ], + "support_line_width": "0.82", + "top_surface_line_width": "0.82", + "top_surface_pattern": "monotonic", + "top_surface_speed": [ + "150", + "150", + "150", + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.42_nozzle_0.6.json b/resources/profiles/BBL/process/fdm_process_dual_0.42_nozzle_0.6.json index 398536fea8..fc0050582d 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.42_nozzle_0.6.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.42_nozzle_0.6.json @@ -1,58 +1,59 @@ { - "type": "process", - "name": "fdm_process_dual_0.42_nozzle_0.6", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30", - "30", - "30", - "30" - ], - "elefant_foot_compensation": "0.15", - "initial_layer_line_width": "0.62", - "initial_layer_print_height": "0.3", - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_line_width": "0.62", - "internal_solid_infill_line_width": "0.62", - "ironing_inset": "0.31", - "initial_layer_infill_speed": [ - "55", - "55", - "55", - "55" - ], - "layer_height": "0.42", - "line_width": "0.62", - "outer_wall_line_width": "0.62", - "overhang_3_4_speed": [ - "15", - "15", - "15", - "15" - ], - "sparse_infill_line_width": "0.62", - "skin_infill_line_width": "0.62", - "skeleton_infill_line_width": "0.62", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100" - ], - "support_line_width": "0.62", - "top_surface_line_width": "0.62", - "top_surface_speed": [ - "150", - "150", - "150", - "150" - ] -} + "type": "process", + "name": "fdm_process_dual_0.42_nozzle_0.6", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30", + "30", + "30", + "30" + ], + "elefant_foot_compensation": "0.15", + "initial_layer_line_width": "0.62", + "initial_layer_infill_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_line_width": "0.62", + "internal_solid_infill_line_width": "0.62", + "ironing_inset": "0.31", + "initial_layer_infill_speed": [ + "55", + "55", + "55", + "55" + ], + "layer_height": "0.42", + "line_width": "0.62", + "outer_wall_line_width": "0.62", + "overhang_3_4_speed": [ + "15", + "15", + "15", + "15" + ], + "sparse_infill_line_width": "0.62", + "skin_infill_line_width": "0.62", + "skeleton_infill_line_width": "0.62", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100" + ], + "support_line_width": "0.62", + "top_surface_line_width": "0.62", + "top_surface_speed": [ + "150", + "150", + "150", + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.48_nozzle_0.8.json b/resources/profiles/BBL/process/fdm_process_dual_0.48_nozzle_0.8.json index 27bc5afa0e..74c6d15c86 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.48_nozzle_0.8.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.48_nozzle_0.8.json @@ -1,65 +1,66 @@ { - "type": "process", - "name": "fdm_process_dual_0.48_nozzle_0.8", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30", - "30", - "30", - "30" - ], - "elefant_foot_compensation": "0.15", - "initial_layer_line_width": "0.82", - "initial_layer_print_height": "0.4", - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_line_width": "0.82", - "internal_solid_infill_line_width": "0.82", - "ironing_inset": "0.41", - "initial_layer_infill_speed": [ - "55", - "55", - "55", - "55" - ], - "layer_height": "0.48", - "line_width": "0.82", - "outer_wall_line_width": "0.82", - "overhang_3_4_speed": [ - "25", - "25", - "25", - "25" - ], - "overhang_4_4_speed": [ - "5", - "5", - "5", - "5" - ], - "sparse_infill_line_width": "0.82", - "skin_infill_line_width": "0.82", - "skeleton_infill_line_width": "0.82", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100" - ], - "support_line_width": "0.82", - "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", - "top_surface_speed": [ - "150", - "150", - "150", - "150" - ] -} + "type": "process", + "name": "fdm_process_dual_0.48_nozzle_0.8", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30", + "30", + "30", + "30" + ], + "elefant_foot_compensation": "0.15", + "initial_layer_line_width": "0.82", + "initial_layer_infill_line_width": "0.82", + "initial_layer_print_height": "0.4", + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_line_width": "0.82", + "internal_solid_infill_line_width": "0.82", + "ironing_inset": "0.41", + "initial_layer_infill_speed": [ + "55", + "55", + "55", + "55" + ], + "layer_height": "0.48", + "line_width": "0.82", + "outer_wall_line_width": "0.82", + "overhang_3_4_speed": [ + "25", + "25", + "25", + "25" + ], + "overhang_4_4_speed": [ + "5", + "5", + "5", + "5" + ], + "sparse_infill_line_width": "0.82", + "skin_infill_line_width": "0.82", + "skeleton_infill_line_width": "0.82", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100" + ], + "support_line_width": "0.82", + "top_surface_line_width": "0.82", + "top_surface_pattern": "monotonic", + "top_surface_speed": [ + "150", + "150", + "150", + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_0.56_nozzle_0.8.json b/resources/profiles/BBL/process/fdm_process_dual_0.56_nozzle_0.8.json index 6837c965f4..8792ef84e8 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_0.56_nozzle_0.8.json +++ b/resources/profiles/BBL/process/fdm_process_dual_0.56_nozzle_0.8.json @@ -1,65 +1,66 @@ { - "type": "process", - "name": "fdm_process_dual_0.56_nozzle_0.8", - "inherits": "fdm_process_dual_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30", - "30", - "30", - "30" - ], - "elefant_foot_compensation": "0.15", - "initial_layer_line_width": "0.82", - "initial_layer_print_height": "0.4", - "initial_layer_speed": [ - "20", - "20", - "20", - "20" - ], - "inner_wall_line_width": "0.82", - "internal_solid_infill_line_width": "0.82", - "ironing_inset": "0.41", - "initial_layer_infill_speed": [ - "55", - "55", - "55", - "55" - ], - "layer_height": "0.56", - "line_width": "0.82", - "outer_wall_line_width": "0.82", - "overhang_3_4_speed": [ - "25", - "25", - "25", - "25" - ], - "overhang_4_4_speed": [ - "5", - "5", - "5", - "5" - ], - "sparse_infill_line_width": "0.82", - "skin_infill_line_width": "0.82", - "skeleton_infill_line_width": "0.82", - "sparse_infill_speed": [ - "100", - "100", - "100", - "100" - ], - "support_line_width": "0.82", - "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", - "top_surface_speed": [ - "150", - "150", - "150", - "150" - ] -} + "type": "process", + "name": "fdm_process_dual_0.56_nozzle_0.8", + "inherits": "fdm_process_dual_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30", + "30", + "30", + "30" + ], + "elefant_foot_compensation": "0.15", + "initial_layer_line_width": "0.82", + "initial_layer_infill_line_width": "0.82", + "initial_layer_print_height": "0.4", + "initial_layer_speed": [ + "20", + "20", + "20", + "20" + ], + "inner_wall_line_width": "0.82", + "internal_solid_infill_line_width": "0.82", + "ironing_inset": "0.41", + "initial_layer_infill_speed": [ + "55", + "55", + "55", + "55" + ], + "layer_height": "0.56", + "line_width": "0.82", + "outer_wall_line_width": "0.82", + "overhang_3_4_speed": [ + "25", + "25", + "25", + "25" + ], + "overhang_4_4_speed": [ + "5", + "5", + "5", + "5" + ], + "sparse_infill_line_width": "0.82", + "skin_infill_line_width": "0.82", + "skeleton_infill_line_width": "0.82", + "sparse_infill_speed": [ + "100", + "100", + "100", + "100" + ], + "support_line_width": "0.82", + "top_surface_line_width": "0.82", + "top_surface_pattern": "monotonic", + "top_surface_speed": [ + "150", + "150", + "150", + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_dual_common.json b/resources/profiles/BBL/process/fdm_process_dual_common.json index b247f2ffb1..1508b7620a 100644 --- a/resources/profiles/BBL/process/fdm_process_dual_common.json +++ b/resources/profiles/BBL/process/fdm_process_dual_common.json @@ -4,7 +4,6 @@ "inherits": "fdm_process_common", "from": "system", "instantiation": "false", - "enable_wrapping_detection": "0", "bridge_speed": [ "50", "50", @@ -35,6 +34,24 @@ "50", "50" ], + "initial_layer_speed": [ + "30", + "30", + "30", + "30" + ], + "inner_wall_speed": [ + "150", + "150", + "150", + "150" + ], + "internal_solid_infill_speed": [ + "150", + "150", + "150", + "150" + ], "initial_layer_travel_acceleration": [ "6000", "6000", @@ -53,29 +70,17 @@ "60", "60" ], - "initial_layer_speed": [ - "30", - "30", - "30", - "30" - ], "inner_wall_acceleration": [ "0", "0", "0", "0" ], - "inner_wall_speed": [ - "150", - "150", - "150", - "150" - ], - "internal_solid_infill_speed": [ - "150", - "150", - "150", - "150" + "outer_wall_speed": [ + "120", + "120", + "120", + "120" ], "outer_wall_acceleration": [ "5000", @@ -83,12 +88,6 @@ "5000", "5000" ], - "outer_wall_speed": [ - "120", - "120", - "120", - "120" - ], "overhang_1_4_speed": [ "0", "0", @@ -113,6 +112,7 @@ "10", "10" ], + "prime_tower_flat_ironing": "1", "print_extruder_id": [ "1", "1", @@ -125,7 +125,24 @@ "Direct Drive Standard", "Direct Drive High Flow" ], - "prime_tower_flat_ironing": "1", + "sparse_infill_speed": [ + "250", + "250", + "250", + "250" + ], + "support_interface_speed": [ + "80", + "80", + "80", + "80" + ], + "support_speed": [ + "150", + "150", + "150", + "150" + ], "slowdown_start_height": [ "0", "0", @@ -180,23 +197,17 @@ "100%", "100%" ], - "sparse_infill_speed": [ - "250", - "250", - "250", - "250" + "top_surface_speed": [ + "200", + "200", + "200", + "200" ], - "support_interface_speed": [ - "80", - "80", - "80", - "80" - ], - "support_speed": [ - "150", - "150", - "150", - "150" + "top_solid_infill_flow_ratio": [ + "1", + "1", + "1", + "1" ], "travel_acceleration": [ "10000", @@ -204,17 +215,11 @@ "10000", "10000" ], - "top_surface_acceleration": [ - "2000", - "2000", - "2000", - "2000" - ], - "top_surface_speed": [ - "200", - "200", - "200", - "200" + "travel_short_distance_acceleration": [ + "250", + "250", + "250", + "250" ], "travel_speed": [ "500", @@ -222,6 +227,12 @@ "500", "500" ], + "top_surface_acceleration": [ + "2000", + "2000", + "2000", + "2000" + ], "travel_speed_z": [ "0", "0", @@ -234,5 +245,6 @@ "80%", "80%" ], + "monotonic_travel_into_wall": "45.0", "z_direction_outwall_speed_continuous": "1" } diff --git a/resources/profiles/BBL/process/fdm_process_single_0.06_nozzle_0.2.json b/resources/profiles/BBL/process/fdm_process_single_0.06_nozzle_0.2.json index 4c3a6b3404..042c2bda0d 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.06_nozzle_0.2.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.06_nozzle_0.2.json @@ -1,40 +1,41 @@ { - "type": "process", - "name": "fdm_process_single_0.06_nozzle_0.2", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bottom_shell_layers": "5", - "bottom_color_penetration_layers": "5", - "bridge_flow": "1", - "initial_layer_infill_speed": [ - "70" - ], - "initial_layer_line_width": "0.25", - "initial_layer_print_height": "0.1", - "initial_layer_speed": [ - "40" - ], - "inner_wall_line_width": "0.22", - "internal_solid_infill_line_width": "0.22", - "ironing_inset": "0.11", - "layer_height": "0.06", - "line_width": "0.22", - "outer_wall_line_width": "0.22", - "sparse_infill_line_width": "0.22", - "skin_infill_line_width": "0.22", - "skeleton_infill_line_width": "0.22", - "sparse_infill_speed": [ - "100" - ], - "support_bottom_z_distance": "0.06", - "support_line_width": "0.22", - "support_top_z_distance": "0.06", - "top_shell_layers": "7", - "top_color_penetration_layers": "7", - "top_surface_line_width": "0.22", - "top_surface_speed": [ - "150" - ], - "wall_loops": "4" -} + "type": "process", + "name": "fdm_process_single_0.06_nozzle_0.2", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bottom_shell_layers": "5", + "bottom_color_penetration_layers": "5", + "bridge_flow": "1", + "initial_layer_infill_speed": [ + "70" + ], + "initial_layer_line_width": "0.25", + "initial_layer_infill_line_width": "0.25", + "initial_layer_print_height": "0.1", + "initial_layer_speed": [ + "40" + ], + "inner_wall_line_width": "0.22", + "internal_solid_infill_line_width": "0.22", + "ironing_inset": "0.11", + "layer_height": "0.06", + "line_width": "0.22", + "outer_wall_line_width": "0.22", + "sparse_infill_line_width": "0.22", + "skin_infill_line_width": "0.22", + "skeleton_infill_line_width": "0.22", + "sparse_infill_speed": [ + "100" + ], + "support_bottom_z_distance": "0.06", + "support_line_width": "0.22", + "support_top_z_distance": "0.06", + "top_shell_layers": "7", + "top_color_penetration_layers": "7", + "top_surface_line_width": "0.22", + "top_surface_speed": [ + "150" + ], + "wall_loops": "4" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.08.json b/resources/profiles/BBL/process/fdm_process_single_0.08.json index ea4015ae57..416c7556ae 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.08.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.08.json @@ -1,48 +1,48 @@ { - "type": "process", - "name": "fdm_process_single_0.08", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bottom_shell_layers": "7", - "bottom_color_penetration_layers": "7", - "bridge_flow": "1", - "elefant_foot_compensation": "0.15", - "gap_infill_speed": [ - "350" - ], - "initial_layer_infill_speed": [ - "105" - ], - "initial_layer_speed": [ - "50" - ], - "inner_wall_speed": [ - "350" - ], - "internal_solid_infill_speed": [ - "350" - ], - "ironing_flow": "8%", - "layer_height": "0.08", - "outer_wall_speed": [ - "200" - ], - "overhang_1_4_speed": [ - "60" - ], - "overhang_2_4_speed": [ - "30" - ], - "overhang_3_4_speed": [ - "10" - ], - "sparse_infill_speed": [ - "450" - ], - "support_bottom_z_distance": "0.08", - "support_threshold_angle": "15", - "support_top_z_distance": "0.08", - "top_shell_layers": "9", - "top_color_penetration_layers": "9" -} + "type": "process", + "name": "fdm_process_single_0.08", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bottom_shell_layers": "7", + "bottom_color_penetration_layers": "7", + "bridge_flow": "1", + "elefant_foot_compensation": "0.15", + "gap_infill_speed": [ + "350" + ], + "initial_layer_infill_speed": [ + "105" + ], + "initial_layer_speed": [ + "50" + ], + "inner_wall_speed": [ + "350" + ], + "internal_solid_infill_speed": [ + "350" + ], + "ironing_flow": "8%", + "layer_height": "0.08", + "outer_wall_speed": [ + "200" + ], + "overhang_1_4_speed": [ + "60" + ], + "overhang_2_4_speed": [ + "30" + ], + "overhang_3_4_speed": [ + "10" + ], + "sparse_infill_speed": [ + "450" + ], + "support_bottom_z_distance": "0.08", + "support_threshold_angle": "15", + "support_top_z_distance": "0.08", + "top_shell_layers": "9", + "top_color_penetration_layers": "9" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.08_nozzle_0.2.json b/resources/profiles/BBL/process/fdm_process_single_0.08_nozzle_0.2.json index 1ecdb07d2f..ce740cb37d 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.08_nozzle_0.2.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.08_nozzle_0.2.json @@ -1,40 +1,41 @@ { - "type": "process", - "name": "fdm_process_single_0.08_nozzle_0.2", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bottom_shell_layers": "5", - "bottom_color_penetration_layers": "5", - "bridge_flow": "1", - "initial_layer_infill_speed": [ - "70" - ], - "initial_layer_line_width": "0.25", - "initial_layer_print_height": "0.1", - "initial_layer_speed": [ - "40" - ], - "inner_wall_line_width": "0.22", - "internal_solid_infill_line_width": "0.22", - "ironing_inset": "0.11", - "layer_height": "0.08", - "line_width": "0.22", - "outer_wall_line_width": "0.22", - "sparse_infill_line_width": "0.22", - "skin_infill_line_width": "0.22", - "skeleton_infill_line_width": "0.22", - "sparse_infill_speed": [ - "100" - ], - "support_bottom_z_distance": "0.08", - "support_line_width": "0.22", - "support_top_z_distance": "0.08", - "top_shell_layers": "7", - "top_color_penetration_layers": "7", - "top_surface_line_width": "0.22", - "top_surface_speed": [ - "150" - ], - "wall_loops": "4" -} + "type": "process", + "name": "fdm_process_single_0.08_nozzle_0.2", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bottom_shell_layers": "5", + "bottom_color_penetration_layers": "5", + "bridge_flow": "1", + "initial_layer_infill_speed": [ + "70" + ], + "initial_layer_line_width": "0.25", + "initial_layer_infill_line_width": "0.25", + "initial_layer_print_height": "0.1", + "initial_layer_speed": [ + "40" + ], + "inner_wall_line_width": "0.22", + "internal_solid_infill_line_width": "0.22", + "ironing_inset": "0.11", + "layer_height": "0.08", + "line_width": "0.22", + "outer_wall_line_width": "0.22", + "sparse_infill_line_width": "0.22", + "skin_infill_line_width": "0.22", + "skeleton_infill_line_width": "0.22", + "sparse_infill_speed": [ + "100" + ], + "support_bottom_z_distance": "0.08", + "support_line_width": "0.22", + "support_top_z_distance": "0.08", + "top_shell_layers": "7", + "top_color_penetration_layers": "7", + "top_surface_line_width": "0.22", + "top_surface_speed": [ + "150" + ], + "wall_loops": "4" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.10_nozzle_0.2.json b/resources/profiles/BBL/process/fdm_process_single_0.10_nozzle_0.2.json index 12a60401c2..a8ff4a3c4f 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.10_nozzle_0.2.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.10_nozzle_0.2.json @@ -1,40 +1,41 @@ { - "type": "process", - "name": "fdm_process_single_0.10_nozzle_0.2", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bottom_shell_layers": "5", - "bottom_color_penetration_layers": "5", - "bridge_flow": "1", - "initial_layer_infill_speed": [ - "70" - ], - "initial_layer_line_width": "0.25", - "initial_layer_print_height": "0.1", - "initial_layer_speed": [ - "40" - ], - "inner_wall_line_width": "0.22", - "internal_solid_infill_line_width": "0.22", - "ironing_inset": "0.11", - "layer_height": "0.1", - "line_width": "0.22", - "outer_wall_line_width": "0.22", - "sparse_infill_line_width": "0.22", - "skin_infill_line_width": "0.22", - "skeleton_infill_line_width": "0.22", - "sparse_infill_speed": [ - "100" - ], - "support_bottom_z_distance": "0.1", - "support_line_width": "0.22", - "support_top_z_distance": "0.1", - "top_shell_layers": "7", - "top_color_penetration_layers": "7", - "top_surface_line_width": "0.22", - "top_surface_speed": [ - "150" - ], - "wall_loops": "4" -} + "type": "process", + "name": "fdm_process_single_0.10_nozzle_0.2", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bottom_shell_layers": "5", + "bottom_color_penetration_layers": "5", + "bridge_flow": "1", + "initial_layer_infill_speed": [ + "70" + ], + "initial_layer_line_width": "0.25", + "initial_layer_infill_line_width": "0.25", + "initial_layer_print_height": "0.1", + "initial_layer_speed": [ + "40" + ], + "inner_wall_line_width": "0.22", + "internal_solid_infill_line_width": "0.22", + "ironing_inset": "0.11", + "layer_height": "0.1", + "line_width": "0.22", + "outer_wall_line_width": "0.22", + "sparse_infill_line_width": "0.22", + "skin_infill_line_width": "0.22", + "skeleton_infill_line_width": "0.22", + "sparse_infill_speed": [ + "100" + ], + "support_bottom_z_distance": "0.1", + "support_line_width": "0.22", + "support_top_z_distance": "0.1", + "top_shell_layers": "7", + "top_color_penetration_layers": "7", + "top_surface_line_width": "0.22", + "top_surface_speed": [ + "150" + ], + "wall_loops": "4" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.12.json b/resources/profiles/BBL/process/fdm_process_single_0.12.json index 352389dd4c..b418f09dd2 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.12.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.12.json @@ -1,48 +1,48 @@ { - "type": "process", - "name": "fdm_process_single_0.12", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bottom_shell_layers": "5", - "bottom_color_penetration_layers": "5", - "bridge_flow": "1", - "elefant_foot_compensation": "0.15", - "gap_infill_speed": [ - "350" - ], - "initial_layer_infill_speed": [ - "105" - ], - "initial_layer_speed": [ - "50" - ], - "inner_wall_speed": [ - "350" - ], - "internal_solid_infill_speed": [ - "350" - ], - "layer_height": "0.12", - "outer_wall_speed": [ - "200" - ], - "overhang_1_4_speed": [ - "60" - ], - "overhang_2_4_speed": [ - "30" - ], - "overhang_3_4_speed": [ - "10" - ], - "sparse_infill_speed": [ - "430" - ], - "support_bottom_z_distance": "0.12", - "support_threshold_angle": "20", - "support_top_z_distance": "0.12", - "top_shell_layers": "5", - "top_color_penetration_layers": "5", - "top_shell_thickness": "0.6" -} + "type": "process", + "name": "fdm_process_single_0.12", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bottom_shell_layers": "5", + "bottom_color_penetration_layers": "5", + "bridge_flow": "1", + "elefant_foot_compensation": "0.15", + "gap_infill_speed": [ + "350" + ], + "initial_layer_infill_speed": [ + "105" + ], + "initial_layer_speed": [ + "50" + ], + "inner_wall_speed": [ + "350" + ], + "internal_solid_infill_speed": [ + "350" + ], + "layer_height": "0.12", + "outer_wall_speed": [ + "200" + ], + "overhang_1_4_speed": [ + "60" + ], + "overhang_2_4_speed": [ + "30" + ], + "overhang_3_4_speed": [ + "10" + ], + "sparse_infill_speed": [ + "430" + ], + "support_bottom_z_distance": "0.12", + "support_threshold_angle": "20", + "support_top_z_distance": "0.12", + "top_shell_layers": "5", + "top_color_penetration_layers": "5", + "top_shell_thickness": "0.6" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.12_nozzle_0.2.json b/resources/profiles/BBL/process/fdm_process_single_0.12_nozzle_0.2.json index 0d65394274..b298d08e01 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.12_nozzle_0.2.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.12_nozzle_0.2.json @@ -1,40 +1,41 @@ { - "type": "process", - "name": "fdm_process_single_0.12_nozzle_0.2", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bottom_shell_layers": "5", - "bottom_color_penetration_layers": "5", - "bridge_flow": "1", - "initial_layer_infill_speed": [ - "70" - ], - "initial_layer_line_width": "0.25", - "initial_layer_print_height": "0.1", - "initial_layer_speed": [ - "40" - ], - "inner_wall_line_width": "0.22", - "internal_solid_infill_line_width": "0.22", - "ironing_inset": "0.11", - "layer_height": "0.12", - "line_width": "0.22", - "outer_wall_line_width": "0.22", - "sparse_infill_line_width": "0.22", - "skin_infill_line_width": "0.22", - "skeleton_infill_line_width": "0.22", - "sparse_infill_speed": [ - "100" - ], - "support_bottom_z_distance": "0.12", - "support_line_width": "0.22", - "support_top_z_distance": "0.12", - "top_shell_layers": "7", - "top_color_penetration_layers": "7", - "top_surface_line_width": "0.22", - "top_surface_speed": [ - "150" - ], - "wall_loops": "4" -} + "type": "process", + "name": "fdm_process_single_0.12_nozzle_0.2", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bottom_shell_layers": "5", + "bottom_color_penetration_layers": "5", + "bridge_flow": "1", + "initial_layer_infill_speed": [ + "70" + ], + "initial_layer_line_width": "0.25", + "initial_layer_infill_line_width": "0.25", + "initial_layer_print_height": "0.1", + "initial_layer_speed": [ + "40" + ], + "inner_wall_line_width": "0.22", + "internal_solid_infill_line_width": "0.22", + "ironing_inset": "0.11", + "layer_height": "0.12", + "line_width": "0.22", + "outer_wall_line_width": "0.22", + "sparse_infill_line_width": "0.22", + "skin_infill_line_width": "0.22", + "skeleton_infill_line_width": "0.22", + "sparse_infill_speed": [ + "100" + ], + "support_bottom_z_distance": "0.12", + "support_line_width": "0.22", + "support_top_z_distance": "0.12", + "top_shell_layers": "7", + "top_color_penetration_layers": "7", + "top_surface_line_width": "0.22", + "top_surface_speed": [ + "150" + ], + "wall_loops": "4" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.14_nozzle_0.2.json b/resources/profiles/BBL/process/fdm_process_single_0.14_nozzle_0.2.json index 48d3fa2f44..27bce376cc 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.14_nozzle_0.2.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.14_nozzle_0.2.json @@ -1,40 +1,41 @@ { - "type": "process", - "name": "fdm_process_single_0.14_nozzle_0.2", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bottom_shell_layers": "5", - "bottom_color_penetration_layers": "5", - "bridge_flow": "1", - "initial_layer_infill_speed": [ - "70" - ], - "initial_layer_line_width": "0.25", - "initial_layer_print_height": "0.1", - "initial_layer_speed": [ - "40" - ], - "inner_wall_line_width": "0.22", - "internal_solid_infill_line_width": "0.22", - "ironing_inset": "0.11", - "layer_height": "0.14", - "line_width": "0.22", - "outer_wall_line_width": "0.22", - "sparse_infill_line_width": "0.22", - "skin_infill_line_width": "0.22", - "skeleton_infill_line_width": "0.22", - "sparse_infill_speed": [ - "100" - ], - "support_bottom_z_distance": "0.14", - "support_line_width": "0.22", - "support_top_z_distance": "0.14", - "top_shell_layers": "7", - "top_color_penetration_layers": "7", - "top_surface_line_width": "0.22", - "top_surface_speed": [ - "150" - ], - "wall_loops": "4" -} + "type": "process", + "name": "fdm_process_single_0.14_nozzle_0.2", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bottom_shell_layers": "5", + "bottom_color_penetration_layers": "5", + "bridge_flow": "1", + "initial_layer_infill_speed": [ + "70" + ], + "initial_layer_line_width": "0.25", + "initial_layer_infill_line_width": "0.25", + "initial_layer_print_height": "0.1", + "initial_layer_speed": [ + "40" + ], + "inner_wall_line_width": "0.22", + "internal_solid_infill_line_width": "0.22", + "ironing_inset": "0.11", + "layer_height": "0.14", + "line_width": "0.22", + "outer_wall_line_width": "0.22", + "sparse_infill_line_width": "0.22", + "skin_infill_line_width": "0.22", + "skeleton_infill_line_width": "0.22", + "sparse_infill_speed": [ + "100" + ], + "support_bottom_z_distance": "0.14", + "support_line_width": "0.22", + "support_top_z_distance": "0.14", + "top_shell_layers": "7", + "top_color_penetration_layers": "7", + "top_surface_line_width": "0.22", + "top_surface_speed": [ + "150" + ], + "wall_loops": "4" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.16.json b/resources/profiles/BBL/process/fdm_process_single_0.16.json index a288183508..a347766b0a 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.16.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.16.json @@ -1,48 +1,48 @@ { - "type": "process", - "name": "fdm_process_single_0.16", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bottom_shell_layers": "4", - "bottom_color_penetration_layers": "4", - "bridge_flow": "1", - "elefant_foot_compensation": "0.15", - "gap_infill_speed": [ - "300" - ], - "initial_layer_infill_speed": [ - "105" - ], - "initial_layer_speed": [ - "50" - ], - "inner_wall_speed": [ - "300" - ], - "internal_solid_infill_speed": [ - "300" - ], - "layer_height": "0.16", - "outer_wall_speed": [ - "200" - ], - "overhang_1_4_speed": [ - "60" - ], - "overhang_2_4_speed": [ - "30" - ], - "overhang_3_4_speed": [ - "10" - ], - "sparse_infill_speed": [ - "330" - ], - "support_bottom_z_distance": "0.16", - "support_threshold_angle": "25", - "support_top_z_distance": "0.16", - "top_shell_layers": "6", - "top_color_penetration_layers": "6", - "top_shell_thickness": "1.0" -} + "type": "process", + "name": "fdm_process_single_0.16", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bottom_shell_layers": "4", + "bottom_color_penetration_layers": "4", + "bridge_flow": "1", + "elefant_foot_compensation": "0.15", + "gap_infill_speed": [ + "300" + ], + "initial_layer_infill_speed": [ + "105" + ], + "initial_layer_speed": [ + "50" + ], + "inner_wall_speed": [ + "300" + ], + "internal_solid_infill_speed": [ + "300" + ], + "layer_height": "0.16", + "outer_wall_speed": [ + "200" + ], + "overhang_1_4_speed": [ + "60" + ], + "overhang_2_4_speed": [ + "30" + ], + "overhang_3_4_speed": [ + "10" + ], + "sparse_infill_speed": [ + "330" + ], + "support_bottom_z_distance": "0.16", + "support_threshold_angle": "25", + "support_top_z_distance": "0.16", + "top_shell_layers": "6", + "top_color_penetration_layers": "6", + "top_shell_thickness": "1.0" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.18_nozzle_0.6.json b/resources/profiles/BBL/process/fdm_process_single_0.18_nozzle_0.6.json index 928a4ba1a4..d9d490c5c6 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.18_nozzle_0.6.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.18_nozzle_0.6.json @@ -1,41 +1,42 @@ { - "type": "process", - "name": "fdm_process_single_0.18_nozzle_0.6", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30" - ], - "initial_layer_infill_speed": [ - "55" - ], - "initial_layer_line_width": "0.62", - "initial_layer_print_height": "0.3", - "initial_layer_speed": [ - "35" - ], - "inner_wall_line_width": "0.62", - "internal_solid_infill_line_width": "0.62", - "ironing_inset": "0.31", - "layer_height": "0.18", - "line_width": "0.62", - "outer_wall_line_width": "0.62", - "overhang_3_4_speed": [ - "15" - ], - "sparse_infill_line_width": "0.62", - "skin_infill_line_width": "0.62", - "skeleton_infill_line_width": "0.62", - "sparse_infill_speed": [ - "100" - ], - "support_bottom_z_distance": "0.18", - "support_line_width": "0.62", - "support_top_z_distance": "0.18", - "top_surface_line_width": "0.62", - "top_surface_speed": [ - "150" - ] -} + "type": "process", + "name": "fdm_process_single_0.18_nozzle_0.6", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30" + ], + "initial_layer_infill_speed": [ + "55" + ], + "initial_layer_line_width": "0.62", + "initial_layer_infill_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": [ + "35" + ], + "inner_wall_line_width": "0.62", + "internal_solid_infill_line_width": "0.62", + "ironing_inset": "0.31", + "layer_height": "0.18", + "line_width": "0.62", + "outer_wall_line_width": "0.62", + "overhang_3_4_speed": [ + "15" + ], + "sparse_infill_line_width": "0.62", + "skin_infill_line_width": "0.62", + "skeleton_infill_line_width": "0.62", + "sparse_infill_speed": [ + "100" + ], + "support_bottom_z_distance": "0.18", + "support_line_width": "0.62", + "support_top_z_distance": "0.18", + "top_surface_line_width": "0.62", + "top_surface_speed": [ + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.20.json b/resources/profiles/BBL/process/fdm_process_single_0.20.json index 12dfa47697..7be86d5e24 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.20.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.20.json @@ -1,33 +1,33 @@ { - "type": "process", - "name": "fdm_process_single_0.20", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "elefant_foot_compensation": "0.15", - "gap_infill_speed": [ - "250" - ], - "initial_layer_infill_speed": [ - "105" - ], - "initial_layer_speed": [ - "50" - ], - "inner_wall_speed": [ - "300" - ], - "internal_solid_infill_speed": [ - "250" - ], - "outer_wall_speed": [ - "200" - ], - "sparse_infill_speed": [ - "270" - ], - "top_shell_layers": "5", - "top_color_penetration_layers": "5", - "top_shell_thickness": "1.0" -} + "type": "process", + "name": "fdm_process_single_0.20", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "elefant_foot_compensation": "0.15", + "gap_infill_speed": [ + "250" + ], + "initial_layer_infill_speed": [ + "105" + ], + "initial_layer_speed": [ + "50" + ], + "inner_wall_speed": [ + "300" + ], + "internal_solid_infill_speed": [ + "250" + ], + "outer_wall_speed": [ + "200" + ], + "sparse_infill_speed": [ + "270" + ], + "top_shell_layers": "5", + "top_color_penetration_layers": "5", + "top_shell_thickness": "1.0" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.24.json b/resources/profiles/BBL/process/fdm_process_single_0.24.json index e17fe3620a..4c87c79cb7 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.24.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.24.json @@ -1,36 +1,36 @@ { - "type": "process", - "name": "fdm_process_single_0.24", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "elefant_foot_compensation": "0.15", - "gap_infill_speed": [ - "230" - ], - "initial_layer_infill_speed": [ - "105" - ], - "initial_layer_speed": [ - "50" - ], - "inner_wall_speed": [ - "230" - ], - "internal_solid_infill_speed": [ - "230" - ], - "layer_height": "0.24", - "outer_wall_speed": [ - "200" - ], - "sparse_infill_speed": [ - "230" - ], - "support_threshold_angle": "35", - "top_shell_layers": "4", - "top_color_penetration_layers": "4", - "top_shell_thickness": "1.0", - "top_surface_line_width": "0.45" -} + "type": "process", + "name": "fdm_process_single_0.24", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "elefant_foot_compensation": "0.15", + "gap_infill_speed": [ + "230" + ], + "initial_layer_infill_speed": [ + "105" + ], + "initial_layer_speed": [ + "50" + ], + "inner_wall_speed": [ + "230" + ], + "internal_solid_infill_speed": [ + "230" + ], + "layer_height": "0.24", + "outer_wall_speed": [ + "200" + ], + "sparse_infill_speed": [ + "230" + ], + "support_threshold_angle": "35", + "top_shell_layers": "4", + "top_color_penetration_layers": "4", + "top_shell_thickness": "1.0", + "top_surface_line_width": "0.45" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.24_nozzle_0.6.json b/resources/profiles/BBL/process/fdm_process_single_0.24_nozzle_0.6.json index a0f2a45f11..f1ca3158c2 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.24_nozzle_0.6.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.24_nozzle_0.6.json @@ -1,39 +1,40 @@ { - "type": "process", - "name": "fdm_process_single_0.24_nozzle_0.6", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30" - ], - "initial_layer_infill_speed": [ - "55" - ], - "initial_layer_line_width": "0.62", - "initial_layer_print_height": "0.3", - "initial_layer_speed": [ - "35" - ], - "inner_wall_line_width": "0.62", - "internal_solid_infill_line_width": "0.62", - "ironing_inset": "0.31", - "layer_height": "0.24", - "line_width": "0.62", - "outer_wall_line_width": "0.62", - "overhang_3_4_speed": [ - "15" - ], - "sparse_infill_line_width": "0.62", - "skin_infill_line_width": "0.62", - "skeleton_infill_line_width": "0.62", - "sparse_infill_speed": [ - "100" - ], - "support_line_width": "0.62", - "top_surface_line_width": "0.62", - "top_surface_speed": [ - "150" - ] -} + "type": "process", + "name": "fdm_process_single_0.24_nozzle_0.6", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30" + ], + "initial_layer_infill_speed": [ + "55" + ], + "initial_layer_line_width": "0.62", + "initial_layer_infill_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": [ + "35" + ], + "inner_wall_line_width": "0.62", + "internal_solid_infill_line_width": "0.62", + "ironing_inset": "0.31", + "layer_height": "0.24", + "line_width": "0.62", + "outer_wall_line_width": "0.62", + "overhang_3_4_speed": [ + "15" + ], + "sparse_infill_line_width": "0.62", + "skin_infill_line_width": "0.62", + "skeleton_infill_line_width": "0.62", + "sparse_infill_speed": [ + "100" + ], + "support_line_width": "0.62", + "top_surface_line_width": "0.62", + "top_surface_speed": [ + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.24_nozzle_0.8.json b/resources/profiles/BBL/process/fdm_process_single_0.24_nozzle_0.8.json index 86fabec271..c8da7bffea 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.24_nozzle_0.8.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.24_nozzle_0.8.json @@ -1,43 +1,44 @@ { - "type": "process", - "name": "fdm_process_single_0.24_nozzle_0.8", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30" - ], - "initial_layer_infill_speed": [ - "55" - ], - "initial_layer_line_width": "0.82", - "initial_layer_print_height": "0.4", - "initial_layer_speed": [ - "35" - ], - "inner_wall_line_width": "0.82", - "internal_solid_infill_line_width": "0.82", - "ironing_inset": "0.41", - "layer_height": "0.24", - "line_width": "0.82", - "outer_wall_line_width": "0.82", - "overhang_3_4_speed": [ - "25" - ], - "overhang_4_4_speed": [ - "5" - ], - "sparse_infill_line_width": "0.82", - "skin_infill_line_width": "0.82", - "skeleton_infill_line_width": "0.82", - "sparse_infill_speed": [ - "100" - ], - "support_line_width": "0.82", - "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", - "top_surface_speed": [ - "150" - ] -} + "type": "process", + "name": "fdm_process_single_0.24_nozzle_0.8", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30" + ], + "initial_layer_infill_speed": [ + "55" + ], + "initial_layer_line_width": "0.82", + "initial_layer_infill_line_width": "0.82", + "initial_layer_print_height": "0.4", + "initial_layer_speed": [ + "35" + ], + "inner_wall_line_width": "0.82", + "internal_solid_infill_line_width": "0.82", + "ironing_inset": "0.41", + "layer_height": "0.24", + "line_width": "0.82", + "outer_wall_line_width": "0.82", + "overhang_3_4_speed": [ + "25" + ], + "overhang_4_4_speed": [ + "5" + ], + "sparse_infill_line_width": "0.82", + "skin_infill_line_width": "0.82", + "skeleton_infill_line_width": "0.82", + "sparse_infill_speed": [ + "100" + ], + "support_line_width": "0.82", + "top_surface_line_width": "0.82", + "top_surface_pattern": "monotonic", + "top_surface_speed": [ + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.28.json b/resources/profiles/BBL/process/fdm_process_single_0.28.json index 0e5e24b0dd..959d0c5fce 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.28.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.28.json @@ -1,36 +1,36 @@ { - "type": "process", - "name": "fdm_process_single_0.28", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "elefant_foot_compensation": "0.15", - "gap_infill_speed": [ - "200" - ], - "initial_layer_infill_speed": [ - "105" - ], - "initial_layer_speed": [ - "50" - ], - "inner_wall_speed": [ - "200" - ], - "internal_solid_infill_speed": [ - "200" - ], - "layer_height": "0.28", - "outer_wall_speed": [ - "200" - ], - "sparse_infill_speed": [ - "200" - ], - "support_threshold_angle": "40", - "top_shell_layers": "4", - "top_color_penetration_layers": "4", - "top_shell_thickness": "1.0", - "top_surface_line_width": "0.45" -} + "type": "process", + "name": "fdm_process_single_0.28", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "elefant_foot_compensation": "0.15", + "gap_infill_speed": [ + "200" + ], + "initial_layer_infill_speed": [ + "105" + ], + "initial_layer_speed": [ + "50" + ], + "inner_wall_speed": [ + "200" + ], + "internal_solid_infill_speed": [ + "200" + ], + "layer_height": "0.28", + "outer_wall_speed": [ + "200" + ], + "sparse_infill_speed": [ + "200" + ], + "support_threshold_angle": "40", + "top_shell_layers": "4", + "top_color_penetration_layers": "4", + "top_shell_thickness": "1.0", + "top_surface_line_width": "0.45" +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.30_nozzle_0.6.json b/resources/profiles/BBL/process/fdm_process_single_0.30_nozzle_0.6.json index b2cf4f8c9e..e2be1acd36 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.30_nozzle_0.6.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.30_nozzle_0.6.json @@ -1,39 +1,40 @@ { - "type": "process", - "name": "fdm_process_single_0.30_nozzle_0.6", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30" - ], - "initial_layer_infill_speed": [ - "55" - ], - "initial_layer_line_width": "0.62", - "initial_layer_print_height": "0.3", - "initial_layer_speed": [ - "35" - ], - "inner_wall_line_width": "0.62", - "internal_solid_infill_line_width": "0.62", - "ironing_inset": "0.31", - "layer_height": "0.3", - "line_width": "0.62", - "outer_wall_line_width": "0.62", - "overhang_3_4_speed": [ - "15" - ], - "sparse_infill_line_width": "0.62", - "skin_infill_line_width": "0.62", - "skeleton_infill_line_width": "0.62", - "sparse_infill_speed": [ - "100" - ], - "support_line_width": "0.62", - "top_surface_line_width": "0.62", - "top_surface_speed": [ - "150" - ] -} + "type": "process", + "name": "fdm_process_single_0.30_nozzle_0.6", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30" + ], + "initial_layer_infill_speed": [ + "55" + ], + "initial_layer_line_width": "0.62", + "initial_layer_infill_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": [ + "35" + ], + "inner_wall_line_width": "0.62", + "internal_solid_infill_line_width": "0.62", + "ironing_inset": "0.31", + "layer_height": "0.3", + "line_width": "0.62", + "outer_wall_line_width": "0.62", + "overhang_3_4_speed": [ + "15" + ], + "sparse_infill_line_width": "0.62", + "skin_infill_line_width": "0.62", + "skeleton_infill_line_width": "0.62", + "sparse_infill_speed": [ + "100" + ], + "support_line_width": "0.62", + "top_surface_line_width": "0.62", + "top_surface_speed": [ + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.32_nozzle_0.8.json b/resources/profiles/BBL/process/fdm_process_single_0.32_nozzle_0.8.json index d2e0c39984..7d2cefd223 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.32_nozzle_0.8.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.32_nozzle_0.8.json @@ -1,43 +1,44 @@ { - "type": "process", - "name": "fdm_process_single_0.32_nozzle_0.8", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30" - ], - "initial_layer_infill_speed": [ - "55" - ], - "initial_layer_line_width": "0.82", - "initial_layer_print_height": "0.4", - "initial_layer_speed": [ - "35" - ], - "inner_wall_line_width": "0.82", - "internal_solid_infill_line_width": "0.82", - "ironing_inset": "0.41", - "layer_height": "0.32", - "line_width": "0.82", - "outer_wall_line_width": "0.82", - "overhang_3_4_speed": [ - "25" - ], - "overhang_4_4_speed": [ - "5" - ], - "sparse_infill_line_width": "0.82", - "skin_infill_line_width": "0.82", - "skeleton_infill_line_width": "0.82", - "sparse_infill_speed": [ - "100" - ], - "support_line_width": "0.82", - "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", - "top_surface_speed": [ - "150" - ] -} + "type": "process", + "name": "fdm_process_single_0.32_nozzle_0.8", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30" + ], + "initial_layer_infill_speed": [ + "55" + ], + "initial_layer_line_width": "0.82", + "initial_layer_infill_line_width": "0.82", + "initial_layer_print_height": "0.4", + "initial_layer_speed": [ + "35" + ], + "inner_wall_line_width": "0.82", + "internal_solid_infill_line_width": "0.82", + "ironing_inset": "0.41", + "layer_height": "0.32", + "line_width": "0.82", + "outer_wall_line_width": "0.82", + "overhang_3_4_speed": [ + "25" + ], + "overhang_4_4_speed": [ + "5" + ], + "sparse_infill_line_width": "0.82", + "skin_infill_line_width": "0.82", + "skeleton_infill_line_width": "0.82", + "sparse_infill_speed": [ + "100" + ], + "support_line_width": "0.82", + "top_surface_line_width": "0.82", + "top_surface_pattern": "monotonic", + "top_surface_speed": [ + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.36_nozzle_0.6.json b/resources/profiles/BBL/process/fdm_process_single_0.36_nozzle_0.6.json index a99b9a146b..c366a84351 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.36_nozzle_0.6.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.36_nozzle_0.6.json @@ -1,39 +1,40 @@ { - "type": "process", - "name": "fdm_process_single_0.36_nozzle_0.6", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30" - ], - "initial_layer_infill_speed": [ - "55" - ], - "initial_layer_line_width": "0.62", - "initial_layer_print_height": "0.3", - "initial_layer_speed": [ - "35" - ], - "inner_wall_line_width": "0.62", - "internal_solid_infill_line_width": "0.62", - "ironing_inset": "0.31", - "layer_height": "0.36", - "line_width": "0.62", - "outer_wall_line_width": "0.62", - "overhang_3_4_speed": [ - "15" - ], - "sparse_infill_line_width": "0.62", - "skin_infill_line_width": "0.62", - "skeleton_infill_line_width": "0.62", - "sparse_infill_speed": [ - "100" - ], - "support_line_width": "0.62", - "top_surface_line_width": "0.62", - "top_surface_speed": [ - "150" - ] -} + "type": "process", + "name": "fdm_process_single_0.36_nozzle_0.6", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30" + ], + "initial_layer_infill_speed": [ + "55" + ], + "initial_layer_line_width": "0.62", + "initial_layer_infill_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": [ + "35" + ], + "inner_wall_line_width": "0.62", + "internal_solid_infill_line_width": "0.62", + "ironing_inset": "0.31", + "layer_height": "0.36", + "line_width": "0.62", + "outer_wall_line_width": "0.62", + "overhang_3_4_speed": [ + "15" + ], + "sparse_infill_line_width": "0.62", + "skin_infill_line_width": "0.62", + "skeleton_infill_line_width": "0.62", + "sparse_infill_speed": [ + "100" + ], + "support_line_width": "0.62", + "top_surface_line_width": "0.62", + "top_surface_speed": [ + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.40_nozzle_0.8.json b/resources/profiles/BBL/process/fdm_process_single_0.40_nozzle_0.8.json index 663a268e1b..f8b344de32 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.40_nozzle_0.8.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.40_nozzle_0.8.json @@ -1,43 +1,44 @@ { - "type": "process", - "name": "fdm_process_single_0.40_nozzle_0.8", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30" - ], - "initial_layer_infill_speed": [ - "55" - ], - "initial_layer_line_width": "0.82", - "initial_layer_print_height": "0.4", - "initial_layer_speed": [ - "35" - ], - "inner_wall_line_width": "0.82", - "internal_solid_infill_line_width": "0.82", - "ironing_inset": "0.41", - "layer_height": "0.4", - "line_width": "0.82", - "outer_wall_line_width": "0.82", - "overhang_3_4_speed": [ - "25" - ], - "overhang_4_4_speed": [ - "5" - ], - "sparse_infill_line_width": "0.82", - "skin_infill_line_width": "0.82", - "skeleton_infill_line_width": "0.82", - "sparse_infill_speed": [ - "100" - ], - "support_line_width": "0.82", - "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", - "top_surface_speed": [ - "150" - ] -} + "type": "process", + "name": "fdm_process_single_0.40_nozzle_0.8", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30" + ], + "initial_layer_infill_speed": [ + "55" + ], + "initial_layer_line_width": "0.82", + "initial_layer_infill_line_width": "0.82", + "initial_layer_print_height": "0.4", + "initial_layer_speed": [ + "35" + ], + "inner_wall_line_width": "0.82", + "internal_solid_infill_line_width": "0.82", + "ironing_inset": "0.41", + "layer_height": "0.4", + "line_width": "0.82", + "outer_wall_line_width": "0.82", + "overhang_3_4_speed": [ + "25" + ], + "overhang_4_4_speed": [ + "5" + ], + "sparse_infill_line_width": "0.82", + "skin_infill_line_width": "0.82", + "skeleton_infill_line_width": "0.82", + "sparse_infill_speed": [ + "100" + ], + "support_line_width": "0.82", + "top_surface_line_width": "0.82", + "top_surface_pattern": "monotonic", + "top_surface_speed": [ + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.42_nozzle_0.6.json b/resources/profiles/BBL/process/fdm_process_single_0.42_nozzle_0.6.json index 25d6b599f1..67f7131468 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.42_nozzle_0.6.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.42_nozzle_0.6.json @@ -1,39 +1,40 @@ { - "type": "process", - "name": "fdm_process_single_0.42_nozzle_0.6", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30" - ], - "initial_layer_infill_speed": [ - "55" - ], - "initial_layer_line_width": "0.62", - "initial_layer_print_height": "0.3", - "initial_layer_speed": [ - "35" - ], - "inner_wall_line_width": "0.62", - "internal_solid_infill_line_width": "0.62", - "ironing_inset": "0.31", - "layer_height": "0.42", - "line_width": "0.62", - "outer_wall_line_width": "0.62", - "overhang_3_4_speed": [ - "15" - ], - "sparse_infill_line_width": "0.62", - "skin_infill_line_width": "0.62", - "skeleton_infill_line_width": "0.62", - "sparse_infill_speed": [ - "100" - ], - "support_line_width": "0.62", - "top_surface_line_width": "0.62", - "top_surface_speed": [ - "150" - ] -} + "type": "process", + "name": "fdm_process_single_0.42_nozzle_0.6", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30" + ], + "initial_layer_infill_speed": [ + "55" + ], + "initial_layer_line_width": "0.62", + "initial_layer_infill_line_width": "0.62", + "initial_layer_print_height": "0.3", + "initial_layer_speed": [ + "35" + ], + "inner_wall_line_width": "0.62", + "internal_solid_infill_line_width": "0.62", + "ironing_inset": "0.31", + "layer_height": "0.42", + "line_width": "0.62", + "outer_wall_line_width": "0.62", + "overhang_3_4_speed": [ + "15" + ], + "sparse_infill_line_width": "0.62", + "skin_infill_line_width": "0.62", + "skeleton_infill_line_width": "0.62", + "sparse_infill_speed": [ + "100" + ], + "support_line_width": "0.62", + "top_surface_line_width": "0.62", + "top_surface_speed": [ + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.48_nozzle_0.8.json b/resources/profiles/BBL/process/fdm_process_single_0.48_nozzle_0.8.json index 030c505799..c05df03512 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.48_nozzle_0.8.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.48_nozzle_0.8.json @@ -1,43 +1,44 @@ { - "type": "process", - "name": "fdm_process_single_0.48_nozzle_0.8", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30" - ], - "initial_layer_infill_speed": [ - "55" - ], - "initial_layer_line_width": "0.82", - "initial_layer_print_height": "0.4", - "initial_layer_speed": [ - "35" - ], - "inner_wall_line_width": "0.82", - "internal_solid_infill_line_width": "0.82", - "ironing_inset": "0.31", - "layer_height": "0.48", - "line_width": "0.82", - "outer_wall_line_width": "0.82", - "overhang_3_4_speed": [ - "25" - ], - "overhang_4_4_speed": [ - "5" - ], - "sparse_infill_line_width": "0.82", - "skin_infill_line_width": "0.82", - "skeleton_infill_line_width": "0.82", - "sparse_infill_speed": [ - "100" - ], - "support_line_width": "0.82", - "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", - "top_surface_speed": [ - "150" - ] -} + "type": "process", + "name": "fdm_process_single_0.48_nozzle_0.8", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30" + ], + "initial_layer_infill_speed": [ + "55" + ], + "initial_layer_line_width": "0.82", + "initial_layer_infill_line_width": "0.82", + "initial_layer_print_height": "0.4", + "initial_layer_speed": [ + "35" + ], + "inner_wall_line_width": "0.82", + "internal_solid_infill_line_width": "0.82", + "ironing_inset": "0.31", + "layer_height": "0.48", + "line_width": "0.82", + "outer_wall_line_width": "0.82", + "overhang_3_4_speed": [ + "25" + ], + "overhang_4_4_speed": [ + "5" + ], + "sparse_infill_line_width": "0.82", + "skin_infill_line_width": "0.82", + "skeleton_infill_line_width": "0.82", + "sparse_infill_speed": [ + "100" + ], + "support_line_width": "0.82", + "top_surface_line_width": "0.82", + "top_surface_pattern": "monotonic", + "top_surface_speed": [ + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_0.56_nozzle_0.8.json b/resources/profiles/BBL/process/fdm_process_single_0.56_nozzle_0.8.json index 9cbbd608d1..fc8f01f85f 100644 --- a/resources/profiles/BBL/process/fdm_process_single_0.56_nozzle_0.8.json +++ b/resources/profiles/BBL/process/fdm_process_single_0.56_nozzle_0.8.json @@ -1,43 +1,44 @@ { - "type": "process", - "name": "fdm_process_single_0.56_nozzle_0.8", - "inherits": "fdm_process_single_common", - "from": "system", - "instantiation": "false", - "bridge_flow": "1", - "bridge_speed": [ - "30" - ], - "initial_layer_infill_speed": [ - "55" - ], - "initial_layer_line_width": "0.82", - "initial_layer_print_height": "0.4", - "initial_layer_speed": [ - "35" - ], - "inner_wall_line_width": "0.82", - "internal_solid_infill_line_width": "0.82", - "ironing_inset": "0.41", - "layer_height": "0.56", - "line_width": "0.82", - "outer_wall_line_width": "0.82", - "overhang_3_4_speed": [ - "25" - ], - "overhang_4_4_speed": [ - "5" - ], - "sparse_infill_line_width": "0.82", - "skin_infill_line_width": "0.82", - "skeleton_infill_line_width": "0.82", - "sparse_infill_speed": [ - "100" - ], - "support_line_width": "0.82", - "top_surface_line_width": "0.82", - "top_surface_pattern": "monotonic", - "top_surface_speed": [ - "150" - ] -} + "type": "process", + "name": "fdm_process_single_0.56_nozzle_0.8", + "inherits": "fdm_process_single_common", + "from": "system", + "instantiation": "false", + "bridge_flow": "1", + "bridge_speed": [ + "30" + ], + "initial_layer_infill_speed": [ + "55" + ], + "initial_layer_line_width": "0.82", + "initial_layer_infill_line_width": "0.82", + "initial_layer_print_height": "0.4", + "initial_layer_speed": [ + "35" + ], + "inner_wall_line_width": "0.82", + "internal_solid_infill_line_width": "0.82", + "ironing_inset": "0.41", + "layer_height": "0.56", + "line_width": "0.82", + "outer_wall_line_width": "0.82", + "overhang_3_4_speed": [ + "25" + ], + "overhang_4_4_speed": [ + "5" + ], + "sparse_infill_line_width": "0.82", + "skin_infill_line_width": "0.82", + "skeleton_infill_line_width": "0.82", + "sparse_infill_speed": [ + "100" + ], + "support_line_width": "0.82", + "top_surface_line_width": "0.82", + "top_surface_pattern": "monotonic", + "top_surface_speed": [ + "150" + ] +} \ No newline at end of file diff --git a/resources/profiles/BBL/process/fdm_process_single_common.json b/resources/profiles/BBL/process/fdm_process_single_common.json index 36bd1611d5..12aee19488 100644 --- a/resources/profiles/BBL/process/fdm_process_single_common.json +++ b/resources/profiles/BBL/process/fdm_process_single_common.json @@ -1,106 +1,106 @@ { - "type": "process", - "name": "fdm_process_single_common", - "inherits": "fdm_process_common", - "from": "system", - "instantiation": "false", - "bridge_speed": [ - "50" - ], - "enable_overhang_speed": [ - "1" - ], - "enable_height_slowdown": [ - "0" - ], - "gap_infill_speed": [ - "50" - ], - "initial_layer_acceleration": [ - "500" - ], - "initial_layer_infill_speed": [ - "60" - ], - "initial_layer_speed": [ - "30" - ], - "inner_wall_acceleration": [ - "0" - ], - "inner_wall_speed": [ - "150" - ], - "internal_solid_infill_speed": [ - "150" - ], - "outer_wall_acceleration": [ - "5000" - ], - "overhang_1_4_speed": [ - "0" - ], - "overhang_2_4_speed": [ - "50" - ], - "overhang_3_4_speed": [ - "30" - ], - "overhang_4_4_speed": [ - "10" - ], - "print_extruder_id": [ - "1" - ], - "print_extruder_variant": [ - "Direct Drive Standard" - ], - "slowdown_start_height": [ - "0" - ], - "slowdown_start_speed": [ - "1000" - ], - "slowdown_start_acc": [ - "100000" - ], - "slowdown_end_height": [ - "400" - ], - "slowdown_end_speed": [ - "1000" - ], - "slowdown_end_acc": [ - "100000" - ], - "small_perimeter_speed": [ - "50%" - ], - "small_perimeter_threshold": [ - "0" - ], - "sparse_infill_acceleration": [ - "100%" - ], - "sparse_infill_speed": [ - "250" - ], - "support_speed": [ - "150" - ], - "top_surface_acceleration": [ - "2000" - ], - "top_surface_speed": [ - "200" - ], - "travel_speed": [ - "500" - ], - "travel_speed_z": [ - "0" - ], - "vertical_shell_speed": [ - "80%" - ] -} + "type": "process", + "name": "fdm_process_single_common", + "inherits": "fdm_process_common", + "from": "system", + "instantiation": "false", + "bridge_speed": [ + "50" + ], + "enable_overhang_speed": [ + "1" + ], + "enable_height_slowdown": [ + "0" + ], + "gap_infill_speed": [ + "50" + ], + "initial_layer_acceleration": [ + "500" + ], + "initial_layer_infill_speed": [ + "60" + ], + "initial_layer_speed": [ + "30" + ], + "inner_wall_acceleration": [ + "0" + ], + "inner_wall_speed": [ + "150" + ], + "internal_solid_infill_speed": [ + "150" + ], + "outer_wall_acceleration": [ + "5000" + ], + "overhang_1_4_speed": [ + "0" + ], + "overhang_2_4_speed": [ + "50" + ], + "overhang_3_4_speed": [ + "30" + ], + "overhang_4_4_speed": [ + "10" + ], + "print_extruder_id": [ + "1" + ], + "print_extruder_variant": [ + "Direct Drive Standard" + ], + "slowdown_start_height": [ + "0" + ], + "slowdown_start_speed": [ + "1000" + ], + "slowdown_start_acc": [ + "100000" + ], + "slowdown_end_height": [ + "400" + ], + "slowdown_end_speed": [ + "1000" + ], + "slowdown_end_acc": [ + "100000" + ], + "small_perimeter_speed": [ + "50%" + ], + "small_perimeter_threshold": [ + "0" + ], + "sparse_infill_acceleration": [ + "100%" + ], + "sparse_infill_speed": [ + "250" + ], + "support_speed": [ + "150" + ], + "top_surface_acceleration": [ + "2000" + ], + "top_surface_speed": [ + "200" + ], + "travel_speed": [ + "500" + ], + "travel_speed_z": [ + "0" + ], + "vertical_shell_speed": [ + "80%" + ] +} \ No newline at end of file diff --git a/scripts/orca_profile_tool.py b/scripts/orca_profile_tool.py index c29bc2ac6d..c41c2ba7fc 100755 --- a/scripts/orca_profile_tool.py +++ b/scripts/orca_profile_tool.py @@ -138,7 +138,13 @@ PROFILE_SUBDIRS = ("filament", "process", "machine") PROFILE_TYPES = ("machine_model", "process", "filament", "machine") # Data files that sit under a vendor bundle but are not presets: no name, no type. -NON_PROFILE_FILES = {"filaments_color_codes.json", "cli_config.json"} +NON_PROFILE_FILES = { + "filaments_color_codes.json", + "cli_config.json", + "filament_id_map.json", + "filament_name_map.json", + "support_recommended_params.json", +} # Mirror PrintConfigDef::handle_legacy's ignore set in PrintConfig.cpp; a test # checks parity. Used by normalize and check. Active options and From 7758332406c5b7792257460e7ab276bd28c1d474 Mon Sep 17 00:00:00 2001 From: SoftFever Date: Wed, 23 Sep 2026 14:55:19 +0800 Subject: [PATCH 4/4] Restore the Bambu Lab bed-model offset so stock BambuStudio meshes line up --- src/slic3r/GUI/3DBed.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/slic3r/GUI/3DBed.cpp b/src/slic3r/GUI/3DBed.cpp index b69ce2bdf8..3d7db8eb32 100644 --- a/src/slic3r/GUI/3DBed.cpp +++ b/src/slic3r/GUI/3DBed.cpp @@ -625,6 +625,12 @@ void Bed3D::update_model_offset() shift(2) = -0.03; Vec3d* model_offset_ptr = const_cast(&m_model_offset); *model_offset_ptr = shift; + //BBS: TODO: hack for current stl for BBL printer + if (std::string::npos != m_model_filename.find("bbl-3dp-")) + { + (*model_offset_ptr)(0) -= m_bed_shape[2].x() / 2.0f; + (*model_offset_ptr)(1) -= m_bed_shape[2].y() / 2.0f; + } (*model_offset_ptr)(2) = -0.41 + GROUND_Z; // update extended bounding box